Your data is the most important part of your Cloud-based infrastructure.
Data includes everything we Store permanently: text, numbers, images, videos.
A traditional SQL database is where most of the text and numeric data is stored.
How about images, videos, or other multimedia content, though? In terms of accessibility and cost, a SQL database may not be the optimum way to store such files.
To save the day, Microsoft Azure comes with a handy Microsoft Azure Storage Account. An Azure Strorage Account is an optimized way to store physical files and access them from your cloud infrastructure.
Throughout this short article, I’m going to explain step by step how to create a new storage account and what are the available configuration options.
Create a new storage account
Login to Azure portal and add a new storage account.
Select account’s name and configuration.
Configuration options can be a little tricky, so here you can find some help understanding them:
Deployment model
You have two options for deployment model, “Resource Manager” and “Classic”. Microsoft suggests that all new storage accounts should be created with “Resource Manager” deployment model. Resource Manager deployment helps you keep your services organized and gives you the opportunity to apply rules to all of the Resource’s services. As far as storage is concerned:
- Resource Manager: The virtual machine requires a storage account to store its disks in blob storage.
- Classic: The virtual machine requires a storage account that stores the VHDs for the operating system, temporary, and additional data disks.
Since “Resource Manager” is the newest option, I would go with that to ensure future compatibility.
Account kind
Your options for account kind are “General purpose” and “Blob storage”. A “General purpose” storage account supports Tables, Queues, Files, Blobs and Virtual Machine Disks under a single account. A “Blob storage” account supports only Blobs. Microsoft suggests that for applications requiring only blobs (only block and append blobs, and not page blobs), you should create a “Blob storage” account to reduce costs.
Performance
The “Performance” per account kind:
- “General purpose” storage accounts have “Standard” and “Premium” options.
- “Blob storage” accounts have only “Standard” option.
“Standard” tier supports Tables, Queues, Files, Blobs and Virtual Machine Disks, while “Premium” supports only Virtual Machine Disks at the moment. So, if you just need Azure Virtual Machine Disks, check the “Premium” features. In any other case, “Standard” tier is your option.
Replication
Azure storage accounts data are always replicated to avoid data loss. You have different options for “Replication”:
- “LRS” or Locally Redundant Storage is available to all “Account kind” options and all “Performance” tiers. It is the lowest cost option and it copies your data 3 times in the same scale unit (a set of resources with well determined throughput) in one datacenter in the region of the storage account. The 3 copies are written simultaneously. If something happens to the datacenter, your data will be lost. Only option though, if your data servers are restricted by law to be only within a country.
- “ZRS” or Zoned-Redundant Storage is available to “General purpose” storage accounts in the “Standard” tier. It copies your data 3 times in different datacenters in 1-2 different regions. The 3 copies are written asynchronously.
- “GRS” or Geo-Redundant Storage is available to all “Account kind” options in the “Standard” tier. It copies your data 3 times synchronously in the same scale unit in one datacenter in the region of the storage account (as LRS) and 3 more times asynchronously to a second region.
- “RA-GRS” or Read-Access Geo-Redundant Storage is available to all “Account kind” options in the “Standard” tier. It copies your data 3 times synchronously in the same scale unit in one datacenter in the region of the storage account and 3 more times asynchronously to a second region (as GRS). The extra feature is that you can have read-access to the secondary location data by using a second endpoint (eg. todoaccount-secondary.blob.core.windows.net).
Replication Regions
You can select your storage account’s region, but the second replication region is predefined by Microsoft. Check the table below to find where your data are replicated:
Primary | Secondary |
---|---|
North Central US | South Central US |
South Central US | North Central US |
East US | West US |
West US | East US |
US East 2 | Central US |
Central US | US East 2 |
North Europe | West Europe |
West Europe | North Europe |
South East Asia | East Asia |
East Asia | South East Asia |
East China | North China |
North China | East China |
Japan East | Japan West |
Japan West | Japan East |
Brazil South | South Central US |
Australia East | Australia Southeast |
Australia Southeast | Australia East |
India South | India Central |
India Central | India South |
India West | India South |
US Gov Iowa | US Gov Virginia |
US Gov Virginia | US Gov Iowa |
Canada Central | Canada East |
Canada East | Canada Central |
UK West | UK South |
UK South | UK West |
Germany Central | Germany Northeast |
Germany Northeast | Germany Central |
West US 2 | West Central US |
West Central US | West US 2 |
Access Tier
The “access tier” configuration option is available only if a “Blob storage” account kind was selected and you get to choose between “Cool” and “Hot”. “Cool” tier has lower storage costs but higher access and transaction costs, because it’s for less frequently accessed data. “Hot” tier has lower access and transaction costs but higher storage costs, because it’s for frequently accessed data. So, if you need to store your blobs and leave it there, select the “Cool” tier. In any other case, select the “Hot” tier. In any case, you can change this option later on if your needs change.
Storage Service Encryption
“Storage service encryption” encrypts (256-bit AES) your data before saving them and decrypts them before retrieving. You don’t have to do anything, since if you enable “Storage Service Encryption”, Azure manages everything automatically. It is supported only by “Resource Manager” deployment model for Files and Blobs.
Your account is created when you get the “Deployments succeeded” notification.
Pricing
The cost depends on the amount of data you store, the account kind and the data replication option. You can find all the information for Azure Storage Pricing here.
Disaster recovery
What happens to your data if a disaster happens to your Azure Server? As aforementioned, depending on your account’s replication option, you have replicas of your data in different servers. Now you have understood the replication options, but you don’t remember what you selected during storage account’s creation. Don’t worry, you can find out following the next steps.
Account Replication Configuration
To check your account’s replication, go to storage accounts.
Go to your account’s overview and check the replication.
To change your account’s replication, go to configuration and change replication from the drop down menu. Then click the “Save” button.
Your account’s replication has changed.
Summary
In order to create an Azure Storage Account:
- Check the different configuration options
- Decide which ones match your needs
- Click “Create”
Enjoy your cloud adventures!