Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions src/evalml/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,12 @@ def _base_snakemake_command(
command += config.profile.parsable()
command += ["--configfile", str(configfile)]
command += ["--cores", str(cores)]
# Lustre (and other network filesystems on Balfrin) can have significant
# latency between a job writing an output file and it becoming visible to
# the Snakemake process on the login node. This flag overwrites the default
# of 5s in an attempt to make the workflow more resilient to the underlying
# filesystem
command += ["--latency-wait", "20"]
return command


Expand Down
Loading