|
|
|
|
|
by jvdongen
978 days ago
|
|
This is a disingenuous comment at best. As explained in the docs you link to, Postgres has both synchronous and asynchronous replication modes. In asynchronous mode availability is favored over durability. Which means commits can get lost when the primary goes down in an uncontrolled fashion. In sync mode that will not happen at a cost to some performance. It’s the same trade-off any distributed system has to make, and the user gets to make the choice. |
|