[ARVADOS] updated: 2.1.0-1273-g8f266e877

Git user git at public.arvados.org
Tue Aug 31 20:44:20 UTC 2021


Summary of changes:
 doc/install/crunch2-lsf/install-dispatch.html.textile.liquid | 4 +++-
 lib/config/config.default.yml                                | 7 ++++++-
 lib/config/generated_config.go                               | 7 ++++++-
 3 files changed, 15 insertions(+), 3 deletions(-)

       via  8f266e877db7d819c9fa74d680a320c6153bd207 (commit)
      from  d026d60cc8b9f1117e815d8fb76d4901ca6eaf26 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.


commit 8f266e877db7d819c9fa74d680a320c6153bd207
Author: Tom Clegg <tom at curii.com>
Date:   Tue Aug 31 16:43:17 2021 -0400

    Update default bsub arguments to save stdout/stderr in /tmp.
    
    refs #17857
    
    Arvados-DCO-1.1-Signed-off-by: Tom Clegg <tom at curii.com>

diff --git a/doc/install/crunch2-lsf/install-dispatch.html.textile.liquid b/doc/install/crunch2-lsf/install-dispatch.html.textile.liquid
index 66b562d13..301fd7306 100644
--- a/doc/install/crunch2-lsf/install-dispatch.html.textile.liquid
+++ b/doc/install/crunch2-lsf/install-dispatch.html.textile.liquid
@@ -62,10 +62,12 @@ When arvados-dispatch-lsf invokes @bsub@, you can add arguments to the command b
 <notextile>
 <pre>    Containers:
       LSF:
-        <code class="userinput">BsubArgumentsList: <b>["-C", "0"]</b></code>
+        <code class="userinput">BsubArgumentsList: <b>["-C", "0", "-o", "/tmp/crunch-run.%J.out", "-e", "/tmp/crunch-run.%J.err"]</b></code>
 </pre>
 </notextile>
 
+Note that the default value for @BsubArgumentsList@ uses the @-o@ and @-e@ arguments to write stdout/stderr data to files in @/tmp@ on the compute nodes, which is helpful for troubleshooting installation/configuration problems. Ensure you have something in place to delete old files from @/tmp@, or adjust these arguments accordingly.
+
 
 h3(#PollPeriod). Containers.PollInterval
 
diff --git a/lib/config/config.default.yml b/lib/config/config.default.yml
index ec3261390..ff48d48f4 100644
--- a/lib/config/config.default.yml
+++ b/lib/config/config.default.yml
@@ -1026,7 +1026,12 @@ Clusters:
       LSF:
         # Additional arguments to bsub when submitting Arvados
         # containers as LSF jobs.
-        BsubArgumentsList: []
+        #
+        # Note that the default arguments cause LSF to write two files
+        # in /tmp on the compute node each time an Arvados container
+        # runs. Ensure you have something in place to delete old files
+        # from /tmp, or adjust these arguments accordingly.
+        BsubArgumentsList: ["-o", "/tmp/crunch-run.%J.out", "-e", "/tmp/crunch-run.%J.err"]
 
         # Use sudo to switch to this user account when submitting LSF
         # jobs.
diff --git a/lib/config/generated_config.go b/lib/config/generated_config.go
index 36a21d4c3..097396a0a 100644
--- a/lib/config/generated_config.go
+++ b/lib/config/generated_config.go
@@ -1032,7 +1032,12 @@ Clusters:
       LSF:
         # Additional arguments to bsub when submitting Arvados
         # containers as LSF jobs.
-        BsubArgumentsList: []
+        #
+        # Note that the default arguments cause LSF to write two files
+        # in /tmp on the compute node each time an Arvados container
+        # runs. Ensure you have something in place to delete old files
+        # from /tmp, or adjust these arguments accordingly.
+        BsubArgumentsList: ["-o", "/tmp/crunch-run.%J.out", "-e", "/tmp/crunch-run.%J.err"]
 
         # Use sudo to switch to this user account when submitting LSF
         # jobs.

-----------------------------------------------------------------------


hooks/post-receive
-- 




More information about the arvados-commits mailing list