Skip to content

Commit aea3939

Browse files
Update articles/storage/blobs/storage-blobs-tune-upload-download-java.md
1 parent 551b6b7 commit aea3939

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/storage/blobs/storage-blobs-tune-upload-download-java.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ options.setParallelTransferOptions(parallelTransferOptions);
8383
Response<BlockBlobItem> blockBlob = blobClient.uploadFromFileWithResponse(options, null, null);
8484
```
8585

86-
In this example, we set the number of parallel transfer workers to 1 using the `setMaxConcurrency` method. We also set `maxSingleUploadSize` to 8 MiB using the `setMaxSingleUploadSizeLong` method. If the blob size is smaller than 8 MiB, only a single request is necessary to complete the upload operation. If the blob size is larger than 8 MiB, the blob is uploaded in chunks with a maximum chunk size of 4 MiB, which we set using the `setBlockSizeLong` method.
86+
In this example, we set the maximum number of parallel transfer workers to 2 using the `setMaxConcurrency` method. We also set `maxSingleUploadSize` to 8 MiB using the `setMaxSingleUploadSizeLong` method. If the blob size is smaller than 8 MiB, only a single request is necessary to complete the upload operation. If the blob size is larger than 8 MiB, the blob is uploaded in chunks with a maximum chunk size of 4 MiB, which we set using the `setBlockSizeLong` method.
8787

8888
### Performance considerations for uploads
8989

0 commit comments

Comments
 (0)