Introduction to Azure Storage Service
Azure Storage is Microsoft's modern storage solution. If you compare the previous storage techniques with Azure Storage Services, you will find a lot of differences in security, availability, and accessibility.
Here, we will discuss all these Azure Storage benefits and will work on Blob Storage service.
Here, we will discuss all these Azure Storage benefits and will work on Blob Storage service.
- Durable and Highly Available
Your data in Azure service is distributed over geographical data center and will be available to the users in case of any system, software or hardware Failure. This redundancy ensures that the data is safe and can be accessible even in case of disaster. - Secure
All the data written to the Azure Storage is encrypted by services. - Highly Scalable
You can scale up horizontally or vertically as per your requirement. - Accessible
Data in Azure storage can be accessible from everywhere in the world using HTTP or HTTPS protocol. Microsoft provides SDKs for Azure Storage in various languages.
- BLOB
- Table
- Queues
- File storage
- Blob storage is mainly for storing a massive amount of unstructured data such as text or binary data.
- Blob storage is ideally for Images, audio, video, etc.
- Its also used for stream Audio and Video.
- You can also store backup files.
- Objects in the blob can be accessed from anywhere in the world using HTTP or HTTPS protocol.
- Blob data is stored in a container, so we can use a large number of containers for storing a large number of the blob data. A container provides the security from the outer world to protect our data.

Now, let's start working with a Azure Blob storage. To start working with Blob, we need to create a storage account like this, - First, go to your Azure Portal and log in with your credentials.
- Search for Storage Account in the portal.Now, create a storage account as shown below.



Here, to create the account, we need the following details. - Name
The name should be unique and always in small letters. - DeploymentModel
For resources model always choose Resource Manager (for new applications). - Account Kind
- General Purpose V1(GPV1)
GPV1 account provides access to all Azure storage services but may not have the latest features.
Ex
Cool storage is not supported in GPV1. - General Purpose V2(GPV2)
It supports all the latest features of BLOB, FILE, QUEUE and Tables, it supports all APIs supported in GPV1.I and it supports hot and cool accounts. - BLOB
It supports all block blob features as does GPV2. - Replication
We have LRS\ZRS\GRS - The hierarchy will be like this.
- LOCAL REDUNDANT STORAGE(LRS)
- Replicated 3 times within a single data center in a single region where storage account is created.
- It protects your data from server hardware failure.
- This is only available in a premium storage account.
- ZONE REDUNDANT STORAGE(ZRS)
- Replicate 3 copies of your data across 2-3 across 2-3 Zones.
- ZRS is added in Azure after 2014.
- GEO-REDUNDENT STORGE(GRS)
- GRS maintain 6 copies of your data and the data is replicated over zones.

- Hot: Hot storage has higher storage costs than cool storage, but the lowest access costs.
- Cool:Cool storage tier has lower storage costs and higher access costs compared to hot storage.

Once the container is ready, you can upload your files as blob.







Join the conversation! Your thoughts help the community grow.