Replies: 4 comments 11 replies
-
Hi, thank you for this write up.
|
Beta Was this translation helpful? Give feedback.
-
Hi! Is there any way to make Backfill Runs inherit the Asset's tags? @asset(
partitions_def=time_partition,
tags={"data_type": "historical"},
) Is that possible? |
Beta Was this translation helpful? Give feedback.
-
This feature gap needs made extremely clear in the documentation. So many people expect mechanics to limit recourse usage, doubly so for the expectation that I've spent waaayyy too much time trying to find a solution for this. At this time you have to manually regulate your backfills. |
Beta Was this translation helpful? Give feedback.
-
Hi everyone, is there any progress? |
Beta Was this translation helpful? Give feedback.
-
An asset backfill is typically composed of a set of runs that each correspond to one of the partitions being backfilled.
You can limit the number of runs that execute concurrently by configuring a run queue:
Once you've done so, you can use
tag_concurrency_limits
in the run queue configuration to control concurrency.Example: set a limit of 4 concurrent runs across all backfills
Example: set a limit of 4 concurrent runs within each backfill
Example: set a limit of 4 concurrent runs for backfills with a particular tag
When launching a backfill from the Dagster UI, you can supply a set of tags in the backfill dialog.
Beta Was this translation helpful? Give feedback.
All reactions