[Swift-commit] r2430 - in trunk: . libexec src/org/griphyn/vdl/karajan/lib

noreply at svn.ci.uchicago.edu noreply at svn.ci.uchicago.edu
Sat Jan 10 15:06:19 CST 2009


Author: benc
Date: 2009-01-10 15:06:18 -0600 (Sat, 10 Jan 2009)
New Revision: 2430

Modified:
   trunk/CHANGES.txt
   trunk/libexec/execute-default.k
   trunk/src/org/griphyn/vdl/karajan/lib/RuntimeStats.java
Log:
Console output for individual application invocation start and finish
is no longer shown. The progress ticker now appears more often.
This should give a better overview of run progress.


Modified: trunk/CHANGES.txt
===================================================================
--- trunk/CHANGES.txt	2009-01-10 20:08:05 UTC (rev 2429)
+++ trunk/CHANGES.txt	2009-01-10 21:06:18 UTC (rev 2430)
@@ -1,3 +1,8 @@
+(01/10/09)
+*** Console output for individual application invocation start and finish
+    is no longer shown. The progress ticker now appears more often.
+    This should give a better overview of run progress.
+
 (11/11/08)
 *** Swift 0.7 built from Swift SVN r2318 and cog SVN r2255
 

Modified: trunk/libexec/execute-default.k
===================================================================
--- trunk/libexec/execute-default.k	2009-01-10 20:08:05 UTC (rev 2429)
+++ trunk/libexec/execute-default.k	2009-01-10 21:06:18 UTC (rev 2430)
@@ -12,7 +12,6 @@
 			if(
 				sys:not(done) try(
 					sequential(
-						echo("{tr} started")
 						log(LOG:INFO, "START thread={#thread} tr={tr}") 
 						vdl:setprogress("Selecting site")
 						restartOnError(".*", vdl:configProperty("execution.retries"),
@@ -32,12 +31,10 @@
 						)
 						mark(restartout, err=false, mapping=false)
 						graphStuff(tr, stagein, stageout, err=false, maybe(args=arguments))
-						echo("{tr} completed")
 						log(LOG:INFO, "END_SUCCESS thread={#thread} tr={tr}")
 						vdl:setprogress("Finished successfully")
 					)
 					catch(".*"
-						echo("{tr} failed")
 						log(LOG:INFO, "END_FAILURE thread={#thread} tr={tr}")
 						vdl:setprogress("Failed")
 						if(

Modified: trunk/src/org/griphyn/vdl/karajan/lib/RuntimeStats.java
===================================================================
--- trunk/src/org/griphyn/vdl/karajan/lib/RuntimeStats.java	2009-01-10 20:08:05 UTC (rev 2429)
+++ trunk/src/org/griphyn/vdl/karajan/lib/RuntimeStats.java	2009-01-10 21:06:18 UTC (rev 2430)
@@ -18,8 +18,8 @@
 public class RuntimeStats extends FunctionsCollection {
 
 	public static final Arg PA_STATE = new Arg.Positional("state");
-	public static final int MIN_PERIOD_MS=5000;
-	public static final int MAX_PERIOD_MS=60000;
+	public static final int MIN_PERIOD_MS=1000;
+	public static final int MAX_PERIOD_MS=30000;
 
 	public static final String[] preferredOutputOrder = {
                 "uninitialized",




More information about the Swift-commit mailing list