https://dagster.io/ logo
#ask-community
Title
# ask-community
g

Guy McCombe

02/01/2023, 4:20 PM
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

Adam Bloom

02/01/2023, 5:00 PM
the example there limits backfills to 10 concurrently, but you can limit to 1 per backfill with the
Copy code
applyLimitPerUniqueValue
option
g

Guy McCombe

02/01/2023, 5:01 PM
Thanks, Adam daggy love
How would one set this up so that only backfills of specific job(s) are serialised?
29 Views