#### MGM Commands #### #show hw120 space space ls hw120 #list attributes on hw120 directory attr ls hw120 #list attributes on hw120ec direcotry attr ls hw120ec #show group configuration of hw120 space group ls hw120 #show application rates io stat -x #show data distribution in a given directory (here it is the CWD .) find -b . #### Client Commands #### #buffered IO 1010 eoscp /var/tmp/2G root://eospilot.cern.ch//eos/pilot/test/hw120/2G #direct IO 1011 eoscp /var/tmp/2G root://eospilot.cern.ch//eos/pilot/test/hw120/2G?eos.iotype=direct # no progress bar 1012 eoscp -n /var/tmp/2G root://eospilot.cern.ch//eos/pilot/test/hw120/2G?eos.iotype=direct # limit to 100 MB/s 1013 eoscp -t 100 -n /var/tmp/2G root://eospilot.cern.ch//eos/pilot/test/hw120/2G?eos.iotype=direct # limit to 100 MB/s with progress bar 1014 eoscp -t 100 /var/tmp/2G root://eospilot.cern.ch//eos/pilot/test/hw120/2G?eos.iotype=direct # lable stream with eos.app 1016 eoscp -t 100 /var/tmp/2G root://eospilot.cern.ch//eos/pilot/test/hw120/2G?eos.iotype=direct\&eos.app=techweekstorage25 # upload 40 parallel streams 2G files and 250MB/s bw 1017 for name in `seq 1 40`; do eoscp -t 250 -n /var/tmp/2G root://eospilot.cern.ch//eos/pilot/test/hw120/2G.$name?eos.iotype=direct\&eos.app=techweekstorage25 & done # upload 40 parallel streams 20G files and 250MB/s bw 1018 for name in `seq 1 40`; do eoscp -t 250 -n /var/tmp/20G root://eospilot.cern.ch//eos/pilot/test/hw120/20G.$name?eos.iotype=direct\&eos.app=techweekstorage25 & done