tridy
tridy

Reputation: 1272

Deleting many PartitionKey-unique entities from Azure Table Storage

The problem that we have is that we need to delete more than 600 unique entities (mostly with unique Partition Keys and empty Row Keys) from Azure Table Storage, and we are looking for an effective way of doing that.

The batch delete will require that All entities in a given batch must have the same partition key, which is not our case.

Is deleting them one by one the only way of doing it? Or is there another way?

Thanks!

Upvotes: 0

Views: 310

Answers (1)

Gaurav Mantri
Gaurav Mantri

Reputation: 136306

Is deleting them one by one the only way of doing it? Or is there another way?

Yes, unfortunately that's the only way to delete entities with different partition keys.

Upvotes: 1

Related Questions