Displaying 1 result from an estimated 1 matches for "ccn4".
Did you mean:
ccn
2005 Aug 31
2
performance problem of using parallel rsync to stage data from 1 source to multiple destination
...ance!
Xuehai
P.S. the script to do the parallel rsync
#!/bin/sh
LIST="ccn2"
if [ "$#" -gt "0" ] ; then
if [ "$1" -eq "2" ] ; then
LIST="ccn2"
fi
if [ "$1" -eq "4" ] ; then
LIST="ccn2 ccn3 ccn4"
fi
if [ "$1" -eq "6" ] ; then
LIST="ccn2 ccn3 ccn4 ccn7 ccn6"
fi
if [ "$1" -eq "8" ] ; then
LIST="ccn2 ccn3 ccn4 ccn5 ccn6 ccn7 ccn8"
fi
fi
echo "nodes: $LIST"
date
for dest in $LIST
do
tim...