Data storage in Azure Storage

Microsoft Azure storage is a managed service that provides durable, secure and scalable storage in the cloud. 

Durable, this means that the redundancy ensures that your data is safe in the event of transient hardware failures and also replicate data across data centers or geographical regions for extra protection from local catastrophe or natural disaster. Data replicated in this way remains highly available in the event of an unexpected outage. 

Security, all data written to Azure storage is encrypted by the service as your storage provides you with fine grained control over who has access to your data. 

Scalability, Azure storage is designed to be massively scalable to meet the data storage and performance needs of today's applications. 

Management, Microsoft Azure handles maintenance and any critical problems for you. 

A single Azure subscription can host up to 200 storage accounts, each of which can hold 500 terabytes of data. 




Azure storage offers four configuration options.
  • Azure blob, a scalable object store for text and binary data.
  • Azure files, managed file shares for cloud or on premises deployments(for traditional SMB file shares)
  • Azure queue, a messaging store for reliable messaging between application components(persistent messaging)
  • Azure table and NoSQL store for no schema storage of structured data (for structured storage of key/values)


Azure Storage provides a REST API to work with the containers and data stored in each account. Each type of data you can store has its own independent API. Recall that we have four specific data types: Blobs, Queues, Tables, Files.


SAS
Reference and Credits : Microsoft.com

Comments