In Azure SDK v11, we had the option to specify the ParallelOperationThreadCount
through the BlobRequestOptions
. In Azure SDK v12, I see that the BlobClientOptions
does not have this, and the BlockBlobClient
(previously CloudBlockBlob
in Azure SDK v11), there is only mention of parallelism in the download methods.
We have three files: one 200MB, one 150MB, and one 20MB. For each file, we want the file to be split into blocks and have those uploaded in parallel. Is this automatically done by the BlockBlobClient
? If possible, we would like to do these operations for the 3 files in parallel as well.