An Azure service that stores unstructured data in the cloud as blobs.
Azure Blob Storage is one of the core services in an Azure Storage account that stores unstructured data as objects (called blobs). A general-purpose v1 (GPv1) storage account is the older type of Azure Storage account that can host blobs, files, queues, and tables. General-purpose v2 (GPv2) is the newer, recommended account type that supports all the same core services plus newer features such as blob tiering, lifecycle management, and advanced redundancy options.
To know whether Azure Blob Storage (and GPv1 vs GPv2) is being used:
- Understand what GPv1 is
A GPv1 account is the original general-purpose Azure Storage account type. It supports all four core storage services (Blobs, Files, Queues, Tables) and classic redundancy SKUs (LRS, GRS, RA-GRS). It predates blob tiering and many newer management features. - Understand what GPv2 is and why the email was received
General purpose v2 (GPv2) storage accounts are the recommended account type for most Azure Storage scenarios. GPv2 provides access to the latest Azure Storage features including blob tiering, lifecycle management, and advanced redundancy options and offers the most cost effective pricing model for a wide range of workloads.
Microsoft will retire GPv1 storage accounts on a specified date; all GPv1 accounts must be upgraded to GPv2 before that date to avoid service disruption. That retirement is why the migration email was received. - How to tell if GPv1 or GPv2 is in use
The context describes how to inventory accounts and identify GPv1 and legacy Blob storage accounts:- Use Azure Resource Graph, CLI, Azure Inventory, or the Azure portal to identify all GPv1 accounts (kind
Storage) and legacy Blob storage accounts (kindBlobStorage). - These are the account types that must be migrated to GPv2.
- Use Azure Resource Graph, CLI, Azure Inventory, or the Azure portal to identify all GPv1 accounts (kind
- What happens when upgrading
- Upgrading from GPv1 to GPv2 is an in-place Azure Resource Manager operation that changes the account kind.
- There is no downtime and no data loss; endpoint names and data remain the same.
- Once upgraded to GPv2, the account cannot be downgraded back to GPv1.
- Why GPv2 matters for Blob Storage
- GPv2 delivers the lowest per-gigabyte capacity prices and supports default account access tiers (hot or cool) and blob-level tiering between hot, cool, cold, or archive.
- Converting a storage account from GPv1 to GPv2 changes how Blob Storage is billed, but does not impact pricing for Azure Files or Azure Disks.
In practice, if an application is storing files, backups, or other unstructured data in Azure Storage, it is very likely using Azure Blob Storage within a GPv1 or GPv2 account. The email about migrating from GPv1 to GPv2 indicates at least one storage account in the environment is still GPv1 and needs to be upgraded.
References: