Azure Storage types

Blob storage. Containers for data blobs. The three types of blobs are:

    1. Page blobs: Optimized for random access, 512-byte pages, Azure virtual machine disk files
    2. Block blobs: Optimized for sequential large access, variable-sized blocks, ideal for media and backups
    3. 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

相关文章:

  • 2021-11-02
  • 2021-05-03
  • 2021-11-14
  • 2022-01-25
  • 2021-07-15
猜你喜欢
  • 2021-09-24
  • 2021-11-15
  • 2021-10-11
  • 2020-09-25
  • 2020-09-28
  • 2022-12-23
相关资源
相似解决方案