English 中文(简体)
Azure Lifecycle Management Rule
原标题:

I am attempting to set up an Azure Lifecycle Management rule. I want to move my active/Hot files/blobs that are over 90 days old to an Archive tier. I tried walking through the Lifecycle Management wizard but when I come to the If/Then screen where you identify that the blobs that are 90 days old should be moved, the Then drop-down only allows Delete the blob. Do I have to somehow activate the Archive/Cold Storage tier in order to have Move to Archive option available in the dropdown?

问题回答

This could happen if you select "Append blobs" in blob types (1st step) because access tier is only available for Block blobs.

enter image description here

Furthermore, please ensure that the redundancy type for your storage account is one of the following values: LRS, GRS, or RA-GRS. Archive tier is not supported for ZRS, GZRS, or RA-GZRS.

enter image description here

Please make sure that these conditions are met. To learn more, please see this link: https://learn.microsoft.com/en-us/azure/storage/blobs/access-tiers-overview?tabs=azure-portal





相关问题
Copy data from Access to SQL

I am in the process of migrating an existing Access database to a SQL database with a web front-end. I have successfully copied the database to SQL using the SQL Server Migration tool and am working ...

MongoMapper and migrations

I m building a Rails application using MongoDB as the back-end and MongoMapper as the ORM tool. Suppose in version 1, I define the following model: class SomeModel include MongoMapper::Document ...

Switching to WPF. Is it time?

I m considering switching from MFC to WPF. My first concern is that there are too many users who don t have .NET with WPF installed yet. Can anybody point to a source containing the WPF penetration ...

rake db:migrate running all migrations correctly

I m fairly new to Ruby on Rails here. I have 2 migrate files that were provided. The first one, prefixed with 001, creates a table and some columns for that table. The next migrate file, prefixed ...

Migrate Java Applet to what/where?

I am reviewing currently a medium size code base (around 30K LOC) which uses a huge Applet and interfaces with other systems. It s a tool to create custom labels, so we need drag-n-drop and other ...

热门标签