GithubHelp home page GithubHelp logo

Comments (5)

greensky00 avatar greensky00 commented on June 24, 2024

Hi @xuluna,

In the original Raft (and also all other quorum-based consensus protocols), that's right. The cluster cannot make any decision and becomes read-only if it loses quorum (a majority of nodes). In 2-node cluster, the minimum size of quorum is 2, so that if at least one node goes down, the cluster is no longer able to serve write operation (In 3-node cluster, one node down will be tolerated safely).

But in NuRaft, we support custom quorum size. If you manually reduce the size of quorum to 1, the 2-node cluster will be available even though one node goes down.
https://github.com/eBay/NuRaft/blob/master/docs/custom_quorum_size.md

But please note that it does not guarantee the safety against data loss or log diverging.

from nuraft.

xuluna avatar xuluna commented on June 24, 2024

That's very awesome. Thank you!

from nuraft.

xuluna avatar xuluna commented on June 24, 2024

@greensky00 If I set the custom quorum size and custom election size to 1, and later on node 2 is back, can it be detected? or I have to manually set sizes back again and add_srv again? The log will be automatically synced as well?

from nuraft.

greensky00 avatar greensky00 commented on June 24, 2024

@xuluna
Once you add server, the membership info (list of all members in the cluster) is preserved unless you remove the server from the cluster (remove server is different to becoming offline). Hence, its status (online/offline) will be automatically detected by the leader, you don't need to call add_srv again. Logs also will be automatically synced as soon as it becomes online.

Regarding the custom quorum size, you need to manually set the size back to 0 (i.e., default size).

from nuraft.

xuluna avatar xuluna commented on June 24, 2024

@greensky00 Thank you and happy new year!

from nuraft.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.