@Anonymous Welcome to Microsoft Q&A forum and thanks for reaching out here.
From you explanation you have try multiple alternatives to overcome the issue but the issue still remains.
From the below message, my understanding is that you are doing a bulk insert load into your Synapse dedicated SQL pool using copy activity which might be resulting in low throughput. Please correct me if I'm wrong.
If that is the case, then I would recommend trying PolyBase
or COPY Statement
in your copy activity for tuning up the performance. Using PolyBase is one of the efficient way to load a large amount of data into Synapse Deducated Pool with high throughput. You'll see a large gain in the throughput by using PolyBase instead of the default BULKINSERT mechanism. The copy activity details image you have shared also suggest to use performance tuning tips to increase the throughput.
For more information about it please refer to this document: Use PolyBase to load data into Azure Synapse Analytics
Here is another couple of helpful documents related to performance tuning, please refer to them and see if that helps to resolve your issue:
- Load 1 TB into Azure Synapse Analytics under 15 minutes with Data Factory
- Copy activity Performance and tuning guide: Copy activity performance and scalability guide
Hope this info helps. Let us know how it goes.
Thank you