GithubHelp home page GithubHelp logo

Comments (2)

greensky00 avatar greensky00 commented on July 22, 2024 1

Hi @alesapin
Seems like the leader election was successfully done quickly (node 3 became the leader within 1 second).

Node 3:

2021.02.04 22:45:54.578642 [ 63 ] {} <Warning> RaftInstance: Server is elected as leader for term 2

Node 2:

2021.02.04 22:45:54.577455 [ 22 ] {} <Information> RaftInstance:   FOLLOWER

The message that Node 3 was continuously sending was heartbeat; in Raft, there is no separation between heartbeat and append_entries request (please refer to paper, Figure 2 at page 4). It sent the log 152 (the last log it had at that time) at first, and then Node 2 accepted and stored it. After that, Node 3 sent an empty message as a heartbeat, with the info of the last log index and committed log index, which was 152 too.

You can see the Node 3's log that it sent log 152,

2021.02.04 22:45:54.579249 [ 63 ] {} <Notice> RaftInstance: append_entries for 2 with LastLogIndex=151, LastLogTerm=1, EntriesLength=1, CommitIndex=151, Term=2, peer_last_sent_idx 0

and after that, it sent an empty message (EntriesLength=0), with the last log/commit index info.

2021.02.04 22:45:54.581362 [ 31 ] {} <Notice> RaftInstance: append_entries for 2 with LastLogIndex=152, LastLogTerm=2, EntriesLength=0, CommitIndex=152, Term=2, peer_last_sent_idx 152

10 minutes later, Node 3 received a new client request, and appended log 153.

2021.02.04 22:55:59.558464 [ 22 ] {} <Notice> RaftInstance: Receive a client_request message from 0 with LastLogIndex=0, LastLogTerm=0, EntriesLength=1, CommitIndex=0 and Term=0
2021.02.04 22:55:59.558599 [ 22 ] {} <Notice> RaftInstance: append at log_idx 153

So everything looks normal (at least in Raft's side). The thing is that Node 3 didn't receive any client request for 10 minutes.

from nuraft.

alesapin avatar alesapin commented on July 22, 2024

Thanks!

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.