Medium severitydata source
Power BI Refresh Error:
AzureAppendBlobConcurrentWriteConflict
What does this error mean?
Multiple ADF copy activities are writing to the same Azure Append Blob simultaneously, causing a write conflict. Append blobs do not support concurrent appends from different clients.
Common causes
- 1Multiple pipeline runs targeting the same append blob path are executing concurrently
- 2A ForEach loop with parallel iterations all append to the same blob file
- 3An external process is also appending to the blob while the ADF activity runs
How to fix it
- 1Ensure only one copy activity writes to a given append blob path at a time — add sequential execution constraints.
- 2Use a unique file naming pattern per run (include run ID or timestamp) to avoid shared blob paths.
- 3Switch to block blobs if concurrent writes are needed — block blobs support the merge-files pattern more reliably.
Frequently asked questions
Official documentation: https://learn.microsoft.com/en-us/azure/data-factory/connector-troubleshoot-azure-blob-storage