X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-akka-raft%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fcluster%2Fraft%2Fbehaviors%2FCandidate.java;h=7c111d28de818e225eb4b1ab8e10d4f962198c72;hb=b5cb353e3553a39f576c284119af75ffa5ea66a9;hp=ac7dbaba27b9a155a51c7afc09114c2974604d30;hpb=a81d98f692b80c45bce3fe6a87e731abfb012a9f;p=controller.git diff --git a/opendaylight/md-sal/sal-akka-raft/src/main/java/org/opendaylight/controller/cluster/raft/behaviors/Candidate.java b/opendaylight/md-sal/sal-akka-raft/src/main/java/org/opendaylight/controller/cluster/raft/behaviors/Candidate.java index ac7dbaba27..7c111d28de 100644 --- a/opendaylight/md-sal/sal-akka-raft/src/main/java/org/opendaylight/controller/cluster/raft/behaviors/Candidate.java +++ b/opendaylight/md-sal/sal-akka-raft/src/main/java/org/opendaylight/controller/cluster/raft/behaviors/Candidate.java @@ -88,8 +88,8 @@ public class Candidate extends AbstractRaftActorBehavior { // Some other candidate for the same term became a leader and sent us an append entry if (currentTerm() == appendEntries.getTerm()) { - log.debug("{}: New Leader sent an append entry to Candidate for term {} will switch to Follower", - logName(), currentTerm()); + log.info("{}: New Leader {} sent an AppendEntries to Candidate for term {} - will switch to Follower", + logName(), appendEntries.getLeaderId(), currentTerm()); return switchBehavior(new Follower(context)); } @@ -112,8 +112,8 @@ public class Candidate extends AbstractRaftActorBehavior { if (voteCount >= votesRequired) { if (context.getLastApplied() < context.getReplicatedLog().lastIndex()) { - log.debug("{}: LastApplied index {} is behind last index {}", logName(), context.getLastApplied(), - context.getReplicatedLog().lastIndex()); + log.info("{}: LastApplied index {} is behind last index {} - switching to PreLeader", + logName(), context.getLastApplied(), context.getReplicatedLog().lastIndex()); return internalSwitchBehavior(RaftState.PreLeader); } else { return internalSwitchBehavior(RaftState.Leader); @@ -154,6 +154,9 @@ public class Candidate extends AbstractRaftActorBehavior { // set currentTerm = T, convert to follower (§5.1) // This applies to all RPC messages and responses if (rpc.getTerm() > context.getTermInformation().getCurrentTerm()) { + log.info("{}: Term {} in \"{}\" message is greater than Candidate's term {} - switching to Follower", + logName(), rpc.getTerm(), rpc, context.getTermInformation().getCurrentTerm()); + context.getTermInformation().updateAndPersist(rpc.getTerm(), null); // The raft paper does not say whether or not a Candidate can/should process a RequestVote in @@ -181,7 +184,7 @@ public class Candidate extends AbstractRaftActorBehavior { long newTerm = currentTerm + 1; context.getTermInformation().updateAndPersist(newTerm, context.getId()); - log.debug("{}: Starting new term {}", logName(), newTerm); + log.info("{}: Starting new election term {}", logName(), newTerm); // Request for a vote // TODO: Retry request for vote if replies do not arrive in a reasonable