Maximum number of items in a transaction using Azure.Data.Tables

77 Views Asked by At

We are migrating our app that uses Azure Table to the new Azure.Data.Tables package.

One of the migration tasks is to convert batch operations. What is the limit of items in one transaction is when calling the SubmitTransactionAsync method, as shown on the example below? The documentation does not say the maximum number.

var transactionActions = new List<TableTransactionAction>();

foreach (var row in items)
{
    transactionActions.Add(new TableTransactionAction(TableTransactionActionType.Delete, row));
}

table.SubmitTransactionAsync(transactionActions).Wait();
1

There are 1 best solutions below

0
On BEST ANSWER

The maximum number of entities in a table transaction batch is 100.

Please see this link for more details about this feature: https://learn.microsoft.com/en-us/rest/api/storageservices/performing-entity-group-transactions.