Overview of Azure Storage
Posted makesense
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Overview of Azure Storage相关的知识,希望对你有一定的参考价值。
Azure Storage types
Blob storage. Containers for data blobs. The three types of blobs are:
- Page blobs: Optimized for random access, 512-byte pages, Azure virtual machine disk files
- Block blobs: Optimized for sequential large access, variable-sized blocks, ideal for media and backups
- Append blobs: Optimized for append operations only, Ideal for logging
Table storage. Store for non-relational key/value entities(pairs) in rows, single clustered index
Queue storage. Temporary store for asynchronous exchange of messages(inter-application)
File storage. File sharing store through SMB 3.x and SMB 2.1
Controlling access to storage
Storage account access keys:
Primary and secondary
Automatically generated but can be recycled
Provide full access to a storage account
shared access signatures(SAS):
Granular (container or resource level)
Time-limited
Stored access policy:
Granular (container level)
Time-limited
You can easily revoke policy-linked SAS
Role-based access control:
Default roles
Custom roles
Specify an access level(blob storage only):
Private
Public Blob
Public Container
以上是关于Overview of Azure Storage的主要内容,如果未能解决你的问题,请参考以下文章
Azure Resource Manager overview
Azure.Cosmos 还是 Microsoft.Azure.Cosmos、Azure.Storage.Blob 还是 Microsoft.Azure.Storage.Blob?适用于 .NET C