Skip to content

Commit b8fd16f

Browse files
Final pass - review feedback
1 parent f5fafe3 commit b8fd16f

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

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

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ author: pauljewellmsft
66
ms.author: pauljewell
77
ms.service: storage
88
ms.topic: how-to
9-
ms.date: 07/06/2023
9+
ms.date: 07/07/2023
1010
ms.subservice: blobs
1111
ms.devlang: python
1212
ms.custom: devx-track-python, devguide-python, devx-track-python
@@ -27,8 +27,8 @@ Properly tuning data transfer options is key to reliable performance for uploads
2727
The following arguments can be tuned based on the needs of your app:
2828

2929
- [max_single_put_size](#max_single_put_size): The maximum size for a blob to be uploaded with a single request. Defaults to 64 MiB.
30-
- [max_concurrency](#max_concurrency): The maximum number of subtransfers that may be used in parallel.
3130
- [max_block_size](#max_block_size): The maximum length of a transfer in bytes when uploading a block blob in chunks. Defaults to 4 MiB.
31+
- `max_concurrency`: The maximum number of subtransfers that may be used in parallel.
3232

3333
> [!NOTE]
3434
> The client libraries will use defaults for each data transfer option, if not provided. These defaults are typically performant in a data center environment, but not likely to be suitable for home consumer environments. Poorly tuned data transfer options can result in excessively long operations and even request timeouts. It's best to be proactive in testing these values, and tuning them based on the needs of your application and environment.
@@ -41,9 +41,6 @@ It's important to note that the value you specify for `max_block_size` *does not
4141

4242
If you're unsure of what value is best for your situation, a safe option is to set `max_single_put_size` to the same value used for `max_block_size`.
4343

44-
#### max_concurrency
45-
The `max_concurrency` argument is the maximum number of workers that may be used in a parallel transfer. Currently, only asynchronous operations can parallelize transfers. Synchronous operations ignore this value and work in sequence.
46-
4744
#### max_block_size
4845

4946
The `max_block_size` argument is the maximum length of a transfer in bytes when uploading a block blob in chunks. As mentioned earlier, this value *does not* limit `max_single_put_size`, which can be larger than `max_block_size`.

0 commit comments

Comments
 (0)