Reputation: 43
I am using azure find blobs by tags api https://learn.microsoft.com/en-us/rest/api/storageservices/find-blobs-by-tags in java, but it also returns blobs which are not there in the container. When i try to get blobs returned by the find blobs by tags api, it gives me 404 blob does not exist. If it helps, soft delete is disabled on my account and i delete blobs via delete blob api in batch.
Upvotes: 1
Views: 541
Reputation:
AFAIK, I can see that you have given that deleted blob snapshots also exists in the Azure Blob Storage container as shown in your image.
This is because as given in this MS Doc
If a soft-deleted blob has snapshots, the deleted snapshots can also be displayed in the Azure portal.
Blobs are invisible by default if soft-deletion is happened and shows the status as Deleted state but that soft-deleted blobs will contains the snapshots are not automatically deleted.
Upvotes: 0