Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions server/raft.go
Original file line number Diff line number Diff line change
Expand Up @@ -1437,6 +1437,12 @@ func (n *raft) isCurrent(includeForwardProgress bool) bool {
return false
}

if n.paused && n.hcommit > n.commit {
// We're currently paused, waiting to be resumed to apply pending commits.
n.debug("Not current, waiting to resume applies commit=%d, hcommit=%d", n.commit, n.hcommit)
return false
}

if n.commit == n.applied {
// At this point if we are current, we can return saying so.
clearBehindState()
Expand Down
49 changes: 49 additions & 0 deletions server/raft_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1896,3 +1896,52 @@ func TestNRGHealthCheckWaitForDoubleCatchup(t *testing.T) {
n.Applied(3)
require_True(t, n.Healthy())
}

func TestNRGHealthCheckWaitForPendingCommitsWhenPaused(t *testing.T) {
n, cleanup := initSingleMemRaftNode(t)
defer cleanup()

// Create a sample entry, the content doesn't matter, just that it's stored.
esm := encodeStreamMsgAllowCompress("foo", "_INBOX.foo", nil, nil, 0, 0, true)
entries := []*Entry{newEntry(EntryNormal, esm)}

nats0 := "S1Nunr6R" // "nats-0"

// Timeline
aeMsg1 := encode(t, &appendEntry{leader: nats0, term: 1, commit: 0, pterm: 0, pindex: 0, entries: entries})
aeMsg2 := encode(t, &appendEntry{leader: nats0, term: 1, commit: 1, pterm: 1, pindex: 1, entries: entries})
aeHeartbeat := encode(t, &appendEntry{leader: nats0, term: 1, commit: 2, pterm: 1, pindex: 2, entries: nil})

// Process first message.
n.processAppendEntry(aeMsg1, n.aesub)
require_Equal(t, n.pindex, 1)
require_False(t, n.Healthy())

// Process second message, moves commit up.
n.processAppendEntry(aeMsg2, n.aesub)
require_Equal(t, n.pindex, 2)
require_False(t, n.Healthy())

// We're healthy once we've applied the first message.
n.Applied(1)
require_True(t, n.Healthy())

// If we're paused we still are healthy if there are no pending commits.
err := n.PauseApply()
require_NoError(t, err)
require_True(t, n.Healthy())

// Heartbeat marks second message to be committed.
n.processAppendEntry(aeHeartbeat, n.aesub)
require_Equal(t, n.pindex, 2)
require_False(t, n.Healthy())

// Resuming apply commits the message.
n.ResumeApply()
require_NoError(t, err)
require_False(t, n.Healthy())

// But still waiting for it to be applied before marking healthy.
n.Applied(2)
require_True(t, n.Healthy())
}