1

I'm using an Azure Data Lake Storage Gen2 storage account and the vast majority of the files are just for archiving, so I would like to changes their access tier to Archive to reduce cost. Is there any way/tool to recursively change access tier for a folder or do I have to write e.g. an application that recursively changes the access tier for the archive folders?

Ivan Glasenberg
  • 29,865
  • 2
  • 44
  • 60

1 Answers1

4

You can use storage-lifecycle-management for ADLS Gen2.

It's easy to configure and automatically move blobs to archive tier.

Steps as below:

1.Nav to azure portal -> Lifecycle Management -> then click "Add rule":

enter image description here

2.In the new page, check "Move blobs to archive storage" -> specify a value which means after x days, it will move to archive storage:

enter image description here

Note: the rule may take a few hours to take effect.

Ivan Glasenberg
  • 29,865
  • 2
  • 44
  • 60