Bug 7391: Fix out-of-order LeaderStateChange events
[controller.git] / opendaylight / md-sal / sal-akka-raft / src / main / java / org / opendaylight / controller / cluster / raft / RaftActor.java
1 /*
2  * Copyright (c) 2014 Cisco Systems, Inc. and others.  All rights reserved.
3  * Copyright (c) 2015 Brocade Communications Systems, Inc. and others.  All rights reserved.
4  *
5  * This program and the accompanying materials are made available under the
6  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
7  * and is available at http://www.eclipse.org/legal/epl-v10.html
8  */
9
10 package org.opendaylight.controller.cluster.raft;
11
12 import akka.actor.ActorRef;
13 import akka.actor.ActorSelection;
14 import akka.actor.PoisonPill;
15 import com.google.common.annotations.VisibleForTesting;
16 import com.google.common.base.Optional;
17 import com.google.common.base.Preconditions;
18 import com.google.common.base.Verify;
19 import com.google.common.collect.Lists;
20 import java.util.Collection;
21 import java.util.HashMap;
22 import java.util.List;
23 import java.util.Map;
24 import java.util.Objects;
25 import java.util.concurrent.TimeUnit;
26 import javax.annotation.Nonnull;
27 import javax.annotation.Nullable;
28 import org.apache.commons.lang3.time.DurationFormatUtils;
29 import org.opendaylight.controller.cluster.DataPersistenceProvider;
30 import org.opendaylight.controller.cluster.DelegatingPersistentDataProvider;
31 import org.opendaylight.controller.cluster.NonPersistentDataProvider;
32 import org.opendaylight.controller.cluster.PersistentDataProvider;
33 import org.opendaylight.controller.cluster.common.actor.AbstractUntypedPersistentActor;
34 import org.opendaylight.controller.cluster.notifications.LeaderStateChanged;
35 import org.opendaylight.controller.cluster.notifications.RoleChanged;
36 import org.opendaylight.controller.cluster.raft.base.messages.ApplyState;
37 import org.opendaylight.controller.cluster.raft.base.messages.CheckConsensusReached;
38 import org.opendaylight.controller.cluster.raft.base.messages.InitiateCaptureSnapshot;
39 import org.opendaylight.controller.cluster.raft.base.messages.LeaderTransitioning;
40 import org.opendaylight.controller.cluster.raft.base.messages.Replicate;
41 import org.opendaylight.controller.cluster.raft.base.messages.SwitchBehavior;
42 import org.opendaylight.controller.cluster.raft.behaviors.AbstractLeader;
43 import org.opendaylight.controller.cluster.raft.behaviors.AbstractRaftActorBehavior;
44 import org.opendaylight.controller.cluster.raft.behaviors.Follower;
45 import org.opendaylight.controller.cluster.raft.behaviors.RaftActorBehavior;
46 import org.opendaylight.controller.cluster.raft.client.messages.FindLeader;
47 import org.opendaylight.controller.cluster.raft.client.messages.FindLeaderReply;
48 import org.opendaylight.controller.cluster.raft.client.messages.FollowerInfo;
49 import org.opendaylight.controller.cluster.raft.client.messages.GetOnDemandRaftState;
50 import org.opendaylight.controller.cluster.raft.client.messages.OnDemandRaftState;
51 import org.opendaylight.controller.cluster.raft.client.messages.Shutdown;
52 import org.opendaylight.controller.cluster.raft.persisted.ApplyJournalEntries;
53 import org.opendaylight.controller.cluster.raft.persisted.NoopPayload;
54 import org.opendaylight.controller.cluster.raft.persisted.SimpleReplicatedLogEntry;
55 import org.opendaylight.controller.cluster.raft.protobuff.client.messages.Payload;
56 import org.opendaylight.yangtools.concepts.Identifier;
57 import org.opendaylight.yangtools.concepts.Immutable;
58
59 /**
60  * RaftActor encapsulates a state machine that needs to be kept synchronized
61  * in a cluster. It implements the RAFT algorithm as described in the paper
62  * <a href='https://ramcloud.stanford.edu/wiki/download/attachments/11370504/raft.pdf'>
63  * In Search of an Understandable Consensus Algorithm</a>
64  *
65  * <p>
66  * RaftActor has 3 states and each state has a certain behavior associated
67  * with it. A Raft actor can behave as,
68  * <ul>
69  * <li> A Leader </li>
70  * <li> A Follower (or) </li>
71  * <li> A Candidate </li>
72  * </ul>
73  *
74  * <p>
75  * A RaftActor MUST be a Leader in order to accept requests from clients to
76  * change the state of it's encapsulated state machine. Once a RaftActor becomes
77  * a Leader it is also responsible for ensuring that all followers ultimately
78  * have the same log and therefore the same state machine as itself.
79  *
80  * <p>
81  * The current behavior of a RaftActor determines how election for leadership
82  * is initiated and how peer RaftActors react to request for votes.
83  *
84  * <p>
85  * Each RaftActor also needs to know the current election term. It uses this
86  * information for a couple of things. One is to simply figure out who it
87  * voted for in the last election. Another is to figure out if the message
88  * it received to update it's state is stale.
89  *
90  * <p>
91  * The RaftActor uses akka-persistence to store it's replicated log.
92  * Furthermore through it's behaviors a Raft Actor determines
93  * <ul>
94  * <li> when a log entry should be persisted </li>
95  * <li> when a log entry should be applied to the state machine (and) </li>
96  * <li> when a snapshot should be saved </li>
97  * </ul>
98  */
99 public abstract class RaftActor extends AbstractUntypedPersistentActor {
100
101     private static final long APPLY_STATE_DELAY_THRESHOLD_IN_NANOS = TimeUnit.MILLISECONDS.toNanos(50L); // 50 millis
102
103     /**
104      * This context should NOT be passed directly to any other actor it is
105      * only to be consumed by the RaftActorBehaviors.
106      */
107     private final RaftActorContextImpl context;
108
109     private final DelegatingPersistentDataProvider delegatingPersistenceProvider;
110
111     private final PersistentDataProvider persistentProvider;
112
113     private final BehaviorStateTracker behaviorStateTracker = new BehaviorStateTracker();
114
115     private RaftActorRecoverySupport raftRecovery;
116
117     private RaftActorSnapshotMessageSupport snapshotSupport;
118
119     private RaftActorServerConfigurationSupport serverConfigurationSupport;
120
121     private RaftActorLeadershipTransferCohort leadershipTransferInProgress;
122
123     private boolean shuttingDown;
124
125     protected RaftActor(String id, Map<String, String> peerAddresses,
126          Optional<ConfigParams> configParams, short payloadVersion) {
127
128         persistentProvider = new PersistentDataProvider(this);
129         delegatingPersistenceProvider = new RaftActorDelegatingPersistentDataProvider(null, persistentProvider);
130
131         context = new RaftActorContextImpl(this.getSelf(),
132             this.getContext(), id, new ElectionTermImpl(persistentProvider, id, LOG),
133             -1, -1, peerAddresses,
134             configParams.isPresent() ? configParams.get() : new DefaultConfigParamsImpl(),
135             delegatingPersistenceProvider, LOG);
136
137         context.setPayloadVersion(payloadVersion);
138         context.setReplicatedLog(ReplicatedLogImpl.newInstance(context));
139     }
140
141     @Override
142     public void preStart() throws Exception {
143         LOG.info("Starting recovery for {} with journal batch size {}", persistenceId(),
144                 context.getConfigParams().getJournalRecoveryLogBatchSize());
145
146         super.preStart();
147
148         snapshotSupport = newRaftActorSnapshotMessageSupport();
149         serverConfigurationSupport = new RaftActorServerConfigurationSupport(this);
150     }
151
152     @Override
153     public void postStop() {
154         context.close();
155         super.postStop();
156     }
157
158     @Override
159     protected void handleRecover(Object message) {
160         if (raftRecovery == null) {
161             raftRecovery = newRaftActorRecoverySupport();
162         }
163
164         boolean recoveryComplete = raftRecovery.handleRecoveryMessage(message, persistentProvider);
165         if (recoveryComplete) {
166             onRecoveryComplete();
167
168             initializeBehavior();
169
170             raftRecovery = null;
171         }
172     }
173
174     protected RaftActorRecoverySupport newRaftActorRecoverySupport() {
175         return new RaftActorRecoverySupport(context, getRaftActorRecoveryCohort());
176     }
177
178     @VisibleForTesting
179     void initializeBehavior() {
180         changeCurrentBehavior(new Follower(context));
181     }
182
183     @VisibleForTesting
184     @SuppressWarnings("checkstyle:IllegalCatch")
185     protected void changeCurrentBehavior(RaftActorBehavior newBehavior) {
186         final RaftActorBehavior currentBehavior = getCurrentBehavior();
187         if (currentBehavior != null) {
188             try {
189                 currentBehavior.close();
190             } catch (Exception e) {
191                 LOG.warn("{}: Error closing behavior {}", persistence(), currentBehavior, e);
192             }
193         }
194
195         final BehaviorState state = behaviorStateTracker.capture(currentBehavior);
196         setCurrentBehavior(newBehavior);
197         handleBehaviorChange(state, newBehavior);
198     }
199
200     /**
201      * Method exposed for subclasses to plug-in their logic. This method is invoked by {@link #handleCommand(Object)}
202      * for messages which are not handled by this class. Subclasses overriding this class should fall back to this
203      * implementation for messages which they do not handle
204      *
205      * @param message Incoming command message
206      */
207     protected void handleNonRaftCommand(final Object message) {
208         unhandled(message);
209     }
210
211     /**
212      * Handles a message.
213      *
214      * @deprecated This method is not final for testing purposes. DO NOT OVERRIDE IT, override
215      * {@link #handleNonRaftCommand(Object)} instead.
216      */
217     @Deprecated
218     @Override
219     // FIXME: make this method final once our unit tests do not need to override it
220     protected void handleCommand(final Object message) {
221         if (serverConfigurationSupport.handleMessage(message, getSender())) {
222             return;
223         }
224         if (snapshotSupport.handleSnapshotMessage(message, getSender())) {
225             return;
226         }
227
228         if (message instanceof ApplyState) {
229             ApplyState applyState = (ApplyState) message;
230
231             long startTime = System.nanoTime();
232
233             if (LOG.isDebugEnabled()) {
234                 LOG.debug("{}: Applying state for log index {} data {}",
235                     persistenceId(), applyState.getReplicatedLogEntry().getIndex(),
236                     applyState.getReplicatedLogEntry().getData());
237             }
238
239             if (!(applyState.getReplicatedLogEntry().getData() instanceof NoopPayload)) {
240                 applyState(applyState.getClientActor(), applyState.getIdentifier(),
241                     applyState.getReplicatedLogEntry().getData());
242             }
243
244             long elapsedTime = System.nanoTime() - startTime;
245             if (elapsedTime >= APPLY_STATE_DELAY_THRESHOLD_IN_NANOS) {
246                 LOG.debug("ApplyState took more time than expected. Elapsed Time = {} ms ApplyState = {}",
247                         TimeUnit.NANOSECONDS.toMillis(elapsedTime), applyState);
248             }
249
250             if (!hasFollowers()) {
251                 // for single node, the capture should happen after the apply state
252                 // as we delete messages from the persistent journal which have made it to the snapshot
253                 // capturing the snapshot before applying makes the persistent journal and snapshot out of sync
254                 // and recovery shows data missing
255                 context.getReplicatedLog().captureSnapshotIfReady(applyState.getReplicatedLogEntry());
256
257                 context.getSnapshotManager().trimLog(context.getLastApplied());
258             }
259
260             // Send it to the current behavior - some behaviors like PreLeader need to be notified of ApplyState.
261             possiblyHandleBehaviorMessage(message);
262
263         } else if (message instanceof ApplyJournalEntries) {
264             ApplyJournalEntries applyEntries = (ApplyJournalEntries) message;
265             LOG.debug("{}: Persisting ApplyJournalEntries with index={}", persistenceId(), applyEntries.getToIndex());
266
267             persistence().persistAsync(applyEntries, NoopProcedure.instance());
268
269         } else if (message instanceof FindLeader) {
270             getSender().tell(
271                 new FindLeaderReply(getLeaderAddress()),
272                 getSelf()
273             );
274         } else if (message instanceof GetOnDemandRaftState) {
275             onGetOnDemandRaftStats();
276         } else if (message instanceof InitiateCaptureSnapshot) {
277             captureSnapshot();
278         } else if (message instanceof SwitchBehavior) {
279             switchBehavior((SwitchBehavior) message);
280         } else if (message instanceof LeaderTransitioning) {
281             onLeaderTransitioning((LeaderTransitioning)message);
282         } else if (message instanceof Shutdown) {
283             onShutDown();
284         } else if (message instanceof Runnable) {
285             ((Runnable)message).run();
286         } else if (message instanceof NoopPayload) {
287             persistData(null, null, (NoopPayload)message, false);
288         } else if (!possiblyHandleBehaviorMessage(message)) {
289             handleNonRaftCommand(message);
290         }
291     }
292
293     private boolean possiblyHandleBehaviorMessage(final Object message) {
294         final RaftActorBehavior currentBehavior = getCurrentBehavior();
295         final BehaviorState state = behaviorStateTracker.capture(currentBehavior);
296
297         // A behavior indicates that it processed the change by returning a reference to the next behavior
298         // to be used. A null return indicates it has not processed the message and we should be passing it to
299         // the subclass for handling.
300         final RaftActorBehavior nextBehavior = currentBehavior.handleMessage(getSender(), message);
301         if (nextBehavior != null) {
302             switchBehavior(state, nextBehavior);
303             return true;
304         }
305
306         return false;
307     }
308
309     private void initiateLeadershipTransfer(final RaftActorLeadershipTransferCohort.OnComplete onComplete) {
310         LOG.debug("{}: Initiating leader transfer", persistenceId());
311
312         if (leadershipTransferInProgress == null) {
313             leadershipTransferInProgress = new RaftActorLeadershipTransferCohort(this);
314             leadershipTransferInProgress.addOnComplete(new RaftActorLeadershipTransferCohort.OnComplete() {
315                 @Override
316                 public void onSuccess(ActorRef raftActorRef) {
317                     leadershipTransferInProgress = null;
318                 }
319
320                 @Override
321                 public void onFailure(ActorRef raftActorRef) {
322                     leadershipTransferInProgress = null;
323                 }
324             });
325
326             leadershipTransferInProgress.addOnComplete(onComplete);
327             leadershipTransferInProgress.init();
328         } else {
329             LOG.debug("{}: prior leader transfer in progress - adding callback", persistenceId());
330             leadershipTransferInProgress.addOnComplete(onComplete);
331         }
332     }
333
334     private void onShutDown() {
335         LOG.debug("{}: onShutDown", persistenceId());
336
337         if (shuttingDown) {
338             return;
339         }
340
341         shuttingDown = true;
342
343         final RaftActorBehavior currentBehavior = context.getCurrentBehavior();
344         if (currentBehavior.state() != RaftState.Leader) {
345             // For non-leaders shutdown is a no-op
346             self().tell(PoisonPill.getInstance(), self());
347             return;
348         }
349
350         if (context.hasFollowers()) {
351             initiateLeadershipTransfer(new RaftActorLeadershipTransferCohort.OnComplete() {
352                 @Override
353                 public void onSuccess(ActorRef raftActorRef) {
354                     LOG.debug("{}: leader transfer succeeded - sending PoisonPill", persistenceId());
355                     raftActorRef.tell(PoisonPill.getInstance(), raftActorRef);
356                 }
357
358                 @Override
359                 public void onFailure(ActorRef raftActorRef) {
360                     LOG.debug("{}: leader transfer failed - sending PoisonPill", persistenceId());
361                     raftActorRef.tell(PoisonPill.getInstance(), raftActorRef);
362                 }
363             });
364         } else {
365             pauseLeader(new TimedRunnable(context.getConfigParams().getElectionTimeOutInterval(), this) {
366                 @Override
367                 protected void doRun() {
368                     self().tell(PoisonPill.getInstance(), self());
369                 }
370
371                 @Override
372                 protected void doCancel() {
373                     self().tell(PoisonPill.getInstance(), self());
374                 }
375             });
376         }
377     }
378
379     private void onLeaderTransitioning(final LeaderTransitioning leaderTransitioning) {
380         LOG.debug("{}: onLeaderTransitioning: {}", persistenceId(), leaderTransitioning);
381         Optional<ActorRef> roleChangeNotifier = getRoleChangeNotifier();
382         if (getRaftState() == RaftState.Follower && roleChangeNotifier.isPresent()
383                 && leaderTransitioning.getLeaderId().equals(getCurrentBehavior().getLeaderId())) {
384             roleChangeNotifier.get().tell(newLeaderStateChanged(getId(), null,
385                 getCurrentBehavior().getLeaderPayloadVersion()), getSelf());
386         }
387     }
388
389     private void switchBehavior(SwitchBehavior message) {
390         if (!getRaftActorContext().getRaftPolicy().automaticElectionsEnabled()) {
391             RaftState newState = message.getNewState();
392             if ( newState == RaftState.Leader || newState == RaftState.Follower) {
393                 switchBehavior(behaviorStateTracker.capture(getCurrentBehavior()),
394                     AbstractRaftActorBehavior.createBehavior(context, message.getNewState()));
395                 getRaftActorContext().getTermInformation().updateAndPersist(message.getNewTerm(), "");
396             } else {
397                 LOG.warn("Switching to behavior : {} - not supported", newState);
398             }
399         }
400     }
401
402     private void switchBehavior(final BehaviorState oldBehaviorState, final RaftActorBehavior nextBehavior) {
403         setCurrentBehavior(nextBehavior);
404         handleBehaviorChange(oldBehaviorState, nextBehavior);
405     }
406
407     @VisibleForTesting
408     RaftActorSnapshotMessageSupport newRaftActorSnapshotMessageSupport() {
409         return new RaftActorSnapshotMessageSupport(context, getRaftActorSnapshotCohort());
410     }
411
412     private void onGetOnDemandRaftStats() {
413         // Debugging message to retrieve raft stats.
414
415         Map<String, String> peerAddresses = new HashMap<>();
416         Map<String, Boolean> peerVotingStates = new HashMap<>();
417         for (PeerInfo info: context.getPeers()) {
418             peerVotingStates.put(info.getId(), info.isVoting());
419             peerAddresses.put(info.getId(), info.getAddress() != null ? info.getAddress() : "");
420         }
421
422         final RaftActorBehavior currentBehavior = context.getCurrentBehavior();
423         OnDemandRaftState.Builder builder = OnDemandRaftState.builder()
424                 .commitIndex(context.getCommitIndex())
425                 .currentTerm(context.getTermInformation().getCurrentTerm())
426                 .inMemoryJournalDataSize(replicatedLog().dataSize())
427                 .inMemoryJournalLogSize(replicatedLog().size())
428                 .isSnapshotCaptureInitiated(context.getSnapshotManager().isCapturing())
429                 .lastApplied(context.getLastApplied())
430                 .lastIndex(replicatedLog().lastIndex())
431                 .lastTerm(replicatedLog().lastTerm())
432                 .leader(getLeaderId())
433                 .raftState(currentBehavior.state().toString())
434                 .replicatedToAllIndex(currentBehavior.getReplicatedToAllIndex())
435                 .snapshotIndex(replicatedLog().getSnapshotIndex())
436                 .snapshotTerm(replicatedLog().getSnapshotTerm())
437                 .votedFor(context.getTermInformation().getVotedFor())
438                 .isVoting(context.isVotingMember())
439                 .peerAddresses(peerAddresses)
440                 .peerVotingStates(peerVotingStates)
441                 .customRaftPolicyClassName(context.getConfigParams().getCustomRaftPolicyImplementationClass());
442
443         ReplicatedLogEntry lastLogEntry = replicatedLog().last();
444         if (lastLogEntry != null) {
445             builder.lastLogIndex(lastLogEntry.getIndex());
446             builder.lastLogTerm(lastLogEntry.getTerm());
447         }
448
449         if (getCurrentBehavior() instanceof AbstractLeader) {
450             AbstractLeader leader = (AbstractLeader)getCurrentBehavior();
451             Collection<String> followerIds = leader.getFollowerIds();
452             List<FollowerInfo> followerInfoList = Lists.newArrayListWithCapacity(followerIds.size());
453             for (String id: followerIds) {
454                 final FollowerLogInformation info = leader.getFollower(id);
455                 followerInfoList.add(new FollowerInfo(id, info.getNextIndex(), info.getMatchIndex(),
456                         info.isFollowerActive(), DurationFormatUtils.formatDurationHMS(info.timeSinceLastActivity()),
457                         context.getPeerInfo(info.getId()).isVoting()));
458             }
459
460             builder.followerInfoList(followerInfoList);
461         }
462
463         sender().tell(builder.build(), self());
464
465     }
466
467     private void handleBehaviorChange(BehaviorState oldBehaviorState, RaftActorBehavior currentBehavior) {
468         RaftActorBehavior oldBehavior = oldBehaviorState.getBehavior();
469
470         if (oldBehavior != currentBehavior) {
471             onStateChanged();
472         }
473
474         String lastLeaderId = oldBehavior == null ? null : oldBehaviorState.getLastLeaderId();
475         String lastValidLeaderId = oldBehavior == null ? null : oldBehaviorState.getLastValidLeaderId();
476         String oldBehaviorStateName = oldBehavior == null ? null : oldBehavior.state().name();
477
478         // it can happen that the state has not changed but the leader has changed.
479         Optional<ActorRef> roleChangeNotifier = getRoleChangeNotifier();
480         if (!Objects.equals(lastLeaderId, currentBehavior.getLeaderId())
481                 || oldBehaviorState.getLeaderPayloadVersion() != currentBehavior.getLeaderPayloadVersion()) {
482             if (roleChangeNotifier.isPresent()) {
483                 roleChangeNotifier.get().tell(newLeaderStateChanged(getId(), currentBehavior.getLeaderId(),
484                         currentBehavior.getLeaderPayloadVersion()), getSelf());
485             }
486
487             onLeaderChanged(lastValidLeaderId, currentBehavior.getLeaderId());
488
489             if (leadershipTransferInProgress != null) {
490                 leadershipTransferInProgress.onNewLeader(currentBehavior.getLeaderId());
491             }
492
493             serverConfigurationSupport.onNewLeader(currentBehavior.getLeaderId());
494         }
495
496         if (roleChangeNotifier.isPresent()
497                 && (oldBehavior == null || oldBehavior.state() != currentBehavior.state())) {
498             roleChangeNotifier.get().tell(new RoleChanged(getId(), oldBehaviorStateName ,
499                     currentBehavior.state().name()), getSelf());
500         }
501     }
502
503     protected LeaderStateChanged newLeaderStateChanged(String memberId, String leaderId, short leaderPayloadVersion) {
504         return new LeaderStateChanged(memberId, leaderId, leaderPayloadVersion);
505     }
506
507     @Override
508     public long snapshotSequenceNr() {
509         // When we do a snapshot capture, we also capture and save the sequence-number of the persistent journal,
510         // so that we can delete the persistent journal based on the saved sequence-number
511         // However , when akka replays the journal during recovery, it replays it from the sequence number when the
512         // snapshot was saved and not the number we saved. We would want to override it , by asking akka to use the
513         // last-sequence number known to us.
514         return context.getSnapshotManager().getLastSequenceNumber();
515     }
516
517     /**
518      * Persists the given Payload in the journal and replicates to any followers. After successful completion,
519      * {@link #applyState(ActorRef, Identifier, Object)} is notified.
520      *
521      * @param clientActor optional ActorRef that is provided via the applyState callback
522      * @param identifier the payload identifier
523      * @param data the payload data to persist
524      * @param batchHint if true, an attempt is made to delay immediate replication and batch the payload with
525      *        subsequent payloads for efficiency. Otherwise the payload is immediately replicated.
526      */
527     protected final void persistData(final ActorRef clientActor, final Identifier identifier, final Payload data,
528             final boolean batchHint) {
529         ReplicatedLogEntry replicatedLogEntry = new SimpleReplicatedLogEntry(
530             context.getReplicatedLog().lastIndex() + 1,
531             context.getTermInformation().getCurrentTerm(), data);
532         replicatedLogEntry.setPersistencePending(true);
533
534         LOG.debug("{}: Persist data {}", persistenceId(), replicatedLogEntry);
535
536         final RaftActorContext raftContext = getRaftActorContext();
537
538         boolean wasAppended = replicatedLog().appendAndPersist(replicatedLogEntry, persistedLogEntry -> {
539             // Clear the persistence pending flag in the log entry.
540             persistedLogEntry.setPersistencePending(false);
541
542             if (!hasFollowers()) {
543                 // Increment the Commit Index and the Last Applied values
544                 raftContext.setCommitIndex(persistedLogEntry.getIndex());
545                 raftContext.setLastApplied(persistedLogEntry.getIndex());
546
547                 // Apply the state immediately.
548                 self().tell(new ApplyState(clientActor, identifier, persistedLogEntry), self());
549
550                 // Send a ApplyJournalEntries message so that we write the fact that we applied
551                 // the state to durable storage
552                 self().tell(new ApplyJournalEntries(persistedLogEntry.getIndex()), self());
553
554             } else {
555                 context.getReplicatedLog().captureSnapshotIfReady(replicatedLogEntry);
556
557                 // Local persistence is complete so send the CheckConsensusReached message to the behavior (which
558                 // normally should still be the leader) to check if consensus has now been reached in conjunction with
559                 // follower replication.
560                 getCurrentBehavior().handleMessage(getSelf(), CheckConsensusReached.INSTANCE);
561             }
562         }, true);
563
564         if (wasAppended && hasFollowers()) {
565             // Send log entry for replication.
566             getCurrentBehavior().handleMessage(getSelf(), new Replicate(clientActor, identifier, replicatedLogEntry,
567                     !batchHint));
568         }
569     }
570
571     private ReplicatedLog replicatedLog() {
572         return context.getReplicatedLog();
573     }
574
575     protected String getId() {
576         return context.getId();
577     }
578
579     @VisibleForTesting
580     void setCurrentBehavior(RaftActorBehavior behavior) {
581         context.setCurrentBehavior(behavior);
582     }
583
584     protected RaftActorBehavior getCurrentBehavior() {
585         return context.getCurrentBehavior();
586     }
587
588     /**
589      * Derived actors can call the isLeader method to check if the current
590      * RaftActor is the Leader or not.
591      *
592      * @return true it this RaftActor is a Leader false otherwise
593      */
594     protected boolean isLeader() {
595         return context.getId().equals(getCurrentBehavior().getLeaderId());
596     }
597
598     protected final boolean isLeaderActive() {
599         return getRaftState() != RaftState.IsolatedLeader && getRaftState() != RaftState.PreLeader
600                 && !shuttingDown && !isLeadershipTransferInProgress();
601     }
602
603     private boolean isLeadershipTransferInProgress() {
604         return leadershipTransferInProgress != null && leadershipTransferInProgress.isTransferring();
605     }
606
607     /**
608      * Derived actor can call getLeader if they need a reference to the Leader.
609      * This would be useful for example in forwarding a request to an actor
610      * which is the leader
611      *
612      * @return A reference to the leader if known, null otherwise
613      */
614     public ActorSelection getLeader() {
615         String leaderAddress = getLeaderAddress();
616
617         if (leaderAddress == null) {
618             return null;
619         }
620
621         return context.actorSelection(leaderAddress);
622     }
623
624     /**
625      * Returns the id of the current leader.
626      *
627      * @return the current leader's id
628      */
629     protected final String getLeaderId() {
630         return getCurrentBehavior().getLeaderId();
631     }
632
633     @VisibleForTesting
634     protected final RaftState getRaftState() {
635         return getCurrentBehavior().state();
636     }
637
638     protected Long getCurrentTerm() {
639         return context.getTermInformation().getCurrentTerm();
640     }
641
642     protected RaftActorContext getRaftActorContext() {
643         return context;
644     }
645
646     protected void updateConfigParams(ConfigParams configParams) {
647
648         // obtain the RaftPolicy for oldConfigParams and the updated one.
649         String oldRaftPolicy = context.getConfigParams().getCustomRaftPolicyImplementationClass();
650         String newRaftPolicy = configParams.getCustomRaftPolicyImplementationClass();
651
652         LOG.debug("{}: RaftPolicy used with prev.config {}, RaftPolicy used with newConfig {}", persistenceId(),
653             oldRaftPolicy, newRaftPolicy);
654         context.setConfigParams(configParams);
655         if (!Objects.equals(oldRaftPolicy, newRaftPolicy)) {
656             // The RaftPolicy was modified. If the current behavior is Follower then re-initialize to Follower
657             // but transfer the previous leaderId so it doesn't immediately try to schedule an election. This
658             // avoids potential disruption. Otherwise, switch to Follower normally.
659             RaftActorBehavior behavior = getCurrentBehavior();
660             if (behavior != null && behavior.state() == RaftState.Follower) {
661                 String previousLeaderId = behavior.getLeaderId();
662                 short previousLeaderPayloadVersion = behavior.getLeaderPayloadVersion();
663
664                 LOG.debug("{}: Re-initializing to Follower with previous leaderId {}", persistenceId(),
665                         previousLeaderId);
666
667                 changeCurrentBehavior(new Follower(context, previousLeaderId, previousLeaderPayloadVersion));
668             } else {
669                 initializeBehavior();
670             }
671         }
672     }
673
674     public final DataPersistenceProvider persistence() {
675         return delegatingPersistenceProvider.getDelegate();
676     }
677
678     public void setPersistence(DataPersistenceProvider provider) {
679         delegatingPersistenceProvider.setDelegate(provider);
680     }
681
682     protected void setPersistence(boolean persistent) {
683         DataPersistenceProvider currentPersistence = persistence();
684         if (persistent && (currentPersistence == null || !currentPersistence.isRecoveryApplicable())) {
685             setPersistence(new PersistentDataProvider(this));
686
687             if (getCurrentBehavior() != null) {
688                 LOG.info("{}: Persistence has been enabled - capturing snapshot", persistenceId());
689                 captureSnapshot();
690             }
691         } else if (!persistent && (currentPersistence == null || currentPersistence.isRecoveryApplicable())) {
692             setPersistence(new NonPersistentDataProvider() {
693                 /**
694                  * The way snapshotting works is,
695                  * <ol>
696                  * <li> RaftActor calls createSnapshot on the Shard
697                  * <li> Shard sends a CaptureSnapshotReply and RaftActor then calls saveSnapshot
698                  * <li> When saveSnapshot is invoked on the akka-persistence API it uses the SnapshotStore to save
699                  * the snapshot. The SnapshotStore sends SaveSnapshotSuccess or SaveSnapshotFailure. When the
700                  * RaftActor gets SaveSnapshot success it commits the snapshot to the in-memory journal. This
701                  * commitSnapshot is mimicking what is done in SaveSnapshotSuccess.
702                  * </ol>
703                  */
704                 @Override
705                 public void saveSnapshot(Object object) {
706                     // Make saving Snapshot successful
707                     // Committing the snapshot here would end up calling commit in the creating state which would
708                     // be a state violation. That's why now we send a message to commit the snapshot.
709                     self().tell(RaftActorSnapshotMessageSupport.COMMIT_SNAPSHOT, self());
710                 }
711             });
712         }
713     }
714
715     /**
716      * setPeerAddress sets the address of a known peer at a later time.
717      *
718      * <p>
719      * This is to account for situations where a we know that a peer
720      * exists but we do not know an address up-front. This may also be used in
721      * situations where a known peer starts off in a different location and we
722      * need to change it's address
723      *
724      * <p>
725      * Note that if the peerId does not match the list of peers passed to
726      * this actor during construction an IllegalStateException will be thrown.
727      */
728     protected void setPeerAddress(String peerId, String peerAddress) {
729         context.setPeerAddress(peerId, peerAddress);
730     }
731
732     /**
733      * The applyState method will be called by the RaftActor when some data
734      * needs to be applied to the actor's state.
735      *
736      * @param clientActor A reference to the client who sent this message. This
737      *                    is the same reference that was passed to persistData
738      *                    by the derived actor. clientActor may be null when
739      *                    the RaftActor is behaving as a follower or during
740      *                    recovery.
741      * @param identifier  The identifier of the persisted data. This is also
742      *                    the same identifier that was passed to persistData by
743      *                    the derived actor. identifier may be null when
744      *                    the RaftActor is behaving as a follower or during
745      *                    recovery
746      * @param data        A piece of data that was persisted by the persistData call.
747      *                    This should NEVER be null.
748      */
749     protected abstract void applyState(ActorRef clientActor, Identifier identifier, Object data);
750
751     /**
752      * Returns the RaftActorRecoveryCohort to participate in persistence recovery.
753      */
754     @Nonnull
755     protected abstract RaftActorRecoveryCohort getRaftActorRecoveryCohort();
756
757     /**
758      * This method is called when recovery is complete.
759      */
760     protected abstract void onRecoveryComplete();
761
762     /**
763      * Returns the RaftActorSnapshotCohort to participate in persistence recovery.
764      */
765     @Nonnull
766     protected abstract RaftActorSnapshotCohort getRaftActorSnapshotCohort();
767
768     /**
769      * This method will be called by the RaftActor when the state of the
770      * RaftActor changes. The derived actor can then use methods like
771      * isLeader or getLeader to do something useful
772      */
773     protected abstract void onStateChanged();
774
775     /**
776      * Notifier Actor for this RaftActor to notify when a role change happens.
777      *
778      * @return ActorRef - ActorRef of the notifier or Optional.absent if none.
779      */
780     protected abstract Optional<ActorRef> getRoleChangeNotifier();
781
782     /**
783      * This method is called prior to operations such as leadership transfer and actor shutdown when the leader
784      * must pause or stop its duties. This method allows derived classes to gracefully pause or finish current
785      * work prior to performing the operation. On completion of any work, the run method must be called on the
786      * given Runnable to proceed with the given operation. <b>Important:</b> the run method must be called on
787      * this actor's thread dispatcher as as it modifies internal state.
788      *
789      * <p>
790      * The default implementation immediately runs the operation.
791      *
792      * @param operation the operation to run
793      */
794     protected void pauseLeader(Runnable operation) {
795         operation.run();
796     }
797
798     protected void onLeaderChanged(String oldLeader, String newLeader) {
799     }
800
801     private String getLeaderAddress() {
802         if (isLeader()) {
803             return getSelf().path().toString();
804         }
805         String leaderId = getLeaderId();
806         if (leaderId == null) {
807             return null;
808         }
809         String peerAddress = context.getPeerAddress(leaderId);
810         LOG.debug("{}: getLeaderAddress leaderId = {} peerAddress = {}", persistenceId(), leaderId, peerAddress);
811
812         return peerAddress;
813     }
814
815     protected boolean hasFollowers() {
816         return getRaftActorContext().hasFollowers();
817     }
818
819     private void captureSnapshot() {
820         SnapshotManager snapshotManager = context.getSnapshotManager();
821
822         if (!snapshotManager.isCapturing()) {
823             final long idx = getCurrentBehavior().getReplicatedToAllIndex();
824             LOG.debug("Take a snapshot of current state. lastReplicatedLog is {} and replicatedToAllIndex is {}",
825                 replicatedLog().last(), idx);
826
827             snapshotManager.capture(replicatedLog().last(), idx);
828         }
829     }
830
831     /**
832      * Switch this member to non-voting status. This is a no-op for all behaviors except when we are the leader,
833      * in which case we need to step down.
834      */
835     void becomeNonVoting() {
836         if (isLeader()) {
837             initiateLeadershipTransfer(new RaftActorLeadershipTransferCohort.OnComplete() {
838                 @Override
839                 public void onSuccess(ActorRef raftActorRef) {
840                     LOG.debug("{}: leader transfer succeeded after change to non-voting", persistenceId());
841                     ensureFollowerState();
842                 }
843
844                 @Override
845                 public void onFailure(ActorRef raftActorRef) {
846                     LOG.debug("{}: leader transfer failed after change to non-voting", persistenceId());
847                     ensureFollowerState();
848                 }
849
850                 private void ensureFollowerState() {
851                     // Whether or not leadership transfer succeeded, we have to step down as leader and
852                     // switch to Follower so ensure that.
853                     if (getRaftState() != RaftState.Follower) {
854                         initializeBehavior();
855                     }
856                 }
857             });
858         }
859     }
860
861     /**
862      * A point-in-time capture of {@link RaftActorBehavior} state critical for transitioning between behaviors.
863      */
864     private abstract static class BehaviorState implements Immutable {
865         @Nullable abstract RaftActorBehavior getBehavior();
866
867         @Nullable abstract String getLastValidLeaderId();
868
869         @Nullable abstract String getLastLeaderId();
870
871         @Nullable abstract short getLeaderPayloadVersion();
872     }
873
874     /**
875      * A {@link BehaviorState} corresponding to non-null {@link RaftActorBehavior} state.
876      */
877     private static final class SimpleBehaviorState extends BehaviorState {
878         private final RaftActorBehavior behavior;
879         private final String lastValidLeaderId;
880         private final String lastLeaderId;
881         private final short leaderPayloadVersion;
882
883         SimpleBehaviorState(final String lastValidLeaderId, final String lastLeaderId,
884                 final RaftActorBehavior behavior) {
885             this.lastValidLeaderId = lastValidLeaderId;
886             this.lastLeaderId = lastLeaderId;
887             this.behavior = Preconditions.checkNotNull(behavior);
888             this.leaderPayloadVersion = behavior.getLeaderPayloadVersion();
889         }
890
891         @Override
892         RaftActorBehavior getBehavior() {
893             return behavior;
894         }
895
896         @Override
897         String getLastValidLeaderId() {
898             return lastValidLeaderId;
899         }
900
901         @Override
902         short getLeaderPayloadVersion() {
903             return leaderPayloadVersion;
904         }
905
906         @Override
907         String getLastLeaderId() {
908             return lastLeaderId;
909         }
910     }
911
912     /**
913      * Class tracking behavior-related information, which we need to keep around and pass across behavior switches.
914      * An instance is created for each RaftActor. It has two functions:
915      * - it keeps track of the last leader ID we have encountered since we have been created
916      * - it creates state capture needed to transition from one behavior to the next
917      */
918     private static final class BehaviorStateTracker {
919         /**
920          * A {@link BehaviorState} corresponding to null {@link RaftActorBehavior} state. Since null behavior is only
921          * allowed before we receive the first message, we know the leader ID to be null.
922          */
923         private static final BehaviorState NULL_BEHAVIOR_STATE = new BehaviorState() {
924             @Override
925             RaftActorBehavior getBehavior() {
926                 return null;
927             }
928
929             @Override
930             String getLastValidLeaderId() {
931                 return null;
932             }
933
934             @Override
935             short getLeaderPayloadVersion() {
936                 return -1;
937             }
938
939             @Override
940             String getLastLeaderId() {
941                 return null;
942             }
943         };
944
945         private String lastValidLeaderId;
946         private String lastLeaderId;
947
948         BehaviorState capture(final RaftActorBehavior behavior) {
949             if (behavior == null) {
950                 Verify.verify(lastValidLeaderId == null, "Null behavior with non-null last leader");
951                 return NULL_BEHAVIOR_STATE;
952             }
953
954             lastLeaderId = behavior.getLeaderId();
955             if (lastLeaderId != null) {
956                 lastValidLeaderId = lastLeaderId;
957             }
958
959             return new SimpleBehaviorState(lastValidLeaderId, lastLeaderId, behavior);
960         }
961     }
962
963 }