-
- Downloads
Improve replication connection timeouts.
Rename replication_timeout to wal_sender_timeout, and add a new setting called wal_receiver_timeout that does the same at the walreceiver side. There was previously no timeout in walreceiver, so if the network went down, for example, the walreceiver could take a long time to notice that the connection was lost. Now with the two settings, both sides of a replication connection will detect a broken connection similarly. It is no longer necessary to manually set wal_receiver_status_interval to a value smaller than the timeout. Both wal sender and receiver now automatically send a "ping" message if more than 1/2 of the configured timeout has elapsed, and it hasn't received any messages from the other end. Amit Kapila, heavily edited by me.
Showing
- doc/src/sgml/config.sgml 22 additions, 14 deletionsdoc/src/sgml/config.sgml
- doc/src/sgml/release-9.1.sgml 1 addition, 1 deletiondoc/src/sgml/release-9.1.sgml
- src/backend/replication/walreceiver.c 79 additions, 15 deletionssrc/backend/replication/walreceiver.c
- src/backend/replication/walsender.c 56 additions, 32 deletionssrc/backend/replication/walsender.c
- src/backend/utils/misc/guc.c 13 additions, 2 deletionssrc/backend/utils/misc/guc.c
- src/backend/utils/misc/postgresql.conf.sample 4 additions, 1 deletionsrc/backend/utils/misc/postgresql.conf.sample
- src/include/replication/walprotocol.h 12 additions, 0 deletionssrc/include/replication/walprotocol.h
- src/include/replication/walreceiver.h 2 additions, 0 deletionssrc/include/replication/walreceiver.h
- src/include/replication/walsender.h 1 addition, 1 deletionsrc/include/replication/walsender.h
- src/include/replication/walsender_private.h 0 additions, 1 deletionsrc/include/replication/walsender_private.h
Loading
Please register or sign in to comment