6309: Use arv-mount default cache size. Fix documentation typo.
authorPeter Amstutz <peter.amstutz@curoverse.com>
Tue, 1 Dec 2015 14:26:02 +0000 (09:26 -0500)
committerPeter Amstutz <peter.amstutz@curoverse.com>
Tue, 1 Dec 2015 14:26:02 +0000 (09:26 -0500)
doc/api/schema/Job.html.textile.liquid
sdk/cli/bin/crunch-job

index 8abd42250a577943d41f2556390848e75da6d401..5bc7611d0deedede7db25a38af830ffb877dc693 100644 (file)
@@ -66,4 +66,3 @@ table(table table-bordered table-condensed).
 |max_tasks_per_node|integer|Maximum simultaneous tasks on a single node|&#10003;|
 |keep_cache_mb_per_task|integer|Size of file data buffer for per-task Keep directory ($TASK_KEEPMOUNT), in MiB.  Default is 256 MiB.  Increase this to reduce cache thrashing in situtations such as accessing multiple large (64+ MiB) files at the same time, or accessing different parts of a large file at the same time.|&#10003;|
 |min_ram_per_task|integer|Minimum real memory (KiB) per task||
-|min_ram_per_task|integer|Minimum real memory (KiB) per task||
index 2c3783ff0efb2e47376e0ff315160288fa6481cb..b2c14d5b713dbfaa19c17b5d324ea4c81c1df9b8 100755 (executable)
@@ -886,7 +886,7 @@ for (my $todo_ptr = 0; $todo_ptr <= $#jobstep_todo; $todo_ptr ++)
 
     my $stdbuf = " stdbuf --output=0 --error=0 ";
 
-    my $arv_file_cache = "--file-cache=" . (256 * 1024 * 1024);
+    my $arv_file_cache = "";
     if (defined($Job->{'runtime_constraints'}->{'keep_cache_mb_per_task'})) {
       $arv_file_cache = "--file-cache=" . ($Job->{'runtime_constraints'}->{'keep_cache_mb_per_task'} * 1024 * 1024);
     }