Skip to content

Commit 9eebe91

Browse files
committed
tweaks
1 parent 187173a commit 9eebe91

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

articles/storage/blobs/storage-performance-checklist.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -229,17 +229,17 @@ For information about efficiently transferring data to and from Blob storage or
229229

230230
## Content distribution
231231

232-
Sometimes, an application needs to serve the same content to many users (for example, a product demo video used in the home page of a website), located in either the same or multiple regions. In this scenario, use a Content Delivery Network (CDN) such as Azure CDN to distribute blob content geographically. Unlike an Azure Storage account that exists in a single region and that cannot deliver content with low latency to other regions, Azure CDN uses servers in multiple data centers around the world. Additionally, a CDN can typically support much higher egress limits than a single storage account.
232+
Sometimes an application needs to serve the same content to many users (for example, a product demo video used in the home page of a website), located in either the same or multiple regions. In this scenario, use a Content Delivery Network (CDN) such as Azure CDN to distribute blob content geographically. Unlike an Azure Storage account that exists in a single region and that cannot deliver content with low latency to other regions, Azure CDN uses servers in multiple data centers around the world. Additionally, a CDN can typically support much higher egress limits than a single storage account.
233233

234234
For more information about Azure CDN, see [Azure CDN](../../cdn/cdn-overview.md).
235235

236236
## Use metadata
237237

238-
The Blob service supports HEAD requests, which can include metadata about the blob. For example, if your application needed the EXIF data out of a photo, it could retrieve the photo and extract it. To save bandwidth and improve performance, your application could store the EXIF data in the blob's metadata when the application uploaded the photo: you can then retrieve the EXIF data in metadata using only a HEAD request, saving significant bandwidth, and the processing time needed to extract the EXIF data each time the blob is read. This approach is useful in scenarios where you only need the metadata, and not the full content of a blob. Only 8 KB of metadata can be stored per blob, so if your data exceeds that size, you may not be able to use this approach.
238+
The Blob service supports HEAD requests, which can include blob properties or metadata. For example, if your application needs the Exif (exchangable image format) data from a photo, it can retrieve the photo and extract it. To save bandwidth and improve performance, your application can store the Exif data in the blob's metadata when the application uploads the photo. You can then retrieve the Exif data in metadata using only a HEAD request. Retrieving only metadata and not the full contents of the blob saves significant bandwidth and reduces the processing time required to extract the Exif data. Keep in mind that only 8 KB of metadata can be stored per blob.
239239

240240
## Upload blobs quickly
241241

242-
To upload blobs quickly, the first question to answer is: are you uploading one blob or many? Use the below guidance to determine the correct method to use depending on your scenario.
242+
To upload blobs quickly, first determine whether you will be uploading one blob or many. Use the below guidance to determine the correct method to use depending on your scenario.
243243

244244
### Upload one large blob quickly
245245

articles/storage/tables/storage-performance-checklist.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,10 +57,7 @@ This article organizes proven practices for performance into a checklist you can
5757

5858
If your application approaches or exceeds any of the scalability targets, it may encounter increased transaction latencies or throttling. When Azure Storage throttles your application, the service begins to return 503 (Server busy) or 500 (Operation timeout) error codes. Avoiding these errors by staying within the limits of the scalability targets is an important part of enhancing your application's performance.
5959

60-
For more information about scalability targets for the Table service, see [Azure Storage scalability and performance targets](/azure/storage/common/storage-scalability-targets?toc=%2fazure%2fstorage%2ftables%2ftoc.json#azure-table-storage-scale-targets).
61-
62-
63-
[Azure Storage scalability and performance targets for storage accounts](../common/storage-scalability-targets.md?toc=%2fazure%2fstorage%2ftables%2ftoc.json).
60+
For more information about scalability targets for the Table service, see [Azure Storage scalability and performance targets for storage accounts](/azure/storage/common/storage-scalability-targets?toc=%2fazure%2fstorage%2ftables%2ftoc.json#azure-table-storage-scale-targets).
6461

6562
### Maximum number of storage accounts
6663

0 commit comments

Comments
 (0)