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
Is it possible to use this raft library to introduce members which will only participate in voting but will never become leader? The use case for such arbiter nodes is to facilitate quorum but also potentially optimizes other resources (such as disk space etc.) for a large db.
Thanks
The text was updated successfully, but these errors were encountered:
So far this is not supported in raft. However, I wonder if you can try some workaround such as setting the follower-only node's election timeout to a practical infinite number. I did not try that before, but it might work.
Is it possible to use this raft library to introduce members which will only participate in voting but will never become leader? The use case for such
arbiter
nodes is to facilitate quorum but also potentially optimizes other resources (such as disk space etc.) for a large db.Thanks
The text was updated successfully, but these errors were encountered: