Niveth
Explore posts from serversDTDrizzle Team
•Created by Niveth on 1/18/2025 in #help
Identifying error due to Serializable isolation failure in postgres
I have a transaction with serializable isolation level
Based on the postgres documentation I have to retry it whenever postgres is unable to guarantee the
Serializable
isolation level.
The error raised by the postgres when I have to retry is
Link to the postgres documentation (https://www.postgresql.org/docs/current/transaction-iso.html)
My question is to how to identify the above error so that I can retry only when the error occurs due to above case.
I can't retry every time there is an error.
Thanks!!1 replies