Is there a way to perform a backfill in serial rat...
# ask-community
g
Is there a way to perform a backfill in serial rather than all at once?
dagster bot responded by community 1
I added the following config to the job but all partitions still start simultaneously
Copy code
{"execution": {
    "config": {
        "multiprocess": {
            "max_concurrent": 1},
    }
}}
a
the example there limits backfills to 10 concurrently, but you can limit to 1 per backfill with the
Copy code
applyLimitPerUniqueValue
option
g
Thanks, Adam daggy love
How would one set this up so that only backfills of specific job(s) are serialised?