Azure Storage platform is Microsoft’s cloud storage solution. Like other cloud offerings, it is a managed service and caters to various storage requirements and scenarios.
It includes the following storage options:
- Azure Blobs : Blob stands for binary large object. This storage solution supports all kinds of files including, text files, videos, images, documents, binary data etc.
- Azure Files : Azure Files is an organized way of storing data on the cloud. The main advantage of using Azure Files over Azure Blobs is that Azure Files allows for organizing the data in a folder structure. Also, Azure Files is SMB compliant i.e. it can be used as a file share.
- Azure Queues : Azure Queues is a cloud based messaging store for establishing and brokering communication between various applications and components.
- Azure Tables : A NoSQL storage solution for storing structured data which does not meet the standard relational database schema.
- Azure Disks : This is used as a storage solution for Azure VMs (Virtual Machines).
Reference: https://docs.microsoft.com/en-us/azure/storage/common/storage-introduction
2 thoughts on “Azure Storage”