Medium severityexecution
Power BI Refresh Error:
WORKFLOW_RUN_ALREADY_EXISTS
What does this error mean?
A new Workflows job run was rejected because another run of the same job is already active and the job's concurrency policy prohibits parallel executions.
Common causes
- 1The job's Maximum Concurrent Runs setting is set to 1 and the previous run has not yet completed
- 2An upstream trigger (API call, webhook, or dbt Cloud integration) fired before the prior run finished
- 3A long-running job is slower than its schedule interval, causing runs to queue and collide
How to fix it
- 1Step 1: Check the active run in the Workflows UI and decide whether to cancel it or wait.
- 2Step 2: If runs frequently overlap, increase Maximum Concurrent Runs in the job settings — or increase job parallelism.
- 3Step 3: If the job is consistently slower than its schedule, optimize the underlying notebooks or widen the schedule interval.
- 4Step 4: For API-triggered jobs, add idempotency checks in the caller before submitting a new run.