hi, just confirming that the `METAFLOW_RUN_MAX_WOR...
# ask-metaflow
w
hi, just confirming that the
METAFLOW_RUN_MAX_WORKERS
env variable still works? don't see it mentioned in the documentation anywhere also this max-workers variable also applies when running from SFN?
1
s
it's a bit of undocumented feature set
basically
python flow.py command subcommand --arg value
can be mapped to
METAFLOW_COMMAND_SUBCOMMAND_ARG=value
for SFN - it would be
METAFLOW_STEP_FUNCTIONS_CREATE_MAX_WORKERS
w
thanks. can you point me to the code where this mapping happens? (just curious)
s
this is an artefact of how we use click
👀 1