BUG-5626: do not allow overriding of RaftActor.handleCommand()
[controller.git] / opendaylight / md-sal / sal-akka-raft / src / main / java / org / opendaylight / controller / cluster / raft / behaviors / Leader.java
1 /*
2  * Copyright (c) 2014 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.controller.cluster.raft.behaviors;
9
10 import akka.actor.ActorRef;
11 import akka.actor.ActorSelection;
12 import com.google.common.annotations.VisibleForTesting;
13 import com.google.common.base.Preconditions;
14 import com.google.common.base.Stopwatch;
15 import java.util.concurrent.TimeUnit;
16 import javax.annotation.Nonnull;
17 import javax.annotation.Nullable;
18 import org.opendaylight.controller.cluster.raft.FollowerLogInformation;
19 import org.opendaylight.controller.cluster.raft.RaftActorContext;
20 import org.opendaylight.controller.cluster.raft.RaftActorLeadershipTransferCohort;
21 import org.opendaylight.controller.cluster.raft.RaftState;
22 import org.opendaylight.controller.cluster.raft.base.messages.ElectionTimeout;
23 import org.opendaylight.controller.cluster.raft.messages.AppendEntriesReply;
24
25 /**
26  * The behavior of a RaftActor when it is in the Leader state
27  * <p/>
28  * Leaders:
29  * <ul>
30  * <li> Upon election: send initial empty AppendEntries RPCs
31  * (heartbeat) to each server; repeat during idle periods to
32  * prevent election timeouts (§5.2)
33  * <li> If command received from client: append entry to local log,
34  * respond after entry applied to state machine (§5.3)
35  * <li> If last log index ≥ nextIndex for a follower: send
36  * AppendEntries RPC with log entries starting at nextIndex
37  * <ul>
38  * <li> If successful: update nextIndex and matchIndex for
39  * follower (§5.3)
40  * <li> If AppendEntries fails because of log inconsistency:
41  * decrement nextIndex and retry (§5.3)
42  * </ul>
43  * <li> If there exists an N such that N > commitIndex, a majority
44  * of matchIndex[i] ≥ N, and log[N].term == currentTerm:
45  * set commitIndex = N (§5.3, §5.4).
46  */
47 public class Leader extends AbstractLeader {
48     /**
49      * Internal message sent to periodically check if this leader has become isolated and should transition
50      * to {@link IsolatedLeader}.
51      */
52     @VisibleForTesting
53     static final Object ISOLATED_LEADER_CHECK = new Object();
54
55     private final Stopwatch isolatedLeaderCheck = Stopwatch.createStarted();
56     private @Nullable LeadershipTransferContext leadershipTransferContext;
57
58     public Leader(RaftActorContext context) {
59         super(context, RaftState.Leader);
60     }
61
62     @Override
63     public RaftActorBehavior handleMessage(ActorRef sender, Object originalMessage) {
64         Preconditions.checkNotNull(sender, "sender should not be null");
65
66         if (ISOLATED_LEADER_CHECK.equals(originalMessage)) {
67             if (isLeaderIsolated()) {
68                 LOG.warn("{}: At least {} followers need to be active, Switching {} from Leader to IsolatedLeader",
69                     context.getId(), getMinIsolatedLeaderPeerCount(), getLeaderId());
70                 return internalSwitchBehavior(RaftState.IsolatedLeader);
71             } else {
72                 return this;
73             }
74         } else {
75             return super.handleMessage(sender, originalMessage);
76         }
77     }
78
79     @Override
80     protected void beforeSendHeartbeat(){
81         if(isolatedLeaderCheck.elapsed(TimeUnit.MILLISECONDS) > context.getConfigParams().getIsolatedCheckIntervalInMillis()){
82             context.getActor().tell(ISOLATED_LEADER_CHECK, context.getActor());
83             isolatedLeaderCheck.reset().start();
84         }
85
86         if(leadershipTransferContext != null && leadershipTransferContext.isExpired(
87                 context.getConfigParams().getElectionTimeOutInterval().toMillis())) {
88             LOG.debug("{}: Leadership transfer expired", logName());
89             leadershipTransferContext = null;
90         }
91     }
92
93     @Override
94     protected RaftActorBehavior handleAppendEntriesReply(ActorRef sender, AppendEntriesReply appendEntriesReply) {
95         RaftActorBehavior returnBehavior = super.handleAppendEntriesReply(sender, appendEntriesReply);
96         tryToCompleteLeadershipTransfer(appendEntriesReply.getFollowerId());
97         return returnBehavior;
98     }
99
100     /**
101      * Attempts to transfer leadership to a follower as per the raft paper (§3.10) as follows:
102      * <ul>
103      * <li>Start a timer (Stopwatch).</li>
104      * <li>Send an initial AppendEntries heartbeat to all followers.</li>
105      * <li>On AppendEntriesReply, check if the follower's new match Index matches the leader's last index</li>
106      * <li>If it matches, </li>
107      *   <ul>
108      *   <li>Send an additional AppendEntries to ensure the follower has applied all its log entries to its state.</li>
109      *   <li>Send an ElectionTimeout to the follower to immediately start an election.</li>
110      *   <li>Notify {@link RaftActorLeadershipTransferCohort#transferComplete}.</li>
111      *   </ul>
112      * <li>Otherwise if the election time out period elapses, notify
113      *     {@link RaftActorLeadershipTransferCohort#abortTtransfer}.</li>
114      * </ul>
115      *
116      * @param leadershipTransferCohort
117      */
118     public void transferLeadership(@Nonnull RaftActorLeadershipTransferCohort leadershipTransferCohort) {
119         LOG.debug("{}: Attempting to transfer leadership", logName());
120
121         leadershipTransferContext = new LeadershipTransferContext(leadershipTransferCohort);
122
123         // Send an immediate heart beat to the followers.
124         sendAppendEntries(0, false);
125     }
126
127     private void tryToCompleteLeadershipTransfer(String followerId) {
128         if(leadershipTransferContext == null) {
129             return;
130         }
131
132         FollowerLogInformation followerInfo = getFollower(followerId);
133         if(followerInfo == null) {
134             return;
135         }
136
137         long lastIndex = context.getReplicatedLog().lastIndex();
138         boolean isVoting = context.getPeerInfo(followerId).isVoting();
139
140         LOG.debug("{}: tryToCompleteLeadershipTransfer: followerId: {}, matchIndex: {}, lastIndex: {}, isVoting: {}",
141                 logName(), followerId, followerInfo.getMatchIndex(), lastIndex, isVoting);
142
143         if(isVoting && followerInfo.getMatchIndex() == lastIndex) {
144             LOG.debug("{}: Follower's log matches - sending ElectionTimeout", logName());
145
146             // We can't be sure if the follower has applied all its log entries to its state so send an
147             // additional AppendEntries with the latest commit index.
148             sendAppendEntries(0, false);
149
150             // Now send an ElectionTimeout to the matching follower to immediately start an election.
151             ActorSelection followerActor = context.getPeerActorSelection(followerId);
152             followerActor.tell(ElectionTimeout.INSTANCE, context.getActor());
153
154             LOG.debug("{}: Leader transfer complete", logName());
155
156             leadershipTransferContext.transferCohort.transferComplete();
157             leadershipTransferContext = null;
158         }
159     }
160
161     @Override
162     public void close() {
163         if(leadershipTransferContext != null) {
164             leadershipTransferContext.transferCohort.abortTransfer();
165         }
166
167         super.close();
168     }
169
170     @VisibleForTesting
171     void markFollowerActive(String followerId) {
172         getFollower(followerId).markFollowerActive();
173     }
174
175     @VisibleForTesting
176     void markFollowerInActive(String followerId) {
177         getFollower(followerId).markFollowerInActive();
178     }
179
180     private static class LeadershipTransferContext {
181         RaftActorLeadershipTransferCohort transferCohort;
182         Stopwatch timer = Stopwatch.createStarted();
183
184         LeadershipTransferContext(RaftActorLeadershipTransferCohort transferCohort) {
185             this.transferCohort = transferCohort;
186         }
187
188         boolean isExpired(long timeout) {
189             if(timer.elapsed(TimeUnit.MILLISECONDS) >= timeout) {
190                 transferCohort.abortTransfer();
191                 return true;
192             }
193
194             return false;
195         }
196     }
197 }