Hi, is it possible to rerun a single step retainin...
# ask-community
i
Hi, is it possible to rerun a single step retaining the same run_id?
o
hi @Ignas Kizelevičius this is not possible (each run requires a different run_id). however, I'm guessing that you want this because you're using this run_id programmatically. If so, instead of using
context.run_id
, you can use
context.dagster_run.root_run_id
, which should provide you the original run_id, regardless of the number of retries
i
Thanks @owen !