Skip to content

Commit e7a16aa

Browse files
committed
Simplifying
1 parent 9170ed8 commit e7a16aa

File tree

2 files changed

+23
-53
lines changed

2 files changed

+23
-53
lines changed

articles/storage/blobs/cost-estimate-archive-retrieval.md

Lines changed: 20 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
---
2-
title: 'Cost estimate: Archival & retrieval (Azure Blob Storage)'
2+
title: 'Cost estimate: Early retrieval from archive (Azure Blob Storage)'
33
description: This article shows an example of what it costs to archive and then retrieve data in Azure Blob Storage.
44
services: storage
55
author: normesta
66

77
ms.service: azure-blob-storage
8-
ms.date: 05/07/2025
8+
ms.date: 05/27/2025
99
ms.topic: concept-article
1010
ms.author: normesta
1111
---
1212

13-
# Cost estimate: Large-scale data archival and retrieval
13+
# Cost estimate: Early data retrieval from archive
1414

1515
This sample estimates the cost to archive data and then retrieve some portion of that data before the 180 day limit.
1616

@@ -27,45 +27,26 @@ The account is located in the West US region, and is configured for locally-redu
2727

2828
## Estimate
2929

30-
The following table shows the sample estimate at a glance.
31-
32-
| Cost component | Estimate |
33-
|--------------------------|-------------|
34-
| Cost of write operations | $28.18 |
35-
| Cost of read operations | $0.22 |
36-
| Data retrieval fee | $88.00 |
37-
| Early deletion penalty | $24.00 |
38-
| **Total cost** | **$140.40** |
39-
40-
This sample estimate doesn't include the [cost of data storage](blob-storage-estimate-costs.md#the-cost-to-store-data) which is billed per GB.
41-
42-
## Breakdown
43-
4430
Based on [these sample prices](blob-storage-estimate-costs.md#sample-prices), the following table shows how each cost component is calculated.
4531

46-
| Cost factor | Calculation | Value |
47-
|----------------------------------|-----------------------------------------------|------------|
48-
| PutBlock operations per blob | 10 GiB / 8-MiB block | 1280 |
49-
| PutBlockList operations per blob | 1 per blob | 1 |
50-
| **Cost of write operations** | (2,000 blobs * 1,281) * write operation price | **$28.18** |
51-
| SetBlobTier operations | 2000 blobs * 20% | 400 |
52-
| **Cost of read operations** | 400 operations * read operation price | **$0.22** |
53-
| Total file size (GB) | | 20,000 |
54-
| Data retrieval size | 20,000 GB * 20% | 4,000 |
55-
| **Data retrieval fee** | 4,000 blobs * price of data retrieval | **$88.00** |
56-
| Rough number of months penalty | (180 days - 90 days) / 30 days | 3 |
57-
| **Early deletion penalty** | 4000 blobs * price of archive storage / 3 | **$24.00** |
58-
59-
## Factors that can impact the cost
32+
| Cost component | Cost factor | Calculation | Value |
33+
|--------------------|-----------------------------------------------|---------------------------------------|-------------|
34+
| Change tier to hot | Number of SetBlobTier operations | 2000 blobs * 20% | 400 |
35+
| | Price of a SetBlobTier operation | Taken from sample prices | $0.00055 |
36+
| | Cost to change tier to hot<br></br> | 400 operations * $0.00055 | **$0.22** |
37+
| Data retrieval fee | Total file size | 20 TB | 20,000 GB |
38+
| | Data retrieval size | 20,000 GB * 20% | 4,000 |
39+
| | Price of data retrieval (per GB) | Taken from sample prices | $0.0220 |
40+
| | Cost to retrieve data<br></br> | 4,000 blobs * $0.0220 | **$88.00** |
41+
| Early deletion fee | Rough number of months penalty | (180 days - 90 days) / 30 days | 3 |
42+
| | Price per month of archive storage (per GB) | Taken from sample prices | $0.0020 |
43+
| | Cost of early deletion<br></br> | (4000 blobs * $0.0020) * 3 | **$24.00** |
44+
| Read from hot tier | Number of read operations on hot tier | The number of blobs moved to hot tier | 400 |
45+
| | Price of a read operation on the hot tier | Taken from sample prices | $0.00000044 |
46+
| | Cost to read blobs from the hot tier<br></br> | 400 operations * $0.00000044 | $0.0002 |
47+
| **Total cost** | | | **112.22** |
6048

61-
The following table describes factors that can impact the cost of this scenario.
62-
63-
| Factor | Impact | Learn more |
64-
|---|---|----|
65-
| Copying blobs instead of changing their tier | Adds a cost to write to the target tier, but avoids the early deletion penalty.| [Blob rehydration from the archive tier](archive-rehydrate-overview.md) |
66-
| Block size | Larger block size reduces the number of write operations required to upload data. | [The cost to upload data](blob-storage-estimate-costs.md) |
67-
| Uploading data by using the Data Lake Storage endpoint | Smaller fixed block sizes of 4 MiB increases the number of write operations. | [Cost of uploading to the Data Lake Storage endpoint](azcopy-cost-estimation.md#cost-of-uploading-to-the-data-lake-storage-endpoint) |
68-
| Redundancy configuration of the account | Storage redundancy configuration impacts the cost of certain operations. | [Azure Storage redundancy](../common/storage-redundancy.md) |
49+
This sample estimate doesn't include the [cost of data storage](blob-storage-estimate-costs.md#the-cost-to-store-data) which is billed per GB.
6950

7051
## See also
7152

articles/storage/blobs/cost-estimate-multi-region-access.md

Lines changed: 3 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -27,20 +27,6 @@ The account is located in the West US region and hierarchical namespaces are not
2727

2828
## Estimate
2929

30-
The following table shows the sample estimate at a glance.
31-
32-
| Cost component | Estimate |
33-
|---------------------------------------------------|-------------|
34-
| Cost of write operations | $163.80 |
35-
| Cost to transfer data out of region (replication) | $2,000 |
36-
| Cost of read operations | $110.00 |
37-
| Cost to transfer data out of region (downloads) | $750.00 |
38-
| **Total cost** | **$860.00** |
39-
40-
This sample estimate doesn't include the [cost of data storage](blob-storage-estimate-costs.md#the-cost-to-store-data) which is billed per GB.
41-
42-
## Breakdown
43-
4430
Based on [these sample prices](blob-storage-estimate-costs.md#sample-prices), the following table shows how each cost component is calculated.
4531

4632
| Cost factor | Calculation | Value |
@@ -57,6 +43,9 @@ Based on [these sample prices](blob-storage-estimate-costs.md#sample-prices), th
5743
| Data transfer fee (downloads) | 1875 * data transfer fee | $375.00 |
5844
| Network bandwidth fee (downloads) | 1875 * network bandwidth fee | $375.00 |
5945
| **Cost to transfer data out of region (download)** | data transfer fee + network bandwidth fee | **$750.00** |
46+
| **Total cost** | write + read + data transfer | **860.00** |
47+
48+
This sample estimate doesn't include the [cost of data storage](blob-storage-estimate-costs.md#the-cost-to-store-data) which is billed per GB.
6049

6150
## Factors that can impact the cost
6251

0 commit comments

Comments
 (0)