Recommend a solution for storing unstructured data

One of those options is the Azure Storage Blob service. This is your go-to for storing large amounts of unstructured data like images, videos, and backups.

Design for Azure storage accounts

Design for Azure Blob Storage

Keep in mind, the accessibility types for this which are things like HTTP, and ACTVS and you want to look at Azure files. You know, know what this service does; it provides Cloud-based files shares and understand how it’s accessed using SMB or NFS.

Design for Azure Files

Then we have our Azure disks which are block-level storage used with virtual machines. You know, keep in mind that these act like physical disks and they’re normally allocated to your virtual machine workloads.

Design for Azure managed disks

And we also have the Azure Storage Queue service; it’s designed for asynchronous communication. So, understand the use cases for that.

****MISSING****

Storage TypeConsiderations
Azure Blob StorageStores vast amounts of unstructured data and is often used for images and multimedia files. Blob stands for Binary Large Object.
Azure FilesProvides fully managed file shares in the cloud. Data is accessible via the industry standard Server Message Block (SMB) protocol, Network File System (NFS) protocol, and the Azure Files REST API.
Azure managed disksSupports Azure Virtual Machines. These disks are block-level storage volumes that are managed by Azure and perform like physical disks in an on-premises server, but in a virtual environment.
Azure Queue StorageStores large numbers of messages and is commonly used to create a backlog of work to process asynchronously.


Design for data storage

Design for data redundancy

Design for storage security