Changeset 18853 for trunk/DataCheck/Transfer/ZipRawData.sh
- Timestamp:
- 05/14/17 20:58:29 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/DataCheck/Transfer/ZipRawData.sh
r18328 r18853 10 10 date >> $logfile 11 11 12 if ! ls / daq/raw >/dev/null 2>&112 if ! ls /scratch/raw >/dev/null 2>&1 13 13 then 14 printprocesslog "ERROR / daq/raw is not available."14 printprocesslog "ERROR /scratch/raw is not available." 15 15 finish 16 16 fi 17 # if daq unavailable18 #if ! ls /newdaq/raw >/dev/null 2>&119 #then20 # printprocesslog "ERROR /newdaq/raw is not available."21 # finish22 #fi23 17 24 18 # get dates … … 37 31 #source $HEADAS/headas-init.sh 38 32 39 # files younger than $delaytime are not processed33 # files younger than $delaytime minutes are not processed 40 34 delaytime=5 41 35 … … 44 38 do 45 39 echo "" >> $logfile 2>&1 46 rawdir=/daq/raw/$date 47 # rawdir=/newdaq/raw/$date #if daq unavailable 40 rawdir=/scratch/raw/$date 48 41 echo `date`": processing files in "$rawdir >> $logfile 2>&1 49 42 printprocesslog "INFO processing files in "$rawdir … … 68 61 continue 69 62 fi 70 71 zipdir=/loc_data/zipraw/$date 72 # create output directory for zip 63 64 rawdir2=/data1/raw/$date 65 zipdir=/data2/zipraw/$date 66 # create output directories 67 makedir $rawdir2 >> $logfile 2>&1 73 68 makedir $zipdir >> $logfile 2>&1 74 69 … … 78 73 for file in $fitsfiles 79 74 do 80 # check if more than ~ 10 GB are left on /loc_data81 diskusage=( `df -P / loc_data | grep /loc_data` )75 # check if more than ~ 10 GB are left on output directories 76 diskusage=( `df -P /data1 | grep /data1 ` ) 82 77 if [ ${diskusage[3]} -lt 10000000 ] 83 78 then 84 echo "WARN less than 10 GB left on /loc_data on data ("${diskusage[3]}")" >> $logfile 2>&1 85 printprocesslog "WARN less than 10 GB left on /loc_data on data ("${diskusage[3]}")" 79 echo "WARN less than 10 GB left on /data1 on newdata ("${diskusage[3]}")" >> $logfile 2>&1 80 printprocesslog "WARN less than 10 GB left on /data1 on newdata ("${diskusage[3]}")" 81 finish 82 fi 83 diskusage=( `df -P /data2 | grep /data2 ` ) 84 if [ ${diskusage[3]} -lt 10000000 ] 85 then 86 echo "WARN less than 10 GB left on /data2 on newdata ("${diskusage[3]}")" >> $logfile 2>&1 87 printprocesslog "WARN less than 10 GB left on /data2 on newdata ("${diskusage[3]}")" 86 88 finish 87 89 fi … … 95 97 continue 96 98 fi 97 99 100 # first rsync from /scratch to /data1 101 file2=`echo $file | sed -e 's/scratch/data1/'` 102 if ! rsync -au -T $rsynctempdir $file $file2 103 then 104 printprocesslog "ERROR something went wrong with rsync of "$file 105 rm $file2 106 continue 107 fi 108 98 109 iszipped=`echo $file | grep -o fz` 99 110 if [ "$iszipped" == "fz" ] … … 103 114 104 115 # filename for file on data 105 zipfile=`echo $file | sed -e 's/daq/loc_data/g' -e 's/raw/zipraw/' ` 106 zipfiletmp=`echo $file | sed -e 's/daq/loc_data/g' -e 's/raw/zipraw/' -e 's/fits.fz/fits.fz.tmp/'` 107 # # if daq unavailable 108 # zipfile=`echo $file | sed -e 's/newdaq/loc_data/g' -e 's/raw/zipraw/' ` 109 # zipfiletmp=`echo $file | sed -e 's/newdaq/loc_data/g' -e 's/raw/zipraw/' -e 's/fits.fz/fits.fz.tmp/'` 116 zipfile=`echo $file | sed -e 's/scratch/data2/g' -e 's/raw/zipraw/' ` 117 zipfiletmp=`echo $file | sed -e 's/scratch/data2/g' -e 's/raw/zipraw/' -e 's/fits.fz/fits.fz.tmp/'` 110 118 111 119 # check if file on data already exists … … 144 152 145 153 # filename for temporary and final zipfile 146 zipfile=`echo $file | sed -e 's/daq/loc_data/g' -e 's/raw/zipraw/' -e 's/fits/fits.gz/'` 147 zipfiletmp=`echo $file | sed -e 's/daq/loc_data/g' -e 's/raw/zipraw/' -e 's/fits/fits.tmp.gz/'` 148 # # if daq unavailable 149 # zipfile=`echo $file | sed -e 's/newdaq/loc_data/g' -e 's/raw/zipraw/' -e 's/fits/fits.gz/'` 150 # zipfiletmp=`echo $file | sed -e 's/newdaq/loc_data/g' -e 's/raw/zipraw/' -e 's/fits/fits.tmp.gz/'` 154 zipfile=`echo $file | sed -e 's/scratch/data2/g' -e 's/raw/zipraw/' -e 's/fits/fits.gz/'` 155 zipfiletmp=`echo $file | sed -e 's/scratch/data2/g' -e 's/raw/zipraw/' -e 's/fits/fits.tmp.gz/'` 151 156 152 157 # check if zipped file already exists
Note:
See TracChangeset
for help on using the changeset viewer.