ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/StorageDumps/hadoop/Instructions
Revision: 1.1
Committed: Fri Apr 27 15:58:14 2012 UTC (13 years ago) by ratnik
Branch: MAIN
CVS Tags: HEAD
Log Message:
Instructions and storage dump  sample file for hadoop/bestman

File Contents

# Content
1 #Technology:
2 hadoop/bestman
3
4 #Reference Site:
5 T2_US_UCSD (James Letts)
6
7 #Command (see also check_single_file.sh):
8
9 #!/bin/sh
10 OUTFILE="storage-dump-ucsd-2.txt"
11 echo "BEGIN TIME `date +%s` `date`" > $OUTFILE
12 find /hadoop/cms/store/group /hadoop/cms/phedex -type f -exec ./check_single_file.sh {} \; >> $OUTFILE
13 echo "END TIME `date +%s` `date`" >> $OUTFILE
14
15 #Comments:
16
17 #More details:
18 https://savannah.cern.ch/support/index.php?126344
19
20
21
22
23
24
25