...

/

Durability Trade-Offs

Durability Trade-Offs

Learn about the durability of transactions in PostgreSQL.

Durability is the D of the ACID guarantees, and it refers to the property that our database management system is not allowed to miss any committed transaction after a restart or a crash—any crash. It’s a very strong guarantee, and it can impact performance behavior a lot.

Of course, by default, PostgreSQL applies a strong durability guarantee to every transaction. As we can see in the documentation about asynchronous commit, it’s possible to ...