How can I achieve the same behavior of `dagster jo...
# ask-community
r
How can I achieve the same behavior of
dagster job backfill -p do_stuff_partitioned --from 2021-04-01 --to 2021-05-01
using
yield RunRequest()
? Do I need to iterate all partitions and yield a request for each one? If so, how can I avoid triggering a request that was already executed?
s
Do I need to iterate all partitions and yield a request for each one?
Yes - that's the main way to do it.
If so, how can I avoid triggering a request that was already executed
Do you mind elaborating on this a little more? How would the request already be executed?
r
I mean, have the same behaviour when we check this checkbox.