lurning too koad
lurning too koad

Reputation: 2964

Do Firestore transactions only retry automatically in contention cases?

Do Firestore transactions automatically retry only in contention cases (when changes are made to the underlying documents during the transaction itself)? Or will Firestore automatically retry transactions for other error cases?

Upvotes: 1

Views: 144

Answers (1)

Doug Stevenson
Doug Stevenson

Reputation: 317362

They retry only on contention. If there is another problem with the write (for example, violated security rule, rate limits, document size limit), it will not be retried.

Upvotes: 1

Related Questions