You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The documentation for the options --workDir and --jobStore state that, when a workflow is run on a distributed batch system, these locations must be accessible by all worker nodes. Currently, unless explicitly set by the user, both workDir and jobStore are set to whatever value is given to tmpdir-prefix (or a system-default tmpdir location).
It would make sense to set workDir and jobStore to whatever value is given to tmp-outdir-prefix, which should be set to a shared location when using a distributed batch system.
I therefore propose the following changes:
tmp-outdir-prefix defaults to tmpdir-prefix, unless given on the command-line
workDir defaults to tmp-outdir-prefix, unless given on the command-line
jobStore defaults to tmp-outdir-prefix, unless given on the command-line
coordinationDir defaults to the default tmpdir-prefix, ignoring tmpdir-prefix when given on the command-line (rationale: this is a book-keeping location, that must be on a local 100% posix-compliant file system, because it uses file locks).
Note that tmpdir-prefix need not exist on the node where Toil is running, as long as it exists on all the worker nodes. Hence, Toil should not check for its existence on the "head" node.
I can create a pull request. However, I'm unsure as to how this should be tested, because I couldn't find any Toil tests that check the correct (documented) behaviour of these command-line options. Are there?
┆Issue is synchronized with this Jira Story
┆Issue Number: TOIL-1664
The text was updated successfully, but these errors were encountered:
The documentation for the options
--workDir
and--jobStore
state that, when a workflow is run on a distributed batch system, these locations must be accessible by all worker nodes. Currently, unless explicitly set by the user, bothworkDir
andjobStore
are set to whatever value is given totmpdir-prefix
(or a system-default tmpdir location).It would make sense to set
workDir
andjobStore
to whatever value is given totmp-outdir-prefix
, which should be set to a shared location when using a distributed batch system.I therefore propose the following changes:
tmp-outdir-prefix
defaults totmpdir-prefix
, unless given on the command-lineworkDir
defaults totmp-outdir-prefix
, unless given on the command-linejobStore
defaults totmp-outdir-prefix
, unless given on the command-linecoordinationDir
defaults to the default tmpdir-prefix, ignoringtmpdir-prefix
when given on the command-line (rationale: this is a book-keeping location, that must be on a local 100% posix-compliant file system, because it uses file locks).Note that
tmpdir-prefix
need not exist on the node where Toil is running, as long as it exists on all the worker nodes. Hence, Toil should not check for its existence on the "head" node.I can create a pull request. However, I'm unsure as to how this should be tested, because I couldn't find any Toil tests that check the correct (documented) behaviour of these command-line options. Are there?
┆Issue is synchronized with this Jira Story
┆Issue Number: TOIL-1664
The text was updated successfully, but these errors were encountered: