[Swift-commit] r5679 - trunk/tests/sites/mcs
davidk at ci.uchicago.edu
davidk at ci.uchicago.edu
Sat Feb 25 19:55:22 CST 2012
Author: davidk
Date: 2012-02-25 19:55:22 -0600 (Sat, 25 Feb 2012)
New Revision: 5679
Modified:
trunk/tests/sites/mcs/coaster-service.conf
Log:
Update the MCS coaster-service.conf file used for testing and documentation
Modified: trunk/tests/sites/mcs/coaster-service.conf
===================================================================
--- trunk/tests/sites/mcs/coaster-service.conf 2012-02-25 22:05:50 UTC (rev 5678)
+++ trunk/tests/sites/mcs/coaster-service.conf 2012-02-26 01:55:22 UTC (rev 5679)
@@ -1,36 +1,44 @@
-# 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_WORK=/home/${USER}/work
+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 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/${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=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=$HOME/work
-export queue=prod-devel
-export maxtime=20
-export nodes=64
+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