An Azure service for ingesting, preparing, and transforming data at scale.
Thank you @Pratik Somaiya
Hello @arkiboys ,
Please correct me if my understanding is wrong. You see the error when your data flow tries to update the same table concurrently.
This exception occurs when a concurrent operation adds files in the same partition (or **anywhere in an unpartitioned table) that your operation reads. The file additions can be caused by INSERT, DELETE, UPDATE, or MERGE operations.
To mitigate the issue, you can do one of the following:
Partition your table, and try to operate on different partitions of your table concurrently
Schedule the writes one after other to avoid conflicts
Add retries to your code when you face this exception.