Fixup checkstyle
[controller.git] / opendaylight / md-sal / sal-akka-raft / src / main / java / org / opendaylight / controller / cluster / raft / behaviors / AbstractLeader.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 static java.util.Objects.requireNonNull;
11
12 import akka.actor.ActorRef;
13 import akka.actor.ActorSelection;
14 import akka.actor.Cancellable;
15 import com.google.common.annotations.VisibleForTesting;
16 import com.google.common.base.Optional;
17 import com.google.common.io.ByteSource;
18 import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
19 import java.io.IOException;
20 import java.io.ObjectOutputStream;
21 import java.util.Collection;
22 import java.util.Collections;
23 import java.util.HashMap;
24 import java.util.Iterator;
25 import java.util.LinkedList;
26 import java.util.List;
27 import java.util.Map;
28 import java.util.Map.Entry;
29 import java.util.Queue;
30 import java.util.concurrent.TimeUnit;
31 import org.eclipse.jdt.annotation.Nullable;
32 import org.opendaylight.controller.cluster.io.SharedFileBackedOutputStream;
33 import org.opendaylight.controller.cluster.messaging.MessageSlicer;
34 import org.opendaylight.controller.cluster.messaging.SliceOptions;
35 import org.opendaylight.controller.cluster.raft.ClientRequestTracker;
36 import org.opendaylight.controller.cluster.raft.ClientRequestTrackerImpl;
37 import org.opendaylight.controller.cluster.raft.FollowerLogInformation;
38 import org.opendaylight.controller.cluster.raft.PeerInfo;
39 import org.opendaylight.controller.cluster.raft.RaftActorContext;
40 import org.opendaylight.controller.cluster.raft.RaftState;
41 import org.opendaylight.controller.cluster.raft.ReplicatedLogEntry;
42 import org.opendaylight.controller.cluster.raft.VotingState;
43 import org.opendaylight.controller.cluster.raft.base.messages.CheckConsensusReached;
44 import org.opendaylight.controller.cluster.raft.base.messages.Replicate;
45 import org.opendaylight.controller.cluster.raft.base.messages.SendHeartBeat;
46 import org.opendaylight.controller.cluster.raft.base.messages.SendInstallSnapshot;
47 import org.opendaylight.controller.cluster.raft.messages.AppendEntries;
48 import org.opendaylight.controller.cluster.raft.messages.AppendEntriesReply;
49 import org.opendaylight.controller.cluster.raft.messages.InstallSnapshot;
50 import org.opendaylight.controller.cluster.raft.messages.InstallSnapshotReply;
51 import org.opendaylight.controller.cluster.raft.messages.RaftRPC;
52 import org.opendaylight.controller.cluster.raft.messages.RequestVote;
53 import org.opendaylight.controller.cluster.raft.messages.RequestVoteReply;
54 import org.opendaylight.controller.cluster.raft.messages.UnInitializedFollowerSnapshotReply;
55 import org.opendaylight.controller.cluster.raft.persisted.ServerConfigurationPayload;
56 import org.opendaylight.controller.cluster.raft.persisted.Snapshot;
57 import scala.concurrent.duration.FiniteDuration;
58
59 /**
60  * The behavior of a RaftActor when it is in the Leader state.
61  *
62  * <p>
63  * Leaders:
64  * <ul>
65  * <li> Upon election: send initial empty AppendEntries RPCs
66  * (heartbeat) to each server; repeat during idle periods to
67  * prevent election timeouts (§5.2)
68  * <li> If command received from client: append entry to local log,
69  * respond after entry applied to state machine (§5.3)
70  * <li> If last log index ≥ nextIndex for a follower: send
71  * AppendEntries RPC with log entries starting at nextIndex
72  * <li> If successful: update nextIndex and matchIndex for
73  * follower (§5.3)
74  * <li> If AppendEntries fails because of log inconsistency:
75  * decrement nextIndex and retry (§5.3)
76  * <li> If there exists an N such that N &gt; commitIndex, a majority
77  * of matchIndex[i] ≥ N, and log[N].term == currentTerm:
78  * set commitIndex = N (§5.3, §5.4).
79  * </ul>
80  */
81 public abstract class AbstractLeader extends AbstractRaftActorBehavior {
82     private final Map<String, FollowerLogInformation> followerToLog = new HashMap<>();
83
84     /**
85      * Lookup table for request contexts based on journal index. We could use a {@link Map} here, but we really
86      * expect the entries to be modified in sequence, hence we open-code the lookup.
87      * TODO: Evaluate the use of ArrayDeque(), as that has lower memory overhead. Non-head removals are more costly,
88      *       but we already expect those to be far from frequent.
89      */
90     private final Queue<ClientRequestTracker> trackers = new LinkedList<>();
91
92     /**
93      * Map of serialized AppendEntries output streams keyed by log index. This is used in conjunction with the
94      * appendEntriesMessageSlicer for slicing single ReplicatedLogEntry payloads that exceed the message size threshold.
95      * This Map allows the SharedFileBackedOutputStreams to be reused for multiple followers.
96      */
97     private final Map<Long, SharedFileBackedOutputStream> sharedSerializedAppendEntriesStreams = new HashMap<>();
98     private final MessageSlicer appendEntriesMessageSlicer;
99
100     private Cancellable heartbeatSchedule = null;
101     private Optional<SnapshotHolder> snapshotHolder = Optional.absent();
102     private int minReplicationCount;
103
104     protected AbstractLeader(final RaftActorContext context, final RaftState state,
105             final @Nullable AbstractLeader initializeFromLeader) {
106         super(context, state);
107
108         appendEntriesMessageSlicer = MessageSlicer.builder().logContext(logName())
109             .messageSliceSize(context.getConfigParams().getSnapshotChunkSize())
110             .expireStateAfterInactivity(context.getConfigParams().getElectionTimeOutInterval().toMillis() * 3,
111                     TimeUnit.MILLISECONDS).build();
112
113         if (initializeFromLeader != null) {
114             followerToLog.putAll(initializeFromLeader.followerToLog);
115             snapshotHolder = initializeFromLeader.snapshotHolder;
116             trackers.addAll(initializeFromLeader.trackers);
117         } else {
118             for (PeerInfo peerInfo: context.getPeers()) {
119                 FollowerLogInformation followerLogInformation = new FollowerLogInformation(peerInfo, context);
120                 followerToLog.put(peerInfo.getId(), followerLogInformation);
121             }
122         }
123
124         log.debug("{}: Election: Leader has following peers: {}", logName(), getFollowerIds());
125
126         updateMinReplicaCount();
127
128         // Immediately schedule a heartbeat
129         // Upon election: send initial empty AppendEntries RPCs
130         // (heartbeat) to each server; repeat during idle periods to
131         // prevent election timeouts (§5.2)
132         sendAppendEntries(0, false);
133
134         // It is important to schedule this heartbeat here
135         scheduleHeartBeat(context.getConfigParams().getHeartBeatInterval());
136     }
137
138     protected AbstractLeader(final RaftActorContext context, final RaftState state) {
139         this(context, state, null);
140     }
141
142     /**
143      * Return an immutable collection of follower identifiers.
144      *
145      * @return Collection of follower IDs
146      */
147     public final Collection<String> getFollowerIds() {
148         return followerToLog.keySet();
149     }
150
151     public void addFollower(final String followerId) {
152         FollowerLogInformation followerLogInformation = new FollowerLogInformation(context.getPeerInfo(followerId),
153             context);
154         followerToLog.put(followerId, followerLogInformation);
155
156         if (heartbeatSchedule == null) {
157             scheduleHeartBeat(context.getConfigParams().getHeartBeatInterval());
158         }
159     }
160
161     public void removeFollower(final String followerId) {
162         followerToLog.remove(followerId);
163     }
164
165     public void updateMinReplicaCount() {
166         int numVoting = 0;
167         for (PeerInfo peer: context.getPeers()) {
168             if (peer.isVoting()) {
169                 numVoting++;
170             }
171         }
172
173         minReplicationCount = getMajorityVoteCount(numVoting);
174     }
175
176     protected int getMinIsolatedLeaderPeerCount() {
177       //the isolated Leader peer count will be 1 less than the majority vote count.
178         //this is because the vote count has the self vote counted in it
179         //for e.g
180         //0 peers = 1 votesRequired , minIsolatedLeaderPeerCount = 0
181         //2 peers = 2 votesRequired , minIsolatedLeaderPeerCount = 1
182         //4 peers = 3 votesRequired, minIsolatedLeaderPeerCount = 2
183
184         return minReplicationCount > 0 ? minReplicationCount - 1 : 0;
185     }
186
187     @VisibleForTesting
188     void setSnapshotHolder(final @Nullable SnapshotHolder snapshotHolder) {
189         this.snapshotHolder = Optional.fromNullable(snapshotHolder);
190     }
191
192     @VisibleForTesting
193     boolean hasSnapshot() {
194         return snapshotHolder.isPresent();
195     }
196
197     @Override
198     protected RaftActorBehavior handleAppendEntries(final ActorRef sender,
199         final AppendEntries appendEntries) {
200
201         log.debug("{}: handleAppendEntries: {}", logName(), appendEntries);
202
203         return this;
204     }
205
206     @Override
207     protected RaftActorBehavior handleAppendEntriesReply(final ActorRef sender,
208             final AppendEntriesReply appendEntriesReply) {
209         log.trace("{}: handleAppendEntriesReply: {}", logName(), appendEntriesReply);
210
211         // Update the FollowerLogInformation
212         String followerId = appendEntriesReply.getFollowerId();
213         FollowerLogInformation followerLogInformation = followerToLog.get(followerId);
214
215         if (followerLogInformation == null) {
216             log.error("{}: handleAppendEntriesReply - unknown follower {}", logName(), followerId);
217             return this;
218         }
219
220         final long lastActivityNanos = followerLogInformation.nanosSinceLastActivity();
221         if (lastActivityNanos > context.getConfigParams().getElectionTimeOutInterval().toNanos()) {
222             log.warn("{} : handleAppendEntriesReply delayed beyond election timeout, "
223                     + "appendEntriesReply : {}, timeSinceLastActivity : {}, lastApplied : {}, commitIndex : {}",
224                     logName(), appendEntriesReply, TimeUnit.NANOSECONDS.toMillis(lastActivityNanos),
225                     context.getLastApplied(), context.getCommitIndex());
226         }
227
228         followerLogInformation.markFollowerActive();
229         followerLogInformation.setPayloadVersion(appendEntriesReply.getPayloadVersion());
230         followerLogInformation.setRaftVersion(appendEntriesReply.getRaftVersion());
231         followerLogInformation.setNeedsLeaderAddress(appendEntriesReply.isNeedsLeaderAddress());
232
233         long followerLastLogIndex = appendEntriesReply.getLogLastIndex();
234         boolean updated = false;
235         if (appendEntriesReply.getLogLastIndex() > context.getReplicatedLog().lastIndex()) {
236             // The follower's log is actually ahead of the leader's log. Normally this doesn't happen
237             // in raft as a node cannot become leader if it's log is behind another's. However, the
238             // non-voting semantics deviate a bit from raft. Only voting members participate in
239             // elections and can become leader so it's possible for a non-voting follower to be ahead
240             // of the leader. This can happen if persistence is disabled and all voting members are
241             // restarted. In this case, the voting leader will start out with an empty log however
242             // the non-voting followers still retain the previous data in memory. On the first
243             // AppendEntries, the non-voting follower returns a successful reply b/c the prevLogIndex
244             // sent by the leader is -1 and thus the integrity checks pass. However the follower's returned
245             // lastLogIndex may be higher in which case we want to reset the follower by installing a
246             // snapshot. It's also possible that the follower's last log index is behind the leader's.
247             // However in this case the log terms won't match and the logs will conflict - this is handled
248             // elsewhere.
249             log.info("{}: handleAppendEntriesReply: follower {} lastIndex {} is ahead of our lastIndex {} "
250                     + "(snapshotIndex {}, snapshotTerm {}) - forcing install snaphot", logName(),
251                     followerLogInformation.getId(), appendEntriesReply.getLogLastIndex(),
252                     context.getReplicatedLog().lastIndex(), context.getReplicatedLog().getSnapshotIndex(),
253                     context.getReplicatedLog().getSnapshotTerm());
254
255             followerLogInformation.setMatchIndex(-1);
256             followerLogInformation.setNextIndex(-1);
257
258             initiateCaptureSnapshot(followerId);
259
260             updated = true;
261         } else if (appendEntriesReply.isSuccess()) {
262             long followersLastLogTermInLeadersLog = getLogEntryTerm(followerLastLogIndex);
263             if (followerLastLogIndex >= 0 && followersLastLogTermInLeadersLog >= 0
264                     && followersLastLogTermInLeadersLog != appendEntriesReply.getLogLastTerm()) {
265                 // The follower's last entry is present in the leader's journal but the terms don't match so the
266                 // follower has a conflicting entry. Since the follower didn't report that it's out of sync, this means
267                 // either the previous leader entry sent didn't conflict or the previous leader entry is in the snapshot
268                 // and no longer in the journal. Either way, we set the follower's next index to 1 less than the last
269                 // index reported by the follower. For the former case, the leader will send all entries starting with
270                 // the previous follower's index and the follower will remove and replace the conflicting entries as
271                 // needed. For the latter, the leader will initiate an install snapshot.
272
273                 followerLogInformation.setNextIndex(followerLastLogIndex - 1);
274                 updated = true;
275
276                 log.info("{}: handleAppendEntriesReply: follower {} last log term {} for index {} conflicts with the "
277                         + "leader's {} - set the follower's next index to {}", logName(),
278                         followerId, appendEntriesReply.getLogLastTerm(), appendEntriesReply.getLogLastIndex(),
279                         followersLastLogTermInLeadersLog, followerLogInformation.getNextIndex());
280             } else {
281                 updated = updateFollowerLogInformation(followerLogInformation, appendEntriesReply);
282             }
283         } else {
284             log.info("{}: handleAppendEntriesReply - received unsuccessful reply: {}, leader snapshotIndex: {}, "
285                     + "snapshotTerm: {}, replicatedToAllIndex: {}", logName(), appendEntriesReply,
286                     context.getReplicatedLog().getSnapshotIndex(), context.getReplicatedLog().getSnapshotTerm(),
287                     getReplicatedToAllIndex());
288
289             long followersLastLogTermInLeadersLogOrSnapshot = getLogEntryOrSnapshotTerm(followerLastLogIndex);
290             if (appendEntriesReply.isForceInstallSnapshot()) {
291                 // Reset the followers match and next index. This is to signal that this follower has nothing
292                 // in common with this Leader and so would require a snapshot to be installed
293                 followerLogInformation.setMatchIndex(-1);
294                 followerLogInformation.setNextIndex(-1);
295
296                 // Force initiate a snapshot capture
297                 initiateCaptureSnapshot(followerId);
298             } else if (followerLastLogIndex < 0 || followersLastLogTermInLeadersLogOrSnapshot >= 0
299                     && followersLastLogTermInLeadersLogOrSnapshot == appendEntriesReply.getLogLastTerm()) {
300                 // The follower's log is empty or the follower's last entry is present in the leader's journal or
301                 // snapshot and the terms match so the follower is just behind the leader's journal from the last
302                 // snapshot, if any. We'll catch up the follower quickly by starting at the follower's last log index.
303
304                 updated = updateFollowerLogInformation(followerLogInformation, appendEntriesReply);
305
306                 log.info("{}: follower {} appears to be behind the leader from the last snapshot - "
307                     + "updated: matchIndex: {}, nextIndex: {}", logName(), followerId,
308                     followerLogInformation.getMatchIndex(), followerLogInformation.getNextIndex());
309             } else {
310                 // The follower's log conflicts with leader's log so decrement follower's next index
311                 // in an attempt to find where the logs match.
312                 if (followerLogInformation.decrNextIndex(appendEntriesReply.getLogLastIndex())) {
313                     updated = true;
314
315                     log.info("{}: follower {} last log term {} conflicts with the leader's {} - dec next index to {}",
316                             logName(), followerId, appendEntriesReply.getLogLastTerm(),
317                             followersLastLogTermInLeadersLogOrSnapshot, followerLogInformation.getNextIndex());
318                 }
319             }
320         }
321
322         if (log.isTraceEnabled()) {
323             log.trace("{}: handleAppendEntriesReply from {}: commitIndex: {}, lastAppliedIndex: {}, currentTerm: {}",
324                     logName(), followerId, context.getCommitIndex(), context.getLastApplied(), currentTerm());
325         }
326
327         possiblyUpdateCommitIndex();
328
329         //Send the next log entry immediately, if possible, no need to wait for heartbeat to trigger that event
330         sendUpdatesToFollower(followerId, followerLogInformation, false, !updated);
331
332         return this;
333     }
334
335     private void possiblyUpdateCommitIndex() {
336         // Figure out if we can update the the commitIndex as follows:
337         //   If there exists an index N such that N > commitIndex, a majority of matchIndex[i] ≥ N,
338         //     and log[N].term == currentTerm:
339         //   set commitIndex = N (§5.3, §5.4).
340         for (long index = context.getCommitIndex() + 1; ; index++) {
341             ReplicatedLogEntry replicatedLogEntry = context.getReplicatedLog().get(index);
342             if (replicatedLogEntry == null) {
343                 log.trace("{}: ReplicatedLogEntry not found for index {} - snapshotIndex: {}, journal size: {}",
344                         logName(), index, context.getReplicatedLog().getSnapshotIndex(),
345                         context.getReplicatedLog().size());
346                 break;
347             }
348
349             // Count our entry if it has been persisted.
350             int replicatedCount = replicatedLogEntry.isPersistencePending() ? 0 : 1;
351
352             if (replicatedCount == 0) {
353                 // We don't commit and apply a log entry until we've gotten the ack from our local persistence,
354                 // even though there *shouldn't* be any issue with updating the commit index if we get a consensus
355                 // amongst the followers w/o the local persistence ack.
356                 break;
357             }
358
359             log.trace("{}: checking Nth index {}", logName(), index);
360             for (FollowerLogInformation info : followerToLog.values()) {
361                 final PeerInfo peerInfo = context.getPeerInfo(info.getId());
362                 if (info.getMatchIndex() >= index && peerInfo != null && peerInfo.isVoting()) {
363                     replicatedCount++;
364                 } else if (log.isTraceEnabled()) {
365                     log.trace("{}: Not counting follower {} - matchIndex: {}, {}", logName(), info.getId(),
366                             info.getMatchIndex(), peerInfo);
367                 }
368             }
369
370             if (log.isTraceEnabled()) {
371                 log.trace("{}: replicatedCount {}, minReplicationCount: {}", logName(), replicatedCount,
372                         minReplicationCount);
373             }
374
375             if (replicatedCount >= minReplicationCount) {
376                 // Don't update the commit index if the log entry is from a previous term, as per §5.4.1:
377                 // "Raft never commits log entries from previous terms by counting replicas".
378                 // However we keep looping so we can make progress when new entries in the current term
379                 // reach consensus, as per §5.4.1: "once an entry from the current term is committed by
380                 // counting replicas, then all prior entries are committed indirectly".
381                 if (replicatedLogEntry.getTerm() == currentTerm()) {
382                     log.trace("{}: Setting commit index to {}", logName(), index);
383                     context.setCommitIndex(index);
384                 } else {
385                     log.debug("{}: Not updating commit index to {} - retrieved log entry with index {}, "
386                             + "term {} does not match the current term {}", logName(), index,
387                             replicatedLogEntry.getIndex(), replicatedLogEntry.getTerm(), currentTerm());
388                 }
389             } else {
390                 log.trace("{}: minReplicationCount not reached, actual {} - breaking", logName(), replicatedCount);
391                 break;
392             }
393         }
394
395         // Apply the change to the state machine
396         if (context.getCommitIndex() > context.getLastApplied()) {
397             log.debug("{}: Applying to log - commitIndex: {}, lastAppliedIndex: {}", logName(),
398                     context.getCommitIndex(), context.getLastApplied());
399
400             applyLogToStateMachine(context.getCommitIndex());
401         }
402
403         if (!context.getSnapshotManager().isCapturing()) {
404             purgeInMemoryLog();
405         }
406     }
407
408     private boolean updateFollowerLogInformation(final FollowerLogInformation followerLogInformation,
409             final AppendEntriesReply appendEntriesReply) {
410         boolean updated = followerLogInformation.setMatchIndex(appendEntriesReply.getLogLastIndex());
411         updated = followerLogInformation.setNextIndex(appendEntriesReply.getLogLastIndex() + 1) || updated;
412
413         if (updated && log.isDebugEnabled()) {
414             log.debug(
415                 "{}: handleAppendEntriesReply - FollowerLogInformation for {} updated: matchIndex: {}, nextIndex: {}",
416                 logName(), followerLogInformation.getId(), followerLogInformation.getMatchIndex(),
417                 followerLogInformation.getNextIndex());
418         }
419         return updated;
420     }
421
422     private void purgeInMemoryLog() {
423         //find the lowest index across followers which has been replicated to all.
424         // lastApplied if there are no followers, so that we keep clearing the log for single-node
425         // we would delete the in-mem log from that index on, in-order to minimize mem usage
426         // we would also share this info thru AE with the followers so that they can delete their log entries as well.
427         long minReplicatedToAllIndex = followerToLog.isEmpty() ? context.getLastApplied() : Long.MAX_VALUE;
428         for (FollowerLogInformation info : followerToLog.values()) {
429             minReplicatedToAllIndex = Math.min(minReplicatedToAllIndex, info.getMatchIndex());
430         }
431
432         super.performSnapshotWithoutCapture(minReplicatedToAllIndex);
433     }
434
435     @Override
436     protected ClientRequestTracker removeClientRequestTracker(final long logIndex) {
437         final Iterator<ClientRequestTracker> it = trackers.iterator();
438         while (it.hasNext()) {
439             final ClientRequestTracker t = it.next();
440             if (t.getIndex() == logIndex) {
441                 it.remove();
442                 return t;
443             }
444         }
445
446         return null;
447     }
448
449     @Override
450     protected RaftActorBehavior handleRequestVoteReply(final ActorRef sender, final RequestVoteReply requestVoteReply) {
451         return this;
452     }
453
454     protected void beforeSendHeartbeat() {
455         // No-op
456     }
457
458     @Override
459     public RaftActorBehavior handleMessage(final ActorRef sender, final Object message) {
460         requireNonNull(sender, "sender should not be null");
461
462         if (appendEntriesMessageSlicer.handleMessage(message)) {
463             return this;
464         }
465
466         if (message instanceof RaftRPC) {
467             RaftRPC rpc = (RaftRPC) message;
468             // If RPC request or response contains term T > currentTerm:
469             // set currentTerm = T, convert to follower (§5.1)
470             // This applies to all RPC messages and responses
471             if (rpc.getTerm() > context.getTermInformation().getCurrentTerm()) {
472                 log.info("{}: Term {} in \"{}\" message is greater than leader's term {} - switching to Follower",
473                         logName(), rpc.getTerm(), rpc, context.getTermInformation().getCurrentTerm());
474
475                 context.getTermInformation().updateAndPersist(rpc.getTerm(), null);
476
477                 // This is a special case. Normally when stepping down as leader we don't process and reply to the
478                 // RaftRPC as per raft. But if we're in the process of transferring leadership and we get a
479                 // RequestVote, process the RequestVote before switching to Follower. This enables the requesting
480                 // candidate node to be elected the leader faster and avoids us possibly timing out in the Follower
481                 // state and starting a new election and grabbing leadership back before the other candidate node can
482                 // start a new election due to lack of responses. This case would only occur if there isn't a majority
483                 // of other nodes available that can elect the requesting candidate. Since we're transferring
484                 // leadership, we should make every effort to get the requesting node elected.
485                 if (message instanceof RequestVote && context.getRaftActorLeadershipTransferCohort() != null) {
486                     log.debug("{}: Leadership transfer in progress - processing RequestVote", logName());
487                     super.handleMessage(sender, message);
488                 }
489
490                 return internalSwitchBehavior(RaftState.Follower);
491             }
492         }
493
494         if (message instanceof SendHeartBeat) {
495             beforeSendHeartbeat();
496             sendHeartBeat();
497             scheduleHeartBeat(context.getConfigParams().getHeartBeatInterval());
498         } else if (message instanceof SendInstallSnapshot) {
499             SendInstallSnapshot sendInstallSnapshot = (SendInstallSnapshot) message;
500             setSnapshotHolder(new SnapshotHolder(sendInstallSnapshot.getSnapshot(),
501                 sendInstallSnapshot.getSnapshotBytes()));
502             sendInstallSnapshot();
503         } else if (message instanceof Replicate) {
504             replicate((Replicate) message);
505         } else if (message instanceof InstallSnapshotReply) {
506             handleInstallSnapshotReply((InstallSnapshotReply) message);
507         } else if (message instanceof CheckConsensusReached) {
508             possiblyUpdateCommitIndex();
509         } else {
510             return super.handleMessage(sender, message);
511         }
512
513         return this;
514     }
515
516     @SuppressFBWarnings(value = "NP_NULL_PARAM_DEREF_ALL_TARGETS_DANGEROUS",
517             justification = "JDT nullness with SpotBugs at setSnapshotHolder(null)")
518     private void handleInstallSnapshotReply(final InstallSnapshotReply reply) {
519         log.debug("{}: handleInstallSnapshotReply: {}", logName(), reply);
520
521         String followerId = reply.getFollowerId();
522         FollowerLogInformation followerLogInformation = followerToLog.get(followerId);
523         if (followerLogInformation == null) {
524             // This can happen during AddServer if it times out.
525             log.error("{}: FollowerLogInformation not found for follower {} in InstallSnapshotReply",
526                     logName(), followerId);
527             return;
528         }
529
530         LeaderInstallSnapshotState installSnapshotState = followerLogInformation.getInstallSnapshotState();
531         if (installSnapshotState == null) {
532             log.error("{}: LeaderInstallSnapshotState not found for follower {} in InstallSnapshotReply",
533                     logName(), followerId);
534             return;
535         }
536
537         installSnapshotState.resetChunkTimer();
538         followerLogInformation.markFollowerActive();
539
540         if (installSnapshotState.getChunkIndex() == reply.getChunkIndex()) {
541             boolean wasLastChunk = false;
542             if (reply.isSuccess()) {
543                 if (installSnapshotState.isLastChunk(reply.getChunkIndex())) {
544                     //this was the last chunk reply
545
546                     long followerMatchIndex = snapshotHolder.get().getLastIncludedIndex();
547                     followerLogInformation.setMatchIndex(followerMatchIndex);
548                     followerLogInformation.setNextIndex(followerMatchIndex + 1);
549                     followerLogInformation.clearLeaderInstallSnapshotState();
550
551                     log.info("{}: Snapshot successfully installed on follower {} (last chunk {}) - "
552                         + "matchIndex set to {}, nextIndex set to {}", logName(), followerId, reply.getChunkIndex(),
553                         followerLogInformation.getMatchIndex(), followerLogInformation.getNextIndex());
554
555                     if (!anyFollowersInstallingSnapshot()) {
556                         // once there are no pending followers receiving snapshots
557                         // we can remove snapshot from the memory
558                         setSnapshotHolder(null);
559                     }
560
561                     wasLastChunk = true;
562                     if (context.getPeerInfo(followerId).getVotingState() == VotingState.VOTING_NOT_INITIALIZED) {
563                         UnInitializedFollowerSnapshotReply unInitFollowerSnapshotSuccess =
564                                              new UnInitializedFollowerSnapshotReply(followerId);
565                         context.getActor().tell(unInitFollowerSnapshotSuccess, context.getActor());
566                         log.debug("Sent message UnInitializedFollowerSnapshotReply to self");
567                     }
568                 } else {
569                     installSnapshotState.markSendStatus(true);
570                 }
571             } else {
572                 log.warn("{}: Received failed InstallSnapshotReply - will retry: {}", logName(), reply);
573
574                 installSnapshotState.markSendStatus(false);
575             }
576
577             if (wasLastChunk) {
578                 if (!context.getSnapshotManager().isCapturing()) {
579                     // Since the follower is now caught up try to purge the log.
580                     purgeInMemoryLog();
581                 }
582             } else {
583                 ActorSelection followerActor = context.getPeerActorSelection(followerId);
584                 if (followerActor != null) {
585                     sendSnapshotChunk(followerActor, followerLogInformation);
586                 }
587             }
588
589         } else {
590             log.error("{}: Chunk index {} in InstallSnapshotReply from follower {} does not match expected index {}",
591                     logName(), reply.getChunkIndex(), followerId,
592                     installSnapshotState.getChunkIndex());
593
594             if (reply.getChunkIndex() == LeaderInstallSnapshotState.INVALID_CHUNK_INDEX) {
595                 // Since the Follower did not find this index to be valid we should reset the follower snapshot
596                 // so that Installing the snapshot can resume from the beginning
597                 installSnapshotState.reset();
598             }
599         }
600     }
601
602     private boolean anyFollowersInstallingSnapshot() {
603         for (FollowerLogInformation info: followerToLog.values()) {
604             if (info.getInstallSnapshotState() != null) {
605                 return true;
606             }
607
608         }
609
610         return false;
611     }
612
613     private void replicate(final Replicate replicate) {
614         long logIndex = replicate.getReplicatedLogEntry().getIndex();
615
616         log.debug("{}: Replicate message: identifier: {}, logIndex: {}, payload: {}, isSendImmediate: {}", logName(),
617                 replicate.getIdentifier(), logIndex, replicate.getReplicatedLogEntry().getData().getClass(),
618                 replicate.isSendImmediate());
619
620         // Create a tracker entry we will use this later to notify the
621         // client actor
622         if (replicate.getClientActor() != null) {
623             trackers.add(new ClientRequestTrackerImpl(replicate.getClientActor(), replicate.getIdentifier(),
624                     logIndex));
625         }
626
627         boolean applyModificationToState = !context.anyVotingPeers()
628                 || context.getRaftPolicy().applyModificationToStateBeforeConsensus();
629
630         if (applyModificationToState) {
631             context.setCommitIndex(logIndex);
632             applyLogToStateMachine(logIndex);
633         }
634
635         if (replicate.isSendImmediate() && !followerToLog.isEmpty()) {
636             sendAppendEntries(0, false);
637         }
638     }
639
640     protected void sendAppendEntries(final long timeSinceLastActivityIntervalNanos, final boolean isHeartbeat) {
641         // Send an AppendEntries to all followers
642         for (Entry<String, FollowerLogInformation> e : followerToLog.entrySet()) {
643             final String followerId = e.getKey();
644             final FollowerLogInformation followerLogInformation = e.getValue();
645             // This checks helps not to send a repeat message to the follower
646             if (!followerLogInformation.isFollowerActive()
647                     || followerLogInformation.nanosSinceLastActivity() >= timeSinceLastActivityIntervalNanos) {
648                 sendUpdatesToFollower(followerId, followerLogInformation, true, isHeartbeat);
649             }
650         }
651     }
652
653     /**
654      * This method checks if any update needs to be sent to the given follower. This includes append log entries,
655      * sending next snapshot chunk, and initiating a snapshot.
656      */
657     private void sendUpdatesToFollower(final String followerId, final FollowerLogInformation followerLogInformation,
658                                        final boolean sendHeartbeat, final boolean isHeartbeat) {
659
660         ActorSelection followerActor = context.getPeerActorSelection(followerId);
661         if (followerActor != null) {
662             long followerNextIndex = followerLogInformation.getNextIndex();
663             boolean isFollowerActive = followerLogInformation.isFollowerActive();
664             boolean sendAppendEntries = false;
665             List<ReplicatedLogEntry> entries = Collections.emptyList();
666
667             LeaderInstallSnapshotState installSnapshotState = followerLogInformation.getInstallSnapshotState();
668             if (installSnapshotState != null) {
669
670                 // if install snapshot is in process , then sent next chunk if possible
671                 if (isFollowerActive) {
672                     // 30 seconds with default settings, can be modified via heartbeat or election timeout factor
673                     FiniteDuration snapshotReplyTimeout = context.getConfigParams().getHeartBeatInterval()
674                             .$times(context.getConfigParams().getElectionTimeoutFactor() * 3);
675
676                     if (installSnapshotState.isChunkTimedOut(snapshotReplyTimeout)) {
677                         sendAppendEntries = !resendSnapshotChunk(followerActor, followerLogInformation);
678                     } else if (installSnapshotState.canSendNextChunk()) {
679                         sendSnapshotChunk(followerActor, followerLogInformation);
680                     }
681                 } else if (sendHeartbeat || followerLogInformation.hasStaleCommitIndex(context.getCommitIndex())) {
682                     // we send a heartbeat even if we have not received a reply for the last chunk
683                     sendAppendEntries = true;
684                 }
685             } else if (followerLogInformation.isLogEntrySlicingInProgress()) {
686                 sendAppendEntries = sendHeartbeat;
687             } else {
688                 long leaderLastIndex = context.getReplicatedLog().lastIndex();
689                 long leaderSnapShotIndex = context.getReplicatedLog().getSnapshotIndex();
690
691                 if (!isHeartbeat && log.isDebugEnabled() || log.isTraceEnabled()) {
692                     log.debug("{}: Checking sendAppendEntries for follower {}: active: {}, followerNextIndex: {}, "
693                             + "leaderLastIndex: {}, leaderSnapShotIndex: {}", logName(), followerId, isFollowerActive,
694                             followerNextIndex, leaderLastIndex, leaderSnapShotIndex);
695                 }
696
697                 if (isFollowerActive && context.getReplicatedLog().isPresent(followerNextIndex)) {
698
699                     log.debug("{}: sendAppendEntries: {} is present for follower {}", logName(),
700                             followerNextIndex, followerId);
701
702                     if (followerLogInformation.okToReplicate(context.getCommitIndex())) {
703                         entries = getEntriesToSend(followerLogInformation, followerActor);
704                         sendAppendEntries = true;
705                     }
706                 } else if (isFollowerActive && followerNextIndex >= 0
707                         && leaderLastIndex > followerNextIndex && !context.getSnapshotManager().isCapturing()) {
708                     // if the followers next index is not present in the leaders log, and
709                     // if the follower is just not starting and if leader's index is more than followers index
710                     // then snapshot should be sent
711
712                     // Send heartbeat to follower whenever install snapshot is initiated.
713                     sendAppendEntries = true;
714                     if (canInstallSnapshot(followerNextIndex)) {
715                         log.info("{}: Initiating install snapshot to follower {}: follower nextIndex: {}, leader "
716                                 + "snapshotIndex: {}, leader lastIndex: {}, leader log size: {}", logName(), followerId,
717                                 followerNextIndex, leaderSnapShotIndex, leaderLastIndex,
718                                 context.getReplicatedLog().size());
719
720                         initiateCaptureSnapshot(followerId);
721                     } else {
722                         // It doesn't seem like we should ever reach here - most likely indicates sonething is
723                         // wrong.
724                         log.info("{}: Follower {} is behind but cannot install snapshot: follower nextIndex: {}, "
725                                 + "leader snapshotIndex: {}, leader lastIndex: {}, leader log size: {}", logName(),
726                                 followerId, followerNextIndex, leaderSnapShotIndex, leaderLastIndex,
727                                 context.getReplicatedLog().size());
728                     }
729
730                 } else if (sendHeartbeat || followerLogInformation.hasStaleCommitIndex(context.getCommitIndex())) {
731                     // we send an AppendEntries, even if the follower is inactive
732                     // in-order to update the followers timestamp, in case it becomes active again
733                     sendAppendEntries = true;
734                 }
735
736             }
737
738             if (sendAppendEntries) {
739                 sendAppendEntriesToFollower(followerActor, entries, followerLogInformation);
740             }
741         }
742     }
743
744     private List<ReplicatedLogEntry> getEntriesToSend(final FollowerLogInformation followerLogInfo,
745             final ActorSelection followerActor) {
746         // Try to get all the entries in the journal but not exceeding the max data size for a single AppendEntries
747         // message.
748         int maxEntries = (int) context.getReplicatedLog().size();
749         final int maxDataSize = context.getConfigParams().getSnapshotChunkSize();
750         final long followerNextIndex = followerLogInfo.getNextIndex();
751         List<ReplicatedLogEntry> entries = context.getReplicatedLog().getFrom(followerNextIndex,
752                 maxEntries, maxDataSize);
753
754         // If the first entry's size exceeds the max data size threshold, it will be returned from the call above. If
755         // that is the case, then we need to slice it into smaller chunks.
756         if (!(entries.size() == 1 && entries.get(0).getData().size() > maxDataSize)) {
757             // Don't need to slice.
758             return entries;
759         }
760
761         log.debug("{}: Log entry size {} exceeds max payload size {}", logName(), entries.get(0).getData().size(),
762                 maxDataSize);
763
764         // If an AppendEntries has already been serialized for the log index then reuse the
765         // SharedFileBackedOutputStream.
766         final Long logIndex = entries.get(0).getIndex();
767         SharedFileBackedOutputStream fileBackedStream = sharedSerializedAppendEntriesStreams.get(logIndex);
768         if (fileBackedStream == null) {
769             fileBackedStream = context.getFileBackedOutputStreamFactory().newSharedInstance();
770
771             final AppendEntries appendEntries = new AppendEntries(currentTerm(), context.getId(),
772                     getLogEntryIndex(followerNextIndex - 1), getLogEntryTerm(followerNextIndex - 1), entries,
773                     context.getCommitIndex(), getReplicatedToAllIndex(), context.getPayloadVersion());
774
775             log.debug("{}: Serializing {} for slicing for follower {}", logName(), appendEntries,
776                     followerLogInfo.getId());
777
778             try (ObjectOutputStream out = new ObjectOutputStream(fileBackedStream)) {
779                 out.writeObject(appendEntries);
780             } catch (IOException e) {
781                 log.error("{}: Error serializing {}", logName(), appendEntries, e);
782                 fileBackedStream.cleanup();
783                 return Collections.emptyList();
784             }
785
786             sharedSerializedAppendEntriesStreams.put(logIndex, fileBackedStream);
787
788             fileBackedStream.setOnCleanupCallback(index -> {
789                 log.debug("{}: On SharedFileBackedOutputStream cleanup for index {}", logName(), index);
790                 sharedSerializedAppendEntriesStreams.remove(index);
791             }, logIndex);
792         } else {
793             log.debug("{}: Reusing SharedFileBackedOutputStream for follower {}", logName(), followerLogInfo.getId());
794             fileBackedStream.incrementUsageCount();
795         }
796
797         log.debug("{}: Slicing stream for index {}, follower {}", logName(), logIndex, followerLogInfo.getId());
798
799         // Record that slicing is in progress for the follower.
800         followerLogInfo.setSlicedLogEntryIndex(logIndex);
801
802         final FollowerIdentifier identifier = new FollowerIdentifier(followerLogInfo.getId());
803         appendEntriesMessageSlicer.slice(SliceOptions.builder().identifier(identifier)
804                 .fileBackedOutputStream(fileBackedStream).sendTo(followerActor).replyTo(actor())
805                 .onFailureCallback(failure -> {
806                     log.error("{}: Error slicing AppendEntries for follower {}", logName(),
807                             followerLogInfo.getId(), failure);
808                     followerLogInfo.setSlicedLogEntryIndex(FollowerLogInformation.NO_INDEX);
809                 }).build());
810
811         return Collections.emptyList();
812     }
813
814     private void sendAppendEntriesToFollower(final ActorSelection followerActor, final List<ReplicatedLogEntry> entries,
815             final FollowerLogInformation followerLogInformation) {
816         // In certain cases outlined below we don't want to send the actual commit index to prevent the follower from
817         // possibly committing and applying conflicting entries (those with same index, different term) from a prior
818         // term that weren't replicated to a majority, which would be a violation of raft.
819         //     - if the follower isn't active. In this case we don't know the state of the follower and we send an
820         //       empty AppendEntries as a heart beat to prevent election.
821         //     - if we're in the process of installing a snapshot. In this case we don't send any new entries but still
822         //       need to send AppendEntries to prevent election.
823         //     - if we're in the process of slicing an AppendEntries with a large log entry payload. In this case we
824         //       need to send an empty AppendEntries to prevent election.
825         boolean isInstallingSnaphot = followerLogInformation.getInstallSnapshotState() != null;
826         long leaderCommitIndex = isInstallingSnaphot || followerLogInformation.isLogEntrySlicingInProgress()
827                 || !followerLogInformation.isFollowerActive() ? -1 : context.getCommitIndex();
828
829         long followerNextIndex = followerLogInformation.getNextIndex();
830         AppendEntries appendEntries = new AppendEntries(currentTerm(), context.getId(),
831             getLogEntryIndex(followerNextIndex - 1),
832             getLogEntryTerm(followerNextIndex - 1), entries,
833             leaderCommitIndex, super.getReplicatedToAllIndex(), context.getPayloadVersion(),
834             followerLogInformation.getRaftVersion(), followerLogInformation.needsLeaderAddress(getId()));
835
836         if (!entries.isEmpty() || log.isTraceEnabled()) {
837             log.debug("{}: Sending AppendEntries to follower {}: {}", logName(), followerLogInformation.getId(),
838                     appendEntries);
839         }
840
841         followerLogInformation.setSentCommitIndex(leaderCommitIndex);
842         followerActor.tell(appendEntries, actor());
843     }
844
845     /**
846      * Initiates a snapshot capture to install on a follower.
847      *
848      * <p>
849      * Install Snapshot works as follows
850      *   1. Leader initiates the capture snapshot by calling createSnapshot on the RaftActor.
851      *   2. On receipt of the CaptureSnapshotReply message, the RaftActor persists the snapshot and makes a call to
852      *      the Leader's handleMessage with a SendInstallSnapshot message.
853      *   3. The Leader obtains and stores the Snapshot from the SendInstallSnapshot message and sends it in chunks to
854      *      the Follower via InstallSnapshot messages.
855      *   4. For each chunk, the Follower sends back an InstallSnapshotReply.
856      *   5. On receipt of the InstallSnapshotReply for the last chunk, the Leader marks the install complete for that
857      *      follower.
858      *   6. If another follower requires a snapshot and a snapshot has been collected (via SendInstallSnapshot)
859      *      then send the existing snapshot in chunks to the follower.
860      *
861      * @param followerId the id of the follower.
862      * @return true if capture was initiated, false otherwise.
863      */
864     public boolean initiateCaptureSnapshot(final String followerId) {
865         FollowerLogInformation followerLogInfo = followerToLog.get(followerId);
866         if (snapshotHolder.isPresent()) {
867             // If a snapshot is present in the memory, most likely another install is in progress no need to capture
868             // snapshot. This could happen if another follower needs an install when one is going on.
869             final ActorSelection followerActor = context.getPeerActorSelection(followerId);
870
871             // Note: sendSnapshotChunk will set the LeaderInstallSnapshotState.
872             sendSnapshotChunk(followerActor, followerLogInfo);
873             return true;
874         }
875
876         boolean captureInitiated = context.getSnapshotManager().captureToInstall(context.getReplicatedLog().last(),
877             this.getReplicatedToAllIndex(), followerId);
878         if (captureInitiated) {
879             followerLogInfo.setLeaderInstallSnapshotState(new LeaderInstallSnapshotState(
880                 context.getConfigParams().getSnapshotChunkSize(), logName()));
881         }
882
883         return captureInitiated;
884     }
885
886     private boolean canInstallSnapshot(final long nextIndex) {
887         // If the follower's nextIndex is -1 then we might as well send it a snapshot
888         // Otherwise send it a snapshot only if the nextIndex is not present in the log but is present
889         // in the snapshot
890         return nextIndex == -1 || !context.getReplicatedLog().isPresent(nextIndex)
891                 && context.getReplicatedLog().isInSnapshot(nextIndex);
892
893     }
894
895
896     private void sendInstallSnapshot() {
897         log.debug("{}: sendInstallSnapshot", logName());
898         for (Entry<String, FollowerLogInformation> e : followerToLog.entrySet()) {
899             String followerId = e.getKey();
900             ActorSelection followerActor = context.getPeerActorSelection(followerId);
901             FollowerLogInformation followerLogInfo = e.getValue();
902
903             if (followerActor != null) {
904                 long nextIndex = followerLogInfo.getNextIndex();
905                 if (followerLogInfo.getInstallSnapshotState() != null
906                         || context.getPeerInfo(followerId).getVotingState() == VotingState.VOTING_NOT_INITIALIZED
907                         || canInstallSnapshot(nextIndex)) {
908                     sendSnapshotChunk(followerActor, followerLogInfo);
909                 }
910             }
911         }
912     }
913
914     /**
915      *  Sends a snapshot chunk to a given follower
916      *  InstallSnapshot should qualify as a heartbeat too.
917      */
918     private void sendSnapshotChunk(final ActorSelection followerActor, final FollowerLogInformation followerLogInfo) {
919         if (snapshotHolder.isPresent()) {
920             LeaderInstallSnapshotState installSnapshotState = followerLogInfo.getInstallSnapshotState();
921             if (installSnapshotState == null) {
922                 installSnapshotState = new LeaderInstallSnapshotState(context.getConfigParams().getSnapshotChunkSize(),
923                         logName());
924                 followerLogInfo.setLeaderInstallSnapshotState(installSnapshotState);
925             }
926
927             try {
928                 // Ensure the snapshot bytes are set - this is a no-op.
929                 installSnapshotState.setSnapshotBytes(snapshotHolder.get().getSnapshotBytes());
930
931                 if (!installSnapshotState.canSendNextChunk()) {
932                     return;
933                 }
934
935                 byte[] nextSnapshotChunk = installSnapshotState.getNextChunk();
936
937                 log.debug("{}: next snapshot chunk size for follower {}: {}", logName(), followerLogInfo.getId(),
938                         nextSnapshotChunk.length);
939
940                 int nextChunkIndex = installSnapshotState.incrementChunkIndex();
941                 Optional<ServerConfigurationPayload> serverConfig = Optional.absent();
942                 if (installSnapshotState.isLastChunk(nextChunkIndex)) {
943                     serverConfig = Optional.fromNullable(context.getPeerServerInfo(true));
944                 }
945
946                 sendSnapshotChunk(followerActor, followerLogInfo, nextSnapshotChunk, nextChunkIndex, serverConfig);
947
948                 log.debug("{}: InstallSnapshot sent to follower {}, Chunk: {}/{}", logName(), followerActor.path(),
949                         installSnapshotState.getChunkIndex(), installSnapshotState.getTotalChunks());
950
951             } catch (IOException e) {
952                 log.warn("{}: Unable to send chunk: {}/{}. Reseting snapshot progress. Snapshot state: {}", logName(),
953                         installSnapshotState.getChunkIndex(), installSnapshotState.getTotalChunks(),
954                         installSnapshotState);
955                 installSnapshotState.reset();
956             }
957         }
958     }
959
960     private void sendSnapshotChunk(final ActorSelection followerActor, final FollowerLogInformation followerLogInfo,
961                                    final byte[] snapshotChunk, final int chunkIndex,
962                                    final Optional<ServerConfigurationPayload> serverConfig) {
963         LeaderInstallSnapshotState installSnapshotState = followerLogInfo.getInstallSnapshotState();
964
965         installSnapshotState.startChunkTimer();
966         followerActor.tell(
967                 new InstallSnapshot(currentTerm(), context.getId(),
968                         snapshotHolder.get().getLastIncludedIndex(),
969                         snapshotHolder.get().getLastIncludedTerm(),
970                         snapshotChunk,
971                         chunkIndex,
972                         installSnapshotState.getTotalChunks(),
973                         Optional.of(installSnapshotState.getLastChunkHashCode()),
974                         serverConfig
975                 ).toSerializable(followerLogInfo.getRaftVersion()),
976                 actor()
977         );
978     }
979
980     private boolean resendSnapshotChunk(final ActorSelection followerActor,
981                                         final FollowerLogInformation followerLogInfo) {
982         if (!snapshotHolder.isPresent()) {
983             // Seems like we should never hit this case, but just in case we do, reset the snapshot progress so that it
984             // can restart from the next AppendEntries.
985             log.warn("{}: Attempting to resend snapshot with no snapshot holder present.", logName());
986             followerLogInfo.clearLeaderInstallSnapshotState();
987             return false;
988         }
989
990         LeaderInstallSnapshotState installSnapshotState = followerLogInfo.getInstallSnapshotState();
991         // we are resending, timer needs to be reset
992         installSnapshotState.resetChunkTimer();
993         installSnapshotState.markSendStatus(false);
994
995         sendSnapshotChunk(followerActor, followerLogInfo);
996
997         return true;
998     }
999
1000     private void sendHeartBeat() {
1001         if (!followerToLog.isEmpty()) {
1002             log.trace("{}: Sending heartbeat", logName());
1003             sendAppendEntries(context.getConfigParams().getHeartBeatInterval().toNanos(), true);
1004
1005             appendEntriesMessageSlicer.checkExpiredSlicedMessageState();
1006         }
1007     }
1008
1009     private void stopHeartBeat() {
1010         if (heartbeatSchedule != null && !heartbeatSchedule.isCancelled()) {
1011             heartbeatSchedule.cancel();
1012         }
1013     }
1014
1015     private void scheduleHeartBeat(final FiniteDuration interval) {
1016         if (followerToLog.isEmpty()) {
1017             // Optimization - do not bother scheduling a heartbeat as there are
1018             // no followers
1019             return;
1020         }
1021
1022         stopHeartBeat();
1023
1024         // Schedule a heartbeat. When the scheduler triggers a SendHeartbeat
1025         // message is sent to itself.
1026         // Scheduling the heartbeat only once here because heartbeats do not
1027         // need to be sent if there are other messages being sent to the remote
1028         // actor.
1029         heartbeatSchedule = context.getActorSystem().scheduler().scheduleOnce(
1030             interval, context.getActor(), SendHeartBeat.INSTANCE,
1031             context.getActorSystem().dispatcher(), context.getActor());
1032     }
1033
1034     @Override
1035     public void close() {
1036         stopHeartBeat();
1037         appendEntriesMessageSlicer.close();
1038     }
1039
1040     @Override
1041     public final String getLeaderId() {
1042         return context.getId();
1043     }
1044
1045     @Override
1046     public final short getLeaderPayloadVersion() {
1047         return context.getPayloadVersion();
1048     }
1049
1050     protected boolean isLeaderIsolated() {
1051         int minPresent = getMinIsolatedLeaderPeerCount();
1052         for (FollowerLogInformation followerLogInformation : followerToLog.values()) {
1053             final PeerInfo peerInfo = context.getPeerInfo(followerLogInformation.getId());
1054             if (peerInfo != null && peerInfo.isVoting() && followerLogInformation.isFollowerActive()) {
1055                 --minPresent;
1056                 if (minPresent == 0) {
1057                     return false;
1058                 }
1059             }
1060         }
1061         return minPresent != 0;
1062     }
1063
1064     // called from example-actor for printing the follower-states
1065     public String printFollowerStates() {
1066         final StringBuilder sb = new StringBuilder();
1067
1068         sb.append('[');
1069         for (FollowerLogInformation followerLogInformation : followerToLog.values()) {
1070             sb.append('{');
1071             sb.append(followerLogInformation.getId());
1072             sb.append(" state:");
1073             sb.append(followerLogInformation.isFollowerActive());
1074             sb.append("},");
1075         }
1076         sb.append(']');
1077
1078         return sb.toString();
1079     }
1080
1081     @VisibleForTesting
1082     public FollowerLogInformation getFollower(final String followerId) {
1083         return followerToLog.get(followerId);
1084     }
1085
1086     @VisibleForTesting
1087     public int followerLogSize() {
1088         return followerToLog.size();
1089     }
1090
1091     static class SnapshotHolder {
1092         private final long lastIncludedTerm;
1093         private final long lastIncludedIndex;
1094         private final ByteSource snapshotBytes;
1095
1096         SnapshotHolder(final Snapshot snapshot, final ByteSource snapshotBytes) {
1097             this.lastIncludedTerm = snapshot.getLastAppliedTerm();
1098             this.lastIncludedIndex = snapshot.getLastAppliedIndex();
1099             this.snapshotBytes = snapshotBytes;
1100         }
1101
1102         long getLastIncludedTerm() {
1103             return lastIncludedTerm;
1104         }
1105
1106         long getLastIncludedIndex() {
1107             return lastIncludedIndex;
1108         }
1109
1110         ByteSource getSnapshotBytes() {
1111             return snapshotBytes;
1112         }
1113     }
1114 }