Skip to content

Commit d99b63a

Browse files
Review feedback plus TOC
1 parent f1bafb8 commit d99b63a

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

articles/storage/blobs/TOC.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -795,6 +795,8 @@ items:
795795
href: storage-blob-use-access-tier-javascript.md
796796
- name: Client library configuration options
797797
items:
798+
- name: Performance tuning for uploads and downloads
799+
href: storage-blobs-tune-upload-download-javascript.md
798800
- name: Implement a retry policy
799801
href: storage-retry-policy-javascript.md
800802
- name: 'Tutorial: Upload and process image files'

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ author: pauljewellmsft
77
ms.author: pauljewell
88
ms.service: azure-blob-storage
99
ms.topic: how-to
10-
ms.date: 05/24/2024
10+
ms.date: 06/04/2024
1111
ms.devlang: javascript
1212
ms.custom: devx-track-js, devguide-js, devx-track-js, devx-track-extended-js
1313
---
@@ -29,7 +29,7 @@ You can configure properties in [BlockBlobParallelUploadOptions](/javascript/api
2929
| Property | Description |
3030
| --- | --- |
3131
| [`blockSize`](/javascript/api/@azure/storage-blob/blockblobparalleluploadoptions#@azure-storage-blob-blockblobparalleluploadoptions-blocksize) | The maximum block size to transfer for each request as part of an upload operation. To learn more, see [blockSize](#blocksize). |
32-
| [`maxSingleShotSize`](/javascript/api/@azure/storage-blob/blockblobparalleluploadoptions#@azure-storage-blob-blockblobparalleluploadoptions-maxsingleshotsize) | If the size of the data is less than or equal to this value, it's uploaded in a single put rather than broken up into chunks. If the data is uploaded in a single shot, the block size is ignored. Default value is 256 MiB. To learn more, see [maxSingleShotSize](#maxsingleshotsize). |
32+
| [`maxSingleShotSize`](/javascript/api/@azure/storage-blob/blockblobparalleluploadoptions#@azure-storage-blob-blockblobparalleluploadoptions-maxsingleshotsize) | If the size of the data is less than or equal to this value, it's uploaded in a single put rather than broken up into chunks. If the data is uploaded in a single shot, the block size is ignored. Default value is 256 MB. If you customize this property, you must use a value less than or equal to 256 MB. To learn more, see [maxSingleShotSize](#maxsingleshotsize). |
3333
| [`concurrency`](/javascript/api/@azure/storage-blob/blockblobparalleluploadoptions#@azure-storage-blob-blockblobparalleluploadoptions-concurrency) | The maximum number of parallel requests that are issued at any given time as a part of a single parallel transfer. |
3434

3535
> [!NOTE]

0 commit comments

Comments
 (0)