Forum Discussion
kathyhurchla
Nov 18, 2025Copper Contributor
Manage/restore metadata when blob is updated
I'm using an Azure Storage container of block blobs as a data source for an Azure AI Search Index, and I'm using Blob metadata key value pairs for some custom data. But metadata gets wiped when a bl...
Kidd_Ip
Nov 19, 2025MVP
Blob metadata in Azure Storage is overwritten whenever you upload or replace a blob. It does not persist automatically across updates. To manage this, you need to either re-apply metadata after each update or maintain metadata in an external store (Cosmos DB, SQL, Table Storage) and sync it back. People may also use a hybrid approach: blobs for media, external DB for metadata, and automation (functions, event grid, pipelines) to restore metadata after updates.