You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(whether I block packets in one direction or both doesn't seem to affect behavior)
causes one or more of the nodes to get kicked out of the cluster, but the victim doesn't realize this happened and just hangs. This is true even after network connectivity is restored.
Interestingly, temporarily blocking the node on port 8047 often causes a different node get kicked. My latest run actually kicked the nodes on port 8046 and 8048, thus translating a single-node temporary outage into a cluster failure (as mailing list has told me, doozer doesn't recover from loss of quorum).
The kicked node never recovers, unless the process is restarted as a whole, but this might be related to #44.
The text was updated successfully, but these errors were encountered:
After the script is finished, if you check out web UI you'll see that the node on 8048 never advances and is eventually kicked out of the cluster. Checking the logs, the node indefinitely logs lines like:
The problem is that during a partition, a node call fall far enough behind that it cannot be caught up from the history, but it does not attempt to recover the state (as it does at startup).
With the firedrill 3-node setup, dropping packets for >5 seconds:
sudo iptables -I INPUT --proto udp --dport 8047 -j DROP; sleep 7; sudo iptables -D INPUT --proto udp --dport 8047 -j DROP
(whether I block packets in one direction or both doesn't seem to affect behavior)
causes one or more of the nodes to get kicked out of the cluster, but the victim doesn't realize this happened and just hangs. This is true even after network connectivity is restored.
Interestingly, temporarily blocking the node on port 8047 often causes a different node get kicked. My latest run actually kicked the nodes on port 8046 and 8048, thus translating a single-node temporary outage into a cluster failure (as mailing list has told me, doozer doesn't recover from loss of quorum).
The kicked node never recovers, unless the process is restarted as a whole, but this might be related to #44.
The text was updated successfully, but these errors were encountered: