[Swift-commit] r5785 - branches/release-0.93/tests/sites/mcs

davidk at ci.uchicago.edu davidk at ci.uchicago.edu
Wed May 9 17:18:29 CDT 2012


Author: davidk
Date: 2012-05-09 17:18:28 -0500 (Wed, 09 May 2012)
New Revision: 5785

Modified:
   branches/release-0.93/tests/sites/mcs/coaster-service.conf
Log:
Update to mcs coaster-service.conf for documentation purposes


Modified: branches/release-0.93/tests/sites/mcs/coaster-service.conf
===================================================================
--- branches/release-0.93/tests/sites/mcs/coaster-service.conf	2012-05-04 19:51:42 UTC (rev 5784)
+++ branches/release-0.93/tests/sites/mcs/coaster-service.conf	2012-05-09 22:18:28 UTC (rev 5785)
@@ -1,48 +1,45 @@
-# Keep all interesting settings in one place
-# User should modify this to fit environment
-
 # Location of SWIFT. If empty, PATH is referenced
 export SWIFT=
 
 # Where to place/launch worker.pl on the remote machine for sites.xml
-export WORKER_LOCATION=/sandbox/${USER}
+export WORKER_LOCATION=/home/${USER}/work
 
 # How to launch workers: local, ssh, or cobalt
 export WORKER_MODE=ssh
 
 # Worker logging setting passed to worker.pl for sites.xml
-export WORKER_LOGGING=INFO
+export WORKER_LOGGING_LEVEL=INFO
 
 # User name to use for all systems
 export WORKER_USERNAME=$USER
 
 # Worker host names for ssh
-export WORKER_HOSTS="crush.mcs.anl.gov thwomp.mcs.anl.gov stomp.mcs.anl.gov crank.mcs.anl.gov
-steamroller.mcs.anl.gov grind.mcs.anl.gov churn.mcs.anl.gov trounce.mcs.anl.gov
-thrash.mcs.anl.gov vanquish.mcs.anl.gov"
+export WORKER_HOSTS="crush thwomp stomp crank steamroller grind churn trounce thrash vanquish"
 
 # Directory to keep log files, relative to working directory when launching start-coaster-service
 export LOG_DIR=logs
-export WORKER_LOG_DIR=/home/ketan/worker.log
+export WORKER_LOG_DIR=/home/${USER}/work
 
 # Manually define ports. If not specified, ports will be automatically generated
 export LOCAL_PORT=
 export SERVICE_PORT=
 
-# Set shared filesystem to no since work will be done in local /sandbox directory
-export SHARED_FILESYSTEM=no
+# Set shared filesystem to no if work will be done in local /sandbox directory
+# Then specify -config cf in command line
+export SHARED_FILESYSTEM=yes
 
 # start-coaster-service tries to automatically detect IP address. 
 # Specify here if auto detection is not working correctly
 export IPADDR=
 
 # Below are various settings to give information about how to create sites.xml
- export WORK=/sandbox/${USER}
- export JOBS_PER_NODE=8
- export JOB_THROTTLE=$( echo "scale=5; ($JOBS_PER_NODE * $( echo $WORKER_HOSTS | wc -w ))/100 - 0.00001"|bc )
+export WORK=/home/${USER}/work
+export JOBS_PER_NODE=4
 
+# Try to determine throttle automatically based on the number of nodes and jobs per node
+export JOB_THROTTLE=$( echo "scale=5; ($JOBS_PER_NODE * $( echo $WORKER_HOSTS | wc -w ))/100 - 0.00001"|bc )
+
 # Swift applications
 #app cat=/bin/cat
 #app bash=/bin/bash
 #app echo=/bin/echo
-




More information about the Swift-commit mailing list