How to optimize Azure Blob storage for high-throughput workloads?

Posted in Azure Storage Community Forum • 12 replies

JaneDoe

I'm seeing latency spikes when writing large amounts of data to Block Blobs. Has anyone implemented any specific patterns to improve throughput?

MikeTech

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

Post a reply