High severitysql
Power BI Refresh Error:
DELTA_CONCURRENT_TRANSACTION
What does this error mean?
A transaction detected a conflicting concurrent transaction on the same Delta table. The general concurrent transaction exception covers conflicts not classified under more specific Delta error codes.
Common causes
- 1Multiple jobs execute DML (INSERT, UPDATE, DELETE, MERGE) against the same table within the same time window
- 2A streaming job and a batch job simultaneously commit to the same table
- 3Two orchestration pipelines triggered by the same event both attempt to write to a shared output table
How to fix it
- 1Retry the failed transaction — transient concurrent transaction failures usually resolve on retry.
- 2Review the job DAG and identify which jobs share an output table without sequential dependency.
- 3Add explicit job dependencies so that only one writer is active at a time per table.
- 4Consider partitioning the output table by date or job-id to allow parallel writes to non-overlapping partitions.