source: trunk/DataCheck/RsyncRaw.sh@ 12958

Last change on this file since 12958 was 12876, checked in by Daniela Dorner, 13 years ago
changed time range for bwlimit
  • Property svn:executable set to *
File size: 1.7 KB
Line 
1#!/bin/bash
2
3today=`date +%F`
4logfile=/home/`whoami`/DataCheck/log/RsyncRaw$today.log
5
6echo "" >> $logfile 2>&1
7echo "" >> $logfile 2>&1
8echo "" >> $logfile 2>&1
9
10# check if /daq is mounted on data
11if ! mount | grep daq >> $logfile 2>&1
12then
13 echo "/daq is not mounted on data => please mount it"
14 exit
15fi
16
17# get last 3 nights
18dates=( `date +%Y/%m/%d` `date +%Y/%m/%d --date="-1day"` `date +%Y/%m/%d --date="-2day"` `date +%Y/%m/%d --date="-3day"` )
19
20# do rsync for rawfiles of these dates
21for date in ${dates[@]}
22do
23 echo "" >> $logfile 2>&1
24 # raw data directories on data
25 rawdirdaq=/daq/raw/$date/ # /loc_data from daq via nfs on data
26 if ! [ -d $rawdirdaq ]
27 then
28 echo `date`": "$rawdirdaq" not found. Data were probably taken on data" >> $logfile 2>&1
29 continue
30 fi
31 rawdirdata=/loc_data/raw/$date
32 if ! [ -d $rawdirdata ]
33 then
34 mkdir -pv $rawdirdata >> $logfile 2>&1
35 fi
36 echo `date`": processing files in "$rawdirdaq >> $logfile 2>&1
37
38 # get current hour
39 hour=`date +%k`
40 # define bwlimit for rsync depending on the time: from 19-7h reduced bwlimit for rsync
41 if [ $hour -le 6 ] || [ $hour -ge 19 ]
42 then
43 # limit bw for rsync to 20 MB/s during night
44 bwlimit="--bwlimit=20000"
45 echo "rsync data with "$bwlimit >> $logfile 2>&1
46 else
47 # no bw limit during day
48 echo "rsync data without bwlimit" >> $logfile 2>&1
49 fi
50
51 #rsync from daq to data
52 #if ! /usr/bin/rsync -avxHPu $bwlimit $rawdirdaq $rawdirdata >> $logfile 2>&1 # in case of adding checksum, only update files with rsync
53 if ! /usr/bin/rsync -avxHP $bwlimit $rawdirdaq $rawdirdata >> $logfile 2>&1
54 then
55 echo `date`": problem rsyncing rawdata for "$date" from daq to data"
56 fi
57done
58
59
Note: See TracBrowser for help on using the repository browser.