We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d8715ce commit 22691e6Copy full SHA for 22691e6
metaflow/plugins/argo/argo_workflows.py
@@ -2136,14 +2136,16 @@ def _container_templates(self):
2136
foreach_step,
2137
)
2138
2139
+ # NOTE: input-paths might be extremely lengthy so we dump these to disk instead of passing them directly to the cmd
2140
+ step_cmds.append("echo %s >> /tmp/mf-input-paths" % input_paths)
2141
step = [
2142
"step",
2143
node.name,
2144
"--run-id %s" % run_id,
2145
"--task-id %s" % task_id,
2146
"--retry-count %s" % retry_count,
2147
"--max-user-code-retries %d" % user_code_retries,
- "--input-paths %s" % input_paths,
2148
+ "--input-paths-filename /tmp/mf-input-paths",
2149
]
2150
if node.parallel_step:
2151
step.append(
0 commit comments