In MongoDB it is called write concern, that is the number of the servers in a replica set, that the data should be committed before the cluster acknowledges the write request. How is it called in the Postgres?
Asked
Active
Viewed 490 times
1 Answers
4
PostgreSQL works differently. As soon as the data are committed on the single primary database, the write is effective. If you use synchronous replication, that commit waits until the required standby servers (configured by synchronous_standby_names) have received the information.
Laurenz Albe
- 61,070
- 4
- 55
- 90