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

Gustavo Carvalho

01/11/2023, 6:05 PM
Hi all! How can I limit a set of
op
's so that at most one of them is running at a time? I tried setting a tag with
@op(..., tags={"unitary-execution": "some_value")})
and applying the following on `dagster.yaml`:
Copy code
run_coordinator:
  module: dagster.core.run_coordinator
  class: QueuedRunCoordinator
  config:
    tag_concurrency_limits:
      - key: unitary-execution
        value:
          applyLimitPerUniqueValue: true
        limit: 1
But it dit not work 😞
2 Views