You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This can happen as soon as the transaction closure returns, but before writes. Another transaction can safely rely on this state being the common ground at this point, as any write failures will cause failures for this transaction as well. Note the transaction itself shouldn't return early, as that would violate the durability promise. However, this optimization should allow more writes to take place across many requests, for instance, increasing overall throughput.
The text was updated successfully, but these errors were encountered:
This can happen as soon as the transaction closure returns, but before writes. Another transaction can safely rely on this state being the common ground at this point, as any write failures will cause failures for this transaction as well. Note the transaction itself shouldn't return early, as that would violate the durability promise. However, this optimization should allow more writes to take place across many requests, for instance, increasing overall throughput.
The text was updated successfully, but these errors were encountered: