7e6175d9332277c2e828c84812d8d5de754f2f08
[controller.git] / opendaylight / md-sal / sal-akka-raft / src / main / java / org / opendaylight / controller / cluster / raft / behaviors / AbstractRaftActorBehavior.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
9 package org.opendaylight.controller.cluster.raft.behaviors;
10
11 import akka.actor.ActorRef;
12 import akka.actor.Cancellable;
13 import java.util.Random;
14 import java.util.concurrent.TimeUnit;
15 import org.opendaylight.controller.cluster.raft.ClientRequestTracker;
16 import org.opendaylight.controller.cluster.raft.RaftActorContext;
17 import org.opendaylight.controller.cluster.raft.RaftState;
18 import org.opendaylight.controller.cluster.raft.ReplicatedLogEntry;
19 import org.opendaylight.controller.cluster.raft.SerializationUtils;
20 import org.opendaylight.controller.cluster.raft.base.messages.ApplyJournalEntries;
21 import org.opendaylight.controller.cluster.raft.base.messages.ApplyState;
22 import org.opendaylight.controller.cluster.raft.base.messages.ElectionTimeout;
23 import org.opendaylight.controller.cluster.raft.messages.AppendEntries;
24 import org.opendaylight.controller.cluster.raft.messages.AppendEntriesReply;
25 import org.opendaylight.controller.cluster.raft.messages.RequestVote;
26 import org.opendaylight.controller.cluster.raft.messages.RequestVoteReply;
27 import org.slf4j.Logger;
28 import scala.concurrent.duration.FiniteDuration;
29
30 /**
31  * Abstract class that represents the behavior of a RaftActor
32  * <p/>
33  * All Servers:
34  * <ul>
35  * <li> If commitIndex > lastApplied: increment lastApplied, apply
36  * log[lastApplied] to state machine (§5.3)
37  * <li> If RPC request or response contains term T > currentTerm:
38  * set currentTerm = T, convert to follower (§5.1)
39  */
40 public abstract class AbstractRaftActorBehavior implements RaftActorBehavior {
41
42     protected static final ElectionTimeout ELECTION_TIMEOUT = new ElectionTimeout();
43
44     /**
45      * Information about the RaftActor whose behavior this class represents
46      */
47     protected final RaftActorContext context;
48
49     /**
50      *
51      */
52     protected final Logger LOG;
53
54     /**
55      *
56      */
57     private Cancellable electionCancel = null;
58
59     /**
60      *
61      */
62     protected String leaderId = null;
63
64     private short leaderPayloadVersion = -1;
65
66     private long replicatedToAllIndex = -1;
67
68     private final String logName;
69
70     private final RaftState state;
71
72     protected AbstractRaftActorBehavior(RaftActorContext context, RaftState state) {
73         this.context = context;
74         this.state = state;
75         this.LOG = context.getLogger();
76
77         logName = String.format("%s (%s)", context.getId(), state);
78     }
79
80     @Override
81     public RaftState state() {
82         return state;
83     }
84
85     public String logName() {
86         return logName;
87     }
88
89     @Override
90     public void setReplicatedToAllIndex(long replicatedToAllIndex) {
91         this.replicatedToAllIndex = replicatedToAllIndex;
92     }
93
94     @Override
95     public long getReplicatedToAllIndex() {
96         return replicatedToAllIndex;
97     }
98
99     /**
100      * Derived classes should not directly handle AppendEntries messages it
101      * should let the base class handle it first. Once the base class handles
102      * the AppendEntries message and does the common actions that are applicable
103      * in all RaftState's it will delegate the handling of the AppendEntries
104      * message to the derived class to do more state specific handling by calling
105      * this method
106      *
107      * @param sender         The actor that sent this message
108      * @param appendEntries  The AppendEntries message
109      * @return a new behavior if it was changed or the current behavior
110      */
111     protected abstract RaftActorBehavior handleAppendEntries(ActorRef sender,
112         AppendEntries appendEntries);
113
114
115     /**
116      * appendEntries first processes the AppendEntries message and then
117      * delegates handling to a specific behavior
118      *
119      * @param sender
120      * @param appendEntries
121      * @return a new behavior if it was changed or the current behavior
122      */
123     protected RaftActorBehavior appendEntries(ActorRef sender,
124         AppendEntries appendEntries) {
125
126         // 1. Reply false if term < currentTerm (§5.1)
127         if (appendEntries.getTerm() < currentTerm()) {
128             if(LOG.isDebugEnabled()) {
129                 LOG.debug("{}: Cannot append entries because sender term {} is less than {}",
130                         logName(), appendEntries.getTerm(), currentTerm());
131             }
132
133             sender.tell(
134                 new AppendEntriesReply(context.getId(), currentTerm(), false,
135                     lastIndex(), lastTerm(), context.getPayloadVersion()), actor()
136             );
137             return this;
138         }
139
140
141         return handleAppendEntries(sender, appendEntries);
142     }
143
144     /**
145      * Derived classes should not directly handle AppendEntriesReply messages it
146      * should let the base class handle it first. Once the base class handles
147      * the AppendEntriesReply message and does the common actions that are
148      * applicable in all RaftState's it will delegate the handling of the
149      * AppendEntriesReply message to the derived class to do more state specific
150      * handling by calling this method
151      *
152      * @param sender             The actor that sent this message
153      * @param appendEntriesReply The AppendEntriesReply message
154      * @return a new behavior if it was changed or the current behavior
155      */
156     protected abstract RaftActorBehavior handleAppendEntriesReply(ActorRef sender,
157         AppendEntriesReply appendEntriesReply);
158
159     /**
160      * requestVote handles the RequestVote message. This logic is common
161      * for all behaviors
162      *
163      * @param sender
164      * @param requestVote
165      * @return a new behavior if it was changed or the current behavior
166      */
167     protected RaftActorBehavior requestVote(ActorRef sender, RequestVote requestVote) {
168
169         LOG.debug("{}: In requestVote:  {}", logName(), requestVote);
170
171         boolean grantVote = canGrantVote(requestVote);
172
173         if(grantVote) {
174             context.getTermInformation().updateAndPersist(requestVote.getTerm(), requestVote.getCandidateId());
175         }
176
177         RequestVoteReply reply = new RequestVoteReply(currentTerm(), grantVote);
178
179         LOG.debug("{}: requestVote returning: {}", logName(), reply);
180
181         sender.tell(reply, actor());
182
183         return this;
184     }
185
186     protected boolean canGrantVote(RequestVote requestVote){
187         boolean grantVote = false;
188
189         //  Reply false if term < currentTerm (§5.1)
190         if (requestVote.getTerm() < currentTerm()) {
191             grantVote = false;
192
193             // If votedFor is null or candidateId, and candidate’s log is at
194             // least as up-to-date as receiver’s log, grant vote (§5.2, §5.4)
195         } else if (votedFor() == null || votedFor()
196                 .equals(requestVote.getCandidateId())) {
197
198             boolean candidateLatest = false;
199
200             // From §5.4.1
201             // Raft determines which of two logs is more up-to-date
202             // by comparing the index and term of the last entries in the
203             // logs. If the logs have last entries with different terms, then
204             // the log with the later term is more up-to-date. If the logs
205             // end with the same term, then whichever log is longer is
206             // more up-to-date.
207             if (requestVote.getLastLogTerm() > lastTerm()) {
208                 candidateLatest = true;
209             } else if ((requestVote.getLastLogTerm() == lastTerm())
210                     && requestVote.getLastLogIndex() >= lastIndex()) {
211                 candidateLatest = true;
212             }
213
214             if (candidateLatest) {
215                 grantVote = true;
216             }
217         }
218         return grantVote;
219     }
220
221     /**
222      * Derived classes should not directly handle RequestVoteReply messages it
223      * should let the base class handle it first. Once the base class handles
224      * the RequestVoteReply message and does the common actions that are
225      * applicable in all RaftState's it will delegate the handling of the
226      * RequestVoteReply message to the derived class to do more state specific
227      * handling by calling this method
228      *
229      * @param sender           The actor that sent this message
230      * @param requestVoteReply The RequestVoteReply message
231      * @return a new behavior if it was changed or the current behavior
232      */
233     protected abstract RaftActorBehavior handleRequestVoteReply(ActorRef sender,
234         RequestVoteReply requestVoteReply);
235
236     /**
237      *
238      * @return a random election duration
239      */
240     protected FiniteDuration electionDuration() {
241         long variance = new Random().nextInt(context.getConfigParams().getElectionTimeVariance());
242         return context.getConfigParams().getElectionTimeOutInterval().$plus(
243                 new FiniteDuration(variance, TimeUnit.MILLISECONDS));
244     }
245
246     /**
247      * stop the scheduled election
248      */
249     protected void stopElection() {
250         if (electionCancel != null && !electionCancel.isCancelled()) {
251             electionCancel.cancel();
252         }
253     }
254
255     /**
256      * schedule a new election
257      *
258      * @param interval the duration after which we should trigger a new election
259      */
260     protected void scheduleElection(FiniteDuration interval) {
261         stopElection();
262
263         // Schedule an election. When the scheduler triggers an ElectionTimeout
264         // message is sent to itself
265         electionCancel =
266             context.getActorSystem().scheduler().scheduleOnce(interval,
267                 context.getActor(), ELECTION_TIMEOUT,
268                 context.getActorSystem().dispatcher(), context.getActor());
269     }
270
271     /**
272      * @return the current term
273      */
274     protected long currentTerm() {
275         return context.getTermInformation().getCurrentTerm();
276     }
277
278     /**
279      * @return the candidate for whom we voted in the current term
280      */
281     protected String votedFor() {
282         return context.getTermInformation().getVotedFor();
283     }
284
285     /**
286      * @return the actor associated with this behavior
287      */
288     protected ActorRef actor() {
289         return context.getActor();
290     }
291
292     /**
293      *
294      * @return the term from the last entry in the log
295      */
296     protected long lastTerm() {
297         return context.getReplicatedLog().lastTerm();
298     }
299
300     /**
301      * @return the index from the last entry in the log
302      */
303     protected long lastIndex() {
304         return context.getReplicatedLog().lastIndex();
305     }
306
307     /**
308      * @param logIndex
309      * @return the client request tracker for the specified logIndex
310      */
311     protected ClientRequestTracker findClientRequestTracker(long logIndex) {
312         return null;
313     }
314
315     /**
316      * @param logIndex
317      * @return the client request tracker for the specified logIndex
318      */
319     protected ClientRequestTracker removeClientRequestTracker(long logIndex) {
320         return null;
321     }
322
323
324     /**
325      *
326      * @return log index from the previous to last entry in the log
327      */
328     protected long prevLogIndex(long index){
329         ReplicatedLogEntry prevEntry =
330             context.getReplicatedLog().get(index - 1);
331         if (prevEntry != null) {
332             return prevEntry.getIndex();
333         }
334         return -1;
335     }
336
337     /**
338      * @return log term from the previous to last entry in the log
339      */
340     protected long prevLogTerm(long index){
341         ReplicatedLogEntry prevEntry =
342             context.getReplicatedLog().get(index - 1);
343         if (prevEntry != null) {
344             return prevEntry.getTerm();
345         }
346         return -1;
347     }
348
349     /**
350      * Apply the provided index to the state machine
351      *
352      * @param index a log index that is known to be committed
353      */
354     protected void applyLogToStateMachine(final long index) {
355         long newLastApplied = context.getLastApplied();
356         // Now maybe we apply to the state machine
357         for (long i = context.getLastApplied() + 1;
358              i < index + 1; i++) {
359             ActorRef clientActor = null;
360             String identifier = null;
361             ClientRequestTracker tracker = removeClientRequestTracker(i);
362
363             if (tracker != null) {
364                 clientActor = tracker.getClientActor();
365                 identifier = tracker.getIdentifier();
366             }
367             ReplicatedLogEntry replicatedLogEntry =
368                 context.getReplicatedLog().get(i);
369
370             if (replicatedLogEntry != null) {
371                 // Send a local message to the local RaftActor (it's derived class to be
372                 // specific to apply the log to it's index)
373                 actor().tell(new ApplyState(clientActor, identifier,
374                     replicatedLogEntry), actor());
375                 newLastApplied = i;
376             } else {
377                 //if one index is not present in the log, no point in looping
378                 // around as the rest wont be present either
379                 LOG.warn(
380                         "{}: Missing index {} from log. Cannot apply state. Ignoring {} to {}",
381                         logName(), i, i, index);
382                 break;
383             }
384         }
385         if(LOG.isDebugEnabled()) {
386             LOG.debug("{}: Setting last applied to {}", logName(), newLastApplied);
387         }
388         context.setLastApplied(newLastApplied);
389
390         // send a message to persist a ApplyLogEntries marker message into akka's persistent journal
391         // will be used during recovery
392         //in case if the above code throws an error and this message is not sent, it would be fine
393         // as the  append entries received later would initiate add this message to the journal
394         actor().tell(new ApplyJournalEntries(context.getLastApplied()), actor());
395     }
396
397     protected Object fromSerializableMessage(Object serializable){
398         return SerializationUtils.fromSerializable(serializable);
399     }
400
401     @Override
402     public RaftActorBehavior handleMessage(ActorRef sender, Object message) {
403         if (message instanceof AppendEntries) {
404             return appendEntries(sender, (AppendEntries) message);
405         } else if (message instanceof AppendEntriesReply) {
406             return handleAppendEntriesReply(sender, (AppendEntriesReply) message);
407         } else if (message instanceof RequestVote) {
408             return requestVote(sender, (RequestVote) message);
409         } else if (message instanceof RequestVoteReply) {
410             return handleRequestVoteReply(sender, (RequestVoteReply) message);
411         }
412         return this;
413     }
414
415     @Override public String getLeaderId() {
416         return leaderId;
417     }
418
419     @Override
420     public short getLeaderPayloadVersion() {
421         return leaderPayloadVersion;
422     }
423
424     public void setLeaderPayloadVersion(short leaderPayloadVersion) {
425         this.leaderPayloadVersion = leaderPayloadVersion;
426     }
427
428     @Override
429     public RaftActorBehavior switchBehavior(RaftActorBehavior behavior) {
430         return internalSwitchBehavior(behavior);
431     }
432
433     protected RaftActorBehavior internalSwitchBehavior(RaftState newState) {
434         if(context.getRaftPolicy().automaticElectionsEnabled()){
435             return internalSwitchBehavior(newState.createBehavior(context));
436         }
437         return this;
438     }
439
440     private RaftActorBehavior internalSwitchBehavior(RaftActorBehavior newBehavior) {
441         LOG.info("{} :- Switching from behavior {} to {}", logName(), this.state(), newBehavior.state());
442         try {
443             close();
444         } catch (Exception e) {
445             LOG.error("{}: Failed to close behavior : {}", logName(), this.state(), e);
446         }
447         return newBehavior;
448     }
449
450
451     protected int getMajorityVoteCount(int numPeers) {
452         // Votes are required from a majority of the peers including self.
453         // The numMajority field therefore stores a calculated value
454         // of the number of votes required for this candidate to win an
455         // election based on it's known peers.
456         // If a peer was added during normal operation and raft replicas
457         // came to know about them then the new peer would also need to be
458         // taken into consideration when calculating this value.
459         // Here are some examples for what the numMajority would be for n
460         // peers
461         // 0 peers = 1 numMajority -: (0 + 1) / 2 + 1 = 1
462         // 2 peers = 2 numMajority -: (2 + 1) / 2 + 1 = 2
463         // 4 peers = 3 numMajority -: (4 + 1) / 2 + 1 = 3
464
465         int numMajority = 0;
466         if (numPeers > 0) {
467             int self = 1;
468             numMajority = (numPeers + self) / 2 + 1;
469         }
470         return numMajority;
471
472     }
473
474
475     /**
476      * Performs a snapshot with no capture on the replicated log.
477      * It clears the log from the supplied index or last-applied-1 which ever is minimum.
478      *
479      * @param snapshotCapturedIndex
480      */
481     protected void performSnapshotWithoutCapture(final long snapshotCapturedIndex) {
482         long actualIndex = context.getSnapshotManager().trimLog(snapshotCapturedIndex, this);
483
484         if(actualIndex != -1){
485             setReplicatedToAllIndex(actualIndex);
486         }
487     }
488
489     protected String getId(){
490         return context.getId();
491     }
492
493 }