DEV Community

Faruk
Faruk

Posted on

UNDERSTANDING AZURE STORAGE

Microsoft Azure offers a cloud storage option called Azure Storage. It provides a range of cloud storage and data retrieval services. Azure Storage offers the following primary storage service types:

Blob Holding:

The goal of blob storage is to handle and store unstructured data, including logs, documents, and multimedia.
Access Tiers: Depending on the consumption patterns of the data, you can select from a variety of access tiers, including Hot, Cool, and Archive.

Storage of Files:

Goal: File Storage is a cloud-based, fully managed file sharing that is accessible using the Server Message Block (SMB) protocol. It works well with business applications that need a shared file system.
Use cases include general-purpose file sharing, virtual machine (VM) storage, and file shares for applications.

Storage in Queues:

The goal of queue storage is to provide a message service that enables asynchronous communication between various application components. It's frequently applied to increase scalability and decouple components.
Use Cases: Message queues to facilitate inter-application communication.

Table Storage Organization:

Goal: Large volumes of structured data can be stored in Table Storage, a NoSQL data storage. Applications that need quick and flexible access to data can use it.
Use Cases: storing and retrieving logs, device information, and user profiles, among other non-relational data.

Managed disk storage (disk storage):

Goal: Managed Disks give Azure Virtual Machines high-performance, scalable block storage.
Use Cases: Preserving virtual machine data and operating system drives.
You can use a number of tools and libraries to communicate with Azure Storage, including:

Azure Portal: The web-based resource management tool for Azure.
Azure Storage Explorer is a stand-alone application that makes interacting and managing Azure Storage simple.
Azure PowerShell: PowerShell scripts can be used to manage Azure resources through command-line tools.
Azure CLI: Tools for controlling Azure resources with a command-line interface.
Software development kits (SDKs) for Azure Storage are available for a number of programming languages, and they let you incorporate Azure Storage into your apps.

To guarantee the highest performance and security of your stored data, it's critical to comprehend the security features, best practices, and access controls of Azure Storage.

Top comments (0)