Reputation: 2964
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
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