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