ancient-guitar-13766
01/09/2025, 6:26 PMargo resubmit --memoized
, expecting it to skip the successful steps and rerun only the failed ones. However, this doesn’t seem to work as expected. I encounter a `DataStore Error`:
Setting up task environment.
Downloading code package...
Code package downloaded.
Task is starting.
Data store error:
No completed attempts of the task was found for task 'HelloWorld/argo-dummyproject.user.j.kollipara.helloworld-xgx57/print_country/t-f22f4ed2'
Is there a limitation from using argo resubmit --memoized
on metaflow triggered flows?ancient-guitar-13766
01/09/2025, 6:29 PMHelloWorld/argo-dummyproject.user.j.kollipara.helloworld-xgx57
-> being the current workflow name, which is ❌
t-f22f4ed2
: is the task id from the original flow , which is âś…ancient-application-36103
01/09/2025, 10:44 PM--memoized
option in argo
. you can use the resume functionality instead.ancient-guitar-13766
01/10/2025, 9:40 AMresume
with --origin-run-id <argo-workflow-id>
works âś…
the problem with this approach is, you can only run the “resume” command from your local machine and the work can be done locally or in kubernetes (--with kubernetes
), This requires the user’s local machine to remain ON throughout the process. For workflows with hundreds of tasks still pending, this can take a significant amount of time, which users may find inconvenient.
any workaround/insights for this would be super helpful?ancient-application-36103
01/10/2025, 3:31 PM