Arun Kumar
08/25/2021, 6:47 PMqueuedRunCoordinator:
enabled: true
config:
max_concurrent_runs: 25
tag_concurrency_limits:
- key: "user-code-1"
limit: 15
- key: "user-code-1"
value: "usecase-1"
limit: 10
- key: "user-code-1"
value: "usecase-2"
limit: 5
- key: "user-code-2"
limit: 15
- key: "user-code-2"
value: "usecase-1"
limit: 10
- key: "databricks"
limit: 10
johann
08/26/2021, 7:40 PMArun Kumar
08/26/2021, 7:50 PMdatabricks
tag, so if we get a databricks
job from user-code-1
, will it still be limited to 10 runs irrespective of the limit on user-code-1
?
2. If I understand currently, if any user code job missed to set the appropriate user-code tag, it will fall under the global runs and can possibly exhaust the global limit (25 runs in the above example). Is there any way to avoid this situation?johann
08/26/2021, 8:04 PMapplyLimitPerUniqueValue
flag to the concurrency constraints, so you could have a default limit for each of your use cases in the above example instead of needing to enumerate them allArun Kumar
09/01/2021, 11:24 PM