mirror of
https://git.proxmox.com/git/mirror_corosync-qdevice
synced 2025-08-14 18:28:04 +00:00
![]() With default config of running dpd timer every 10 second and waiting for 2 * client_timeout to clear message received flag and then waiting another 2 * client_timeout without message received it was possible that client was marked as a dead after more than 40 seconds making qdevice to stop sending votequorum hearbeat for too long so corosync lost votes from qdevice. This patch is simpler solution which just changes default dpd timer to 1 second and timeout to 1.2 * client_timeout. Signed-off-by: Jan Friesse <jfriesse@redhat.com> |
||
---|---|---|
build-aux | ||
init | ||
man | ||
qdevices | ||
.gitarchivever | ||
.gitattributes | ||
.gitignore | ||
autogen.sh | ||
configure.ac | ||
corosync-qdevice.spec.in | ||
LICENSE | ||
Makefile.am | ||
README |
Corosync-qdevice ---------------- corosync-qdevice is a daemon running on each node of a cluster. It provides a configured number of votes to the quorum subsystem based on a third-party arbitrator's decision. Its primary use is to allow a cluster to sustain more node failures than standard quorum rules allow. It is recommended for clusters with an even number of nodes and highly recommended for 2 node clusters. corosync-qnetd is a daemon running outside of the cluster with the purpose of providing a vote to the corosync-qdevice model net. It's designed to support multiple clusters and be almost configuration and state free. New clusters are handled dynamically and no configuration file exists. It's also able to run as non-root user - which is recommended. Connection between the corosync-qdevice model net client can be optionally configured with TLS client certificate checking. The communication protocol between server and client is designed to be very simple and allow backwards compatibility. Originally both qdevice and qnetd were part of the Corosync codebase (https://github.com/corosync/corosync) but because it's got quite big we decided to split it into it's own sub project. Dependencies ------------ * Corosync >= 2.0 * NSS Installation ------------ $ ./autogen.sh $ ./configure $ make $ sudo make install