I'm seeing latency spikes when writing large amounts of data to Block Blobs. Has anyone implemented any specific patterns to improve throughput?
Posted in Azure Storage Community Forum • 12 replies
I'm seeing latency spikes when writing large amounts of data to Block Blobs. Has anyone implemented any specific patterns to improve throughput?
Using UploadAsync with a larger TransferOptions buffer size helped. Also ensure your storage account is in the same region as the compute.
var options = new StorageTransferOptions { MaximumTransferSize = 100 * 1024 * 1024 }; // 100 MB