Skip to content

Commit 71783ee

Browse files
Edits
1 parent 84e6182 commit 71783ee

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
lines changed

articles/storage/blobs/storage-blob-download.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,3 +82,7 @@ The Azure SDK for .NET contains libraries that build on top of the Azure REST AP
8282
- [View code samples from this article (GitHub)](https://github.com/Azure-Samples/AzureStorageSnippets/blob/master/blobs/howto/dotnet/BlobDevGuideBlobs/DownloadBlob.cs)
8383

8484
[!INCLUDE [storage-dev-guide-resources-dotnet](../../../includes/storage-dev-guides/storage-dev-guide-resources-dotnet.md)]
85+
86+
### See also
87+
88+
- [Performance tuning for uploads and downloads](../../articles/storage/blobs/storage-blobs-tune-upload-download.md).

articles/storage/blobs/storage-blob-upload.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ To work with the code examples in this article, make sure you have:
2929

3030
[!INCLUDE [storage-dev-guide-about-blob-upload](../../../includes/storage-dev-guides/storage-dev-guide-about-blob-upload.md)]
3131

32+
To maximize performance and reliability for upload operations, it's important to be proactive in configuring client library transfer options based on the environment your app runs in. To learn more about considerations for tuning data transfer options, see [Performance tuning for uploads and downloads](../../articles/storage/blobs/storage-blobs-tune-upload-download.md).
33+
3234
## Upload data to a block blob
3335

3436
You can use either of the following methods to upload data to a block blob:
@@ -101,5 +103,6 @@ The Azure SDK for .NET contains libraries that build on top of the Azure REST AP
101103

102104
### See also
103105

106+
- [Performance tuning for uploads and downloads](../../articles/storage/blobs/storage-blobs-tune-upload-download.md).
104107
- [Manage and find Azure Blob data with blob index tags](storage-manage-find-blobs.md)
105108
- [Use blob index tags to manage and find data on Azure Blob Storage](storage-blob-index-how-to.md)

includes/storage-dev-guides/storage-dev-guide-about-blob-download.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,4 @@ ms.custom: include file
1212

1313
## About downloading blobs
1414

15-
The client library methods covered in this article wrap the [Get Blob](/rest/api/storageservices/put-blob) operation. This operation reads or downloads a blob from Azure Storage, including its metadata and properties. To learn more about the `Get Blob` operation, including timeout parameters and error conditions, see [Get Blob remarks](/rest/api/storageservices/get-blob#remarks).
16-
17-
To maximize performance and reliability for download operations, it's important to be proactive in configuring client library transfer options based on the environment your app runs in. To learn more about considerations for tuning data transfer options, see [Performance tuning for uploads and downloads](../../articles/storage/blobs/storage-blobs-tune-upload-download.md).
15+
The client library methods covered in this article wrap the [Get Blob](/rest/api/storageservices/put-blob) operation. This operation reads or downloads a blob from Azure Storage, including its metadata and properties. To learn more about the `Get Blob` operation, including timeout parameters and error conditions, see [Get Blob remarks](/rest/api/storageservices/get-blob#remarks).

includes/storage-dev-guides/storage-dev-guide-about-blob-upload.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,4 @@ ms.custom: include file
1414

1515
The client library methods covered in this article wrap the [Put Blob](/rest/api/storageservices/put-blob) operation. This operation creates a new block blob, page blob, or append blob, or updates the content of an existing block blob. If you're updating an existing block blob, any existing metadata on the blob is overwritten. To learn more about the `Put Blob` operation, including blob size limitations for write operations, see [Put Blob remarks](/rest/api/storageservices/put-blob#remarks).
1616

17-
Staging individual blocks of data uses the [Put Block](/rest/api/storageservices/put-block) operation. This operation creates a new block, which can be committed as to block blob using [Put Block List](/rest/api/storageservices/put-block-list).
18-
19-
To maximize performance and reliability for upload operations, it's important to be proactive in configuring client library transfer options based on the environment your app runs in. To learn more about considerations for tuning data transfer options, see [Performance tuning for uploads and downloads](../../articles/storage/blobs/storage-blobs-tune-upload-download.md).
17+
Staging individual blocks of data uses the [Put Block](/rest/api/storageservices/put-block) operation. This operation creates a new block, which can be committed as to block blob using [Put Block List](/rest/api/storageservices/put-block-list).

0 commit comments

Comments
 (0)