0 votes
in Azure by
How does Azure Table Storage handle batch operations and what are the limitations around those?

1 Answer

0 votes
by

Azure Table Storage supports batch operations through the Entity Group Transaction, allowing multiple insert, update, delete, and merge actions within a single atomic transaction. Limitations include:

1. Maximum 100 entities per batch.
2. Total payload size limited to 4 MB.
3. All entities must share the same partition key.
4. No query or retrieve operations allowed in batches.
5. Batch may fail if concurrent conflicting transactions occur.
6. If any operation fails, entire batch is rolled back.

...