Skip to content

Commit 7a3ac1f

Browse files
authored
Merge pull request #53997 from staleycyn/patch-2
Update blob storage module
2 parents 1add2b9 + 708b6d6 commit 7a3ac1f

5 files changed

Lines changed: 11 additions & 7 deletions

File tree

learn-pr/wwl-azure/configure-blob-storage/includes/3-create-blob-containers.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ In the Azure portal, you configure settings to create a container for an Azure s
3131
- **Blob**: Allow anonymous public read access for the blobs only.
3232
- **Container**: Allow anonymous public read and list access to the entire container, including the blobs.
3333

34+
> [!IMPORTANT]
35+
> The Blob and Container access levels have no effect unless the storage account's **Allow Blob anonymous access** setting is enabled. When disabled, all containers remain private regardless of their individual access level settings. Microsoft recommends keeping anonymous access disabled at the account level unless serving public content scenarios.
3436
3537

3638

learn-pr/wwl-azure/configure-blob-storage/includes/4-create-blob-access-tiers.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Let's examine characteristics of the blob access tiers.
88

99
#### Hot tier
1010

11-
The Hot tier is optimized for frequent reads and writes of objects in the Azure storage account. A good usage case is data that is actively being processed. An online tier optimized for storing data that is accessed or modified frequently. The hot tier has the highest storage costs, but the lowest access costs.
11+
The Hot tier is optimized for frequent reads and writes of objects in the Azure storage account. A good usage case is data that is actively being processed. The hot tier has the highest storage costs, but the lowest access costs.
1212

1313
#### Cool tier
1414

@@ -22,7 +22,7 @@ The Cold tier is also optimized for storing large amounts of infrequently access
2222

2323
The Archive tier is an offline tier that's optimized for data that can tolerate several hours of retrieval latency. Data must remain in the Archive tier for at least 180 days or be subject to an early deletion charge. Data for the Archive tier includes secondary backups, original raw data, and legally required compliance information. This tier is the most cost-effective option for storing data. Accessing data is more expensive in the Archive tier than accessing data in the other tiers.
2424

25-
An archive tier doesn't allow you to read or modify the content of a blob directly. However, you do have access to its metadata, including index tags. To access the blob's content, you can assign it to the hot, cool, or cold tier to trigger the process referred to as rehydration.
25+
To access the blob's content, you can rehydrate it to the hot, cool, or cold tier using two methods: **Copy Blob** (recommended - creates a new blob in an online tier) or **Set Blob Tier** (changes tier in place). Both methods support Standard priority (up to 15 hours) or High priority (within 1 hour for objects under 10 GB, at higher cost). Use High priority for urgent data retrieval in disaster recovery scenarios.
2626

2727
### Compare access tiers
2828

learn-pr/wwl-azure/configure-blob-storage/includes/5-add-blob-lifecycle-management-rules.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,19 @@
11
Every data set has a unique lifecycle. Early in the lifecycle, users tend to access some of the data in the set, but not all of the data. As the data set ages, access to all of the data in the set tends to dramatically reduce. Some data set stays idle in the cloud and is rarely accessed. Some data expires within a few days or months after creation. Other data is actively read and modified throughout the data set lifetime.
22

3-
Azure Blob Storage supports [lifecycle management](/azure/storage/blobs/lifecycle-management-policy-configure) for data sets. It offers a rich rule-based policy for GPv2 and Blob Storage accounts. You can use lifecycle policy rules to transition your data to the appropriate access tiers, and set expiration times for the end of a data set's lifecycle.
3+
Azure Blob Storage supports [lifecycle management](/azure/storage/blobs/lifecycle-management-policy-configure) for data sets. It offers a rich rule-based policy for GPv2 accounts and Premium block blob accounts. Legacy Blob Storage accounts are also supported, but GPv2 is recommended for new deployments. You can use lifecycle policy rules to transition your data to the appropriate access tiers, and set expiration times for the end of a data set's lifecycle.
44

55
> [!VIDEO https://learn-video.azurefd.net/vod/player?id=ce48b339-bc3a-412a-bf97-fb8581084431]
66
77
### Things to know about lifecycle management
88

99
You can use Azure Blob Storage lifecycle management policy rules to accomplish several tasks.
1010

11-
- Transition blobs to a cooler storage tier (Hot to Cool, Hot to Archive, Cool to Archive) to optimize for performance and cost.
11+
- Transition blobs to a cooler storage tier (Hot to Cool, Hot to Cold, Hot to Archive, Cool to Cold, Cool to Archive, Cold to Archive) to optimize for performance and cost.
1212

1313
- Delete current versions of a blob, previous versions of a blob, or blob snapshots at the end of their lifecycles.
1414

15+
- Automatically transition blobs from Cool back to Hot when accessed. This setting optimizes for unpredictable access patterns without early deletion charges.
16+
1517
- Apply rules to an entire storage account, to select containers, or to a subset of blobs using name prefixes or blob index tags as filters.
1618

1719
#### Business scenario

learn-pr/wwl-azure/configure-blob-storage/includes/8-determine-storage-pricing.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ Review the following billing considerations for an Azure storage account and Blo
1515

1616
- **Performance tiers**. The Blob Storage tier determines the amount of data stored and the cost for storing that data. As the performance tier gets cooler, the per-gigabyte cost decreases.
1717

18-
- **Data access costs**. Data access charges increase as the tier gets cooler. For data in the Cool and Archive tiers, you're billed a per-gigabyte data access charge for reads.
18+
- **Data access costs**. Data access charges increase as the tier gets cooler. For data in the Cool, Cold, and Archive tiers, you're billed a per-gigabyte data access charge for read actions.
1919

2020
- **Transaction costs**. There's a per-transaction charge for all tiers. The charge increases as the tier gets cooler.
2121

22-
- **Geo-replication data transfer costs**. This charge only applies to accounts that have geo-replication configured, including GRS and RA-GRS. Geo-replication data transfer incurs a per-gigabyte charge.
22+
- **Geo-replication data transfer costs**. This charge only applies to accounts that have geo-replication configured. Geo-replication data transfer incurs a per-gigabyte charge.
2323

2424
- **Outbound data transfer costs**. Outbound data transfers incur billing for bandwidth usage on a per-gigabyte basis. This billing is consistent with general-purpose Azure storage accounts.
2525

learn-pr/wwl-azure/configure-blob-storage/index.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
prefetch-feature-rollout: true
66
title: Configure Azure Blob Storage
77
description: "Learn how to configure Azure Blob Storage, including tiers and object replication."
8-
ms.date: 02/19/2026
8+
ms.date: 03/23/2026
99
author: wwlpublish
1010
ms.author: cynthist
1111
ms.topic: module

0 commit comments

Comments
 (0)