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
As the PostgreSQL document said, when using transaction of isolation level Repeatable read or Serializable, database may return error called Serialization Failure (Error code 40001), which is a very, very common error. Applications using these level must be prepared to retry transactions due to serialization failures.
Maybe we can implement something like auto-retry for PostgreSQL after #481 is solved?
The text was updated successfully, but these errors were encountered:
As the PostgreSQL document said, when using transaction of isolation level
Repeatable read
orSerializable
, database may return error calledSerialization Failure
(Error code40001
), which is a very, very common error. Applications using these level must be prepared to retry transactions due to serialization failures.Maybe we can implement something like auto-retry for PostgreSQL after #481 is solved?
The text was updated successfully, but these errors were encountered: