Mid Azure

How do you configure blob tiers (hot/cool/archive)?

  • Blob tier determines cost and access latency.
  • Can be set during upload or later:

await blobClient.SetAccessTierAsync(AccessTier.Cool);

  • Hot: Frequently accessed
  • Cool: Infrequent access
  • Archive: Rarely accessed

More from Microsoft Azure Tutorial

All questions for this course