Different ways to access Storage Account, Access Tiers, Redundency Level ๐ŸงŠ

Different ways to access Storage Account, Access Tiers, Redundency Level ๐ŸงŠ

ยท

2 min read

What are the different ways to access the Storage Account?

  1. Access Keys ๐Ÿ—๏ธ - These are like passwords. The problem with access keys is that it will give the full control of the storage account. (Hence not recommended)

    1. SAS Token ๐Ÿ” - This will only provide the relevant permission that is required. (read-only, write etc)

What are the different types of access tires? โŒจ๏ธ

  1. Hot - This is for more frequent data access. Access time of data is very fast but the cost of accessing data is high.

  2. Cold - This is for less frequent data access. The access time of data is less as compared to the Hot access tier and the cost of accessing data is also less.

  3. Archive - This is used to keep old data. The access time of data is very high.

What are the different types of redundancy levels? #๏ธโƒฃ

  1. Locally redundant storage (LRS) copies your data synchronously three times within a single physical location in the primary region. LRS is the least expensive replication option, but isn't recommended for applications requiring high availability or durability.

  2. Zone-redundant storage (ZRS) copies your data synchronously across three Azure availability zones in the primary region. For applications requiring high availability, Microsoft recommends using ZRS in the primary region and also replicating it to a secondary region.

  3. Geo-redundant storage (GRS) copies your data synchronously three times within a single physical location in the primary region using LRS. It then copies your data asynchronously to a single physical location in the secondary region. Within the secondary region, your data is copied synchronously three times using LRS.

  4. Geo-zone-redundant storage (GZRS) copies your data synchronously across three Azure availability zones in the primary region using ZRS. It then copies your data asynchronously to a single physical location in the secondary region. Within the secondary region, your data is copied synchronously three times using LRS.

ย