ad0fa5eaff235103b200754f769779dd2c0f12dc
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / datastore / Shard.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.datastore;
9
10 import static com.google.common.base.Verify.verify;
11
12 import akka.actor.ActorRef;
13 import akka.actor.ActorSelection;
14 import akka.actor.Cancellable;
15 import akka.actor.ExtendedActorSystem;
16 import akka.actor.Props;
17 import akka.actor.Status;
18 import akka.actor.Status.Failure;
19 import akka.serialization.JavaSerializer;
20 import akka.serialization.Serialization;
21 import com.google.common.annotations.VisibleForTesting;
22 import com.google.common.base.Optional;
23 import com.google.common.base.Preconditions;
24 import com.google.common.base.Ticker;
25 import com.google.common.base.Verify;
26 import com.google.common.collect.ImmutableList;
27 import com.google.common.collect.ImmutableMap;
28 import com.google.common.collect.Range;
29 import java.io.IOException;
30 import java.util.Arrays;
31 import java.util.Collection;
32 import java.util.Collections;
33 import java.util.Map;
34 import java.util.concurrent.TimeUnit;
35 import javax.annotation.Nonnull;
36 import javax.annotation.Nullable;
37 import org.opendaylight.controller.cluster.access.ABIVersion;
38 import org.opendaylight.controller.cluster.access.commands.ConnectClientRequest;
39 import org.opendaylight.controller.cluster.access.commands.ConnectClientSuccess;
40 import org.opendaylight.controller.cluster.access.commands.LocalHistoryRequest;
41 import org.opendaylight.controller.cluster.access.commands.NotLeaderException;
42 import org.opendaylight.controller.cluster.access.commands.OutOfSequenceEnvelopeException;
43 import org.opendaylight.controller.cluster.access.commands.TransactionRequest;
44 import org.opendaylight.controller.cluster.access.concepts.ClientIdentifier;
45 import org.opendaylight.controller.cluster.access.concepts.FrontendIdentifier;
46 import org.opendaylight.controller.cluster.access.concepts.LocalHistoryIdentifier;
47 import org.opendaylight.controller.cluster.access.concepts.Request;
48 import org.opendaylight.controller.cluster.access.concepts.RequestEnvelope;
49 import org.opendaylight.controller.cluster.access.concepts.RequestException;
50 import org.opendaylight.controller.cluster.access.concepts.RequestSuccess;
51 import org.opendaylight.controller.cluster.access.concepts.RetiredGenerationException;
52 import org.opendaylight.controller.cluster.access.concepts.RuntimeRequestException;
53 import org.opendaylight.controller.cluster.access.concepts.SliceableMessage;
54 import org.opendaylight.controller.cluster.access.concepts.TransactionIdentifier;
55 import org.opendaylight.controller.cluster.access.concepts.UnsupportedRequestException;
56 import org.opendaylight.controller.cluster.common.actor.CommonConfig;
57 import org.opendaylight.controller.cluster.common.actor.Dispatchers;
58 import org.opendaylight.controller.cluster.common.actor.Dispatchers.DispatcherType;
59 import org.opendaylight.controller.cluster.common.actor.MessageTracker;
60 import org.opendaylight.controller.cluster.common.actor.MessageTracker.Error;
61 import org.opendaylight.controller.cluster.common.actor.MeteringBehavior;
62 import org.opendaylight.controller.cluster.datastore.exceptions.NoShardLeaderException;
63 import org.opendaylight.controller.cluster.datastore.identifiers.ShardIdentifier;
64 import org.opendaylight.controller.cluster.datastore.jmx.mbeans.shard.ShardDataTreeListenerInfoMXBeanImpl;
65 import org.opendaylight.controller.cluster.datastore.jmx.mbeans.shard.ShardMBeanFactory;
66 import org.opendaylight.controller.cluster.datastore.jmx.mbeans.shard.ShardStats;
67 import org.opendaylight.controller.cluster.datastore.messages.AbortTransaction;
68 import org.opendaylight.controller.cluster.datastore.messages.ActorInitialized;
69 import org.opendaylight.controller.cluster.datastore.messages.BatchedModifications;
70 import org.opendaylight.controller.cluster.datastore.messages.CanCommitTransaction;
71 import org.opendaylight.controller.cluster.datastore.messages.CloseTransactionChain;
72 import org.opendaylight.controller.cluster.datastore.messages.CommitTransaction;
73 import org.opendaylight.controller.cluster.datastore.messages.CreateTransaction;
74 import org.opendaylight.controller.cluster.datastore.messages.CreateTransactionReply;
75 import org.opendaylight.controller.cluster.datastore.messages.ForwardedReadyTransaction;
76 import org.opendaylight.controller.cluster.datastore.messages.GetShardDataTree;
77 import org.opendaylight.controller.cluster.datastore.messages.MakeLeaderLocal;
78 import org.opendaylight.controller.cluster.datastore.messages.OnDemandShardState;
79 import org.opendaylight.controller.cluster.datastore.messages.PeerAddressResolved;
80 import org.opendaylight.controller.cluster.datastore.messages.PersistAbortTransactionPayload;
81 import org.opendaylight.controller.cluster.datastore.messages.ReadyLocalTransaction;
82 import org.opendaylight.controller.cluster.datastore.messages.RegisterDataTreeChangeListener;
83 import org.opendaylight.controller.cluster.datastore.messages.ShardLeaderStateChanged;
84 import org.opendaylight.controller.cluster.datastore.messages.UpdateSchemaContext;
85 import org.opendaylight.controller.cluster.datastore.persisted.AbortTransactionPayload;
86 import org.opendaylight.controller.cluster.datastore.persisted.DatastoreSnapshot;
87 import org.opendaylight.controller.cluster.datastore.persisted.DatastoreSnapshot.ShardSnapshot;
88 import org.opendaylight.controller.cluster.datastore.persisted.DisableTrackingPayload;
89 import org.opendaylight.controller.cluster.datastore.persisted.PurgeTransactionPayload;
90 import org.opendaylight.controller.cluster.messaging.MessageAssembler;
91 import org.opendaylight.controller.cluster.messaging.MessageSlicer;
92 import org.opendaylight.controller.cluster.messaging.SliceOptions;
93 import org.opendaylight.controller.cluster.notifications.LeaderStateChanged;
94 import org.opendaylight.controller.cluster.notifications.RegisterRoleChangeListener;
95 import org.opendaylight.controller.cluster.notifications.RoleChangeNotifier;
96 import org.opendaylight.controller.cluster.raft.LeadershipTransferFailedException;
97 import org.opendaylight.controller.cluster.raft.RaftActor;
98 import org.opendaylight.controller.cluster.raft.RaftActorRecoveryCohort;
99 import org.opendaylight.controller.cluster.raft.RaftActorSnapshotCohort;
100 import org.opendaylight.controller.cluster.raft.RaftState;
101 import org.opendaylight.controller.cluster.raft.base.messages.FollowerInitialSyncUpStatus;
102 import org.opendaylight.controller.cluster.raft.client.messages.OnDemandRaftState;
103 import org.opendaylight.controller.cluster.raft.messages.AppendEntriesReply;
104 import org.opendaylight.controller.cluster.raft.messages.RequestLeadership;
105 import org.opendaylight.controller.cluster.raft.messages.ServerRemoved;
106 import org.opendaylight.controller.cluster.raft.protobuff.client.messages.Payload;
107 import org.opendaylight.yangtools.concepts.Identifier;
108 import org.opendaylight.yangtools.yang.data.api.schema.tree.DataTree;
109 import org.opendaylight.yangtools.yang.data.api.schema.tree.DataValidationFailedException;
110 import org.opendaylight.yangtools.yang.data.api.schema.tree.TreeType;
111 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
112 import org.opendaylight.yangtools.yang.model.api.SchemaContextProvider;
113 import scala.concurrent.duration.FiniteDuration;
114
115 /**
116  * A Shard represents a portion of the logical data tree.
117  *
118  * <p>
119  * Our Shard uses InMemoryDataTree as it's internal representation and delegates all requests it
120  */
121 public class Shard extends RaftActor {
122
123     @VisibleForTesting
124     static final Object TX_COMMIT_TIMEOUT_CHECK_MESSAGE = new Object() {
125         @Override
126         public String toString() {
127             return "txCommitTimeoutCheck";
128         }
129     };
130
131     @VisibleForTesting
132     static final Object GET_SHARD_MBEAN_MESSAGE = new Object() {
133         @Override
134         public String toString() {
135             return "getShardMBeanMessage";
136         }
137     };
138
139     static final Object RESUME_NEXT_PENDING_TRANSACTION = new Object() {
140         @Override
141         public String toString() {
142             return "resumeNextPendingTransaction";
143         }
144     };
145
146     // FIXME: shard names should be encapsulated in their own class and this should be exposed as a constant.
147     public static final String DEFAULT_NAME = "default";
148
149     private static final Collection<ABIVersion> SUPPORTED_ABIVERSIONS;
150
151     static {
152         final ABIVersion[] values = ABIVersion.values();
153         final ABIVersion[] real = Arrays.copyOfRange(values, 1, values.length - 1);
154         SUPPORTED_ABIVERSIONS = ImmutableList.copyOf(real).reverse();
155     }
156
157     // FIXME: make this a dynamic property based on mailbox size and maximum number of clients
158     private static final int CLIENT_MAX_MESSAGES = 1000;
159
160     // The state of this Shard
161     private final ShardDataTree store;
162
163     /// The name of this shard
164     private final String name;
165
166     private final String shardName;
167
168     private final ShardStats shardMBean;
169
170     private final ShardDataTreeListenerInfoMXBeanImpl listenerInfoMXBean;
171
172     private DatastoreContext datastoreContext;
173
174     private final ShardCommitCoordinator commitCoordinator;
175
176     private long transactionCommitTimeout;
177
178     private Cancellable txCommitTimeoutCheckSchedule;
179
180     private final Optional<ActorRef> roleChangeNotifier;
181
182     private final MessageTracker appendEntriesReplyTracker;
183
184     private final ShardTransactionActorFactory transactionActorFactory;
185
186     private final ShardSnapshotCohort snapshotCohort;
187
188     private final DataTreeChangeListenerSupport treeChangeSupport = new DataTreeChangeListenerSupport(this);
189
190     private ShardSnapshot restoreFromSnapshot;
191
192     private final ShardTransactionMessageRetrySupport messageRetrySupport;
193
194     private final FrontendMetadata frontendMetadata;
195     private Map<FrontendIdentifier, LeaderFrontendState> knownFrontends = ImmutableMap.of();
196     private boolean paused;
197
198     private final MessageSlicer responseMessageSlicer;
199     private final Dispatchers dispatchers;
200
201     private final MessageAssembler requestMessageAssembler;
202
203     protected Shard(final AbstractBuilder<?, ?> builder) {
204         super(builder.getId().toString(), builder.getPeerAddresses(),
205                 Optional.of(builder.getDatastoreContext().getShardRaftConfig()), DataStoreVersions.CURRENT_VERSION);
206
207         this.name = builder.getId().toString();
208         this.shardName = builder.getId().getShardName();
209         this.datastoreContext = builder.getDatastoreContext();
210         this.restoreFromSnapshot = builder.getRestoreFromSnapshot();
211         this.frontendMetadata = new FrontendMetadata(name);
212
213         setPersistence(datastoreContext.isPersistent());
214
215         LOG.info("Shard created : {}, persistent : {}", name, datastoreContext.isPersistent());
216
217         ShardDataTreeChangeListenerPublisherActorProxy treeChangeListenerPublisher =
218                 new ShardDataTreeChangeListenerPublisherActorProxy(getContext(), name + "-DTCL-publisher", name);
219         if (builder.getDataTree() != null) {
220             store = new ShardDataTree(this, builder.getSchemaContext(), builder.getDataTree(),
221                     treeChangeListenerPublisher, name, frontendMetadata);
222         } else {
223             store = new ShardDataTree(this, builder.getSchemaContext(), builder.getTreeType(),
224                     builder.getDatastoreContext().getStoreRoot(), treeChangeListenerPublisher, name, frontendMetadata);
225         }
226
227         shardMBean = ShardMBeanFactory.getShardStatsMBean(name, datastoreContext.getDataStoreMXBeanType(), this);
228
229         if (isMetricsCaptureEnabled()) {
230             getContext().become(new MeteringBehavior(this));
231         }
232
233         commitCoordinator = new ShardCommitCoordinator(store, LOG, this.name);
234
235         setTransactionCommitTimeout();
236
237         // create a notifier actor for each cluster member
238         roleChangeNotifier = createRoleChangeNotifier(name);
239
240         appendEntriesReplyTracker = new MessageTracker(AppendEntriesReply.class,
241                 getRaftActorContext().getConfigParams().getIsolatedCheckIntervalInMillis());
242
243         dispatchers = new Dispatchers(context().system().dispatchers());
244         transactionActorFactory = new ShardTransactionActorFactory(store, datastoreContext,
245             dispatchers.getDispatcherPath(Dispatchers.DispatcherType.Transaction),
246                 self(), getContext(), shardMBean, builder.getId().getShardName());
247
248         snapshotCohort = ShardSnapshotCohort.create(getContext(), builder.getId().getMemberName(), store, LOG,
249             this.name);
250
251         messageRetrySupport = new ShardTransactionMessageRetrySupport(this);
252
253         responseMessageSlicer = MessageSlicer.builder().logContext(this.name)
254                 .messageSliceSize(datastoreContext.getMaximumMessageSliceSize())
255                 .fileBackedStreamFactory(getRaftActorContext().getFileBackedOutputStreamFactory())
256                 .expireStateAfterInactivity(2, TimeUnit.MINUTES).build();
257
258         requestMessageAssembler = MessageAssembler.builder().logContext(this.name)
259                 .fileBackedStreamFactory(getRaftActorContext().getFileBackedOutputStreamFactory())
260                 .assembledMessageCallback((message, sender) -> self().tell(message, sender))
261                 .expireStateAfterInactivity(datastoreContext.getRequestTimeout(), TimeUnit.NANOSECONDS).build();
262
263         listenerInfoMXBean = new ShardDataTreeListenerInfoMXBeanImpl(name, datastoreContext.getDataStoreMXBeanType(),
264                 self());
265         listenerInfoMXBean.register();
266     }
267
268     private void setTransactionCommitTimeout() {
269         transactionCommitTimeout = TimeUnit.MILLISECONDS.convert(
270                 datastoreContext.getShardTransactionCommitTimeoutInSeconds(), TimeUnit.SECONDS) / 2;
271     }
272
273     private Optional<ActorRef> createRoleChangeNotifier(final String shardId) {
274         ActorRef shardRoleChangeNotifier = this.getContext().actorOf(
275             RoleChangeNotifier.getProps(shardId), shardId + "-notifier");
276         return Optional.of(shardRoleChangeNotifier);
277     }
278
279     @Override
280     public void postStop() {
281         LOG.info("Stopping Shard {}", persistenceId());
282
283         super.postStop();
284
285         messageRetrySupport.close();
286
287         if (txCommitTimeoutCheckSchedule != null) {
288             txCommitTimeoutCheckSchedule.cancel();
289         }
290
291         commitCoordinator.abortPendingTransactions("Transaction aborted due to shutdown.", this);
292
293         shardMBean.unregisterMBean();
294         listenerInfoMXBean.unregister();
295     }
296
297     @Override
298     protected void handleRecover(final Object message) {
299         LOG.debug("{}: onReceiveRecover: Received message {} from {}", persistenceId(), message.getClass(),
300             getSender());
301
302         super.handleRecover(message);
303         if (LOG.isTraceEnabled()) {
304             appendEntriesReplyTracker.begin();
305         }
306     }
307
308     @Override
309     protected void handleNonRaftCommand(final Object message) {
310         try (MessageTracker.Context context = appendEntriesReplyTracker.received(message)) {
311             final Optional<Error> maybeError = context.error();
312             if (maybeError.isPresent()) {
313                 LOG.trace("{} : AppendEntriesReply failed to arrive at the expected interval {}", persistenceId(),
314                     maybeError.get());
315             }
316
317             store.resetTransactionBatch();
318
319             if (message instanceof RequestEnvelope) {
320                 handleRequestEnvelope((RequestEnvelope)message);
321             } else if (MessageAssembler.isHandledMessage(message)) {
322                 handleRequestAssemblerMessage(message);
323             } else if (message instanceof ConnectClientRequest) {
324                 handleConnectClient((ConnectClientRequest)message);
325             } else if (CreateTransaction.isSerializedType(message)) {
326                 handleCreateTransaction(message);
327             } else if (message instanceof BatchedModifications) {
328                 handleBatchedModifications((BatchedModifications)message);
329             } else if (message instanceof ForwardedReadyTransaction) {
330                 handleForwardedReadyTransaction((ForwardedReadyTransaction) message);
331             } else if (message instanceof ReadyLocalTransaction) {
332                 handleReadyLocalTransaction((ReadyLocalTransaction)message);
333             } else if (CanCommitTransaction.isSerializedType(message)) {
334                 handleCanCommitTransaction(CanCommitTransaction.fromSerializable(message));
335             } else if (CommitTransaction.isSerializedType(message)) {
336                 handleCommitTransaction(CommitTransaction.fromSerializable(message));
337             } else if (AbortTransaction.isSerializedType(message)) {
338                 handleAbortTransaction(AbortTransaction.fromSerializable(message));
339             } else if (CloseTransactionChain.isSerializedType(message)) {
340                 closeTransactionChain(CloseTransactionChain.fromSerializable(message));
341             } else if (message instanceof RegisterDataTreeChangeListener) {
342                 treeChangeSupport.onMessage((RegisterDataTreeChangeListener) message, isLeader(), hasLeader());
343             } else if (message instanceof UpdateSchemaContext) {
344                 updateSchemaContext((UpdateSchemaContext) message);
345             } else if (message instanceof PeerAddressResolved) {
346                 PeerAddressResolved resolved = (PeerAddressResolved) message;
347                 setPeerAddress(resolved.getPeerId(), resolved.getPeerAddress());
348             } else if (TX_COMMIT_TIMEOUT_CHECK_MESSAGE.equals(message)) {
349                 commitTimeoutCheck();
350             } else if (message instanceof DatastoreContext) {
351                 onDatastoreContext((DatastoreContext)message);
352             } else if (message instanceof RegisterRoleChangeListener) {
353                 roleChangeNotifier.get().forward(message, context());
354             } else if (message instanceof FollowerInitialSyncUpStatus) {
355                 shardMBean.setFollowerInitialSyncStatus(((FollowerInitialSyncUpStatus) message).isInitialSyncDone());
356                 context().parent().tell(message, self());
357             } else if (GET_SHARD_MBEAN_MESSAGE.equals(message)) {
358                 sender().tell(getShardMBean(), self());
359             } else if (message instanceof GetShardDataTree) {
360                 sender().tell(store.getDataTree(), self());
361             } else if (message instanceof ServerRemoved) {
362                 context().parent().forward(message, context());
363             } else if (ShardTransactionMessageRetrySupport.TIMER_MESSAGE_CLASS.isInstance(message)) {
364                 messageRetrySupport.onTimerMessage(message);
365             } else if (message instanceof DataTreeCohortActorRegistry.CohortRegistryCommand) {
366                 store.processCohortRegistryCommand(getSender(),
367                         (DataTreeCohortActorRegistry.CohortRegistryCommand) message);
368             } else if (message instanceof PersistAbortTransactionPayload) {
369                 final TransactionIdentifier txId = ((PersistAbortTransactionPayload) message).getTransactionId();
370                 persistPayload(txId, AbortTransactionPayload.create(txId,
371                     datastoreContext.getInitialPayloadSerializedBufferCapacity()), true);
372                 persistPayload(txId, PurgeTransactionPayload.create(txId,
373                     datastoreContext.getInitialPayloadSerializedBufferCapacity()), false);
374             } else if (message instanceof MakeLeaderLocal) {
375                 onMakeLeaderLocal();
376             } else if (RESUME_NEXT_PENDING_TRANSACTION.equals(message)) {
377                 store.resumeNextPendingTransaction();
378             } else if (!responseMessageSlicer.handleMessage(message)) {
379                 super.handleNonRaftCommand(message);
380             }
381         }
382     }
383
384     private void handleRequestAssemblerMessage(final Object message) {
385         dispatchers.getDispatcher(DispatcherType.Serialization).execute(() -> {
386             JavaSerializer.currentSystem().value_$eq((ExtendedActorSystem) context().system());
387             requestMessageAssembler.handleMessage(message, self());
388         });
389     }
390
391     @SuppressWarnings("checkstyle:IllegalCatch")
392     private void handleRequestEnvelope(final RequestEnvelope envelope) {
393         final long now = ticker().read();
394         try {
395             final RequestSuccess<?, ?> success = handleRequest(envelope, now);
396             if (success != null) {
397                 final long executionTimeNanos = ticker().read() - now;
398                 if (success instanceof SliceableMessage) {
399                     dispatchers.getDispatcher(DispatcherType.Serialization).execute(() ->
400                         responseMessageSlicer.slice(SliceOptions.builder().identifier(success.getTarget())
401                             .message(envelope.newSuccessEnvelope(success, executionTimeNanos))
402                             .sendTo(envelope.getMessage().getReplyTo()).replyTo(self())
403                             .onFailureCallback(t -> LOG.warn("Error slicing response {}", success, t)).build()));
404                 } else {
405                     envelope.sendSuccess(success, executionTimeNanos);
406                 }
407             }
408         } catch (RequestException e) {
409             LOG.debug("{}: request {} failed", persistenceId(), envelope, e);
410             envelope.sendFailure(e, ticker().read() - now);
411         } catch (Exception e) {
412             LOG.debug("{}: request {} caused failure", persistenceId(), envelope, e);
413             envelope.sendFailure(new RuntimeRequestException("Request failed to process", e),
414                 ticker().read() - now);
415         }
416     }
417
418     private void commitTimeoutCheck() {
419         store.checkForExpiredTransactions(transactionCommitTimeout, this::updateAccess);
420         commitCoordinator.checkForExpiredTransactions(transactionCommitTimeout, this);
421         requestMessageAssembler.checkExpiredAssembledMessageState();
422     }
423
424     private Optional<Long> updateAccess(final SimpleShardDataTreeCohort cohort) {
425         final FrontendIdentifier frontend = cohort.getIdentifier().getHistoryId().getClientId().getFrontendId();
426         final LeaderFrontendState state = knownFrontends.get(frontend);
427         if (state == null) {
428             // Not tell-based protocol, do nothing
429             return Optional.absent();
430         }
431
432         if (isIsolatedLeader()) {
433             // We are isolated and no new request can come through until we emerge from it. We are still updating
434             // liveness of frontend when we see it attempting to communicate. Use the last access timer.
435             return Optional.of(state.getLastSeenTicks());
436         }
437
438         // If this frontend has freshly connected, give it some time to catch up before killing its transactions.
439         return Optional.of(state.getLastConnectTicks());
440     }
441
442     private void disableTracking(final DisableTrackingPayload payload) {
443         final ClientIdentifier clientId = payload.getIdentifier();
444         LOG.debug("{}: disabling tracking of {}", persistenceId(), clientId);
445         frontendMetadata.disableTracking(clientId);
446
447         if (isLeader()) {
448             final FrontendIdentifier frontendId = clientId.getFrontendId();
449             final LeaderFrontendState frontend = knownFrontends.get(frontendId);
450             if (frontend != null) {
451                 if (clientId.equals(frontend.getIdentifier())) {
452                     if (!(frontend instanceof LeaderFrontendState.Disabled)) {
453                         verify(knownFrontends.replace(frontendId, frontend,
454                             new LeaderFrontendState.Disabled(persistenceId(), clientId, store)));
455                         LOG.debug("{}: leader state for {} disabled", persistenceId(), clientId);
456                     } else {
457                         LOG.debug("{}: leader state {} is already disabled", persistenceId(), frontend);
458                     }
459                 } else {
460                     LOG.debug("{}: leader state {} does not match {}", persistenceId(), frontend, clientId);
461                 }
462             } else {
463                 LOG.debug("{}: leader state for {} not found", persistenceId(), clientId);
464             }
465         }
466     }
467
468     private void onMakeLeaderLocal() {
469         LOG.debug("{}: onMakeLeaderLocal received", persistenceId());
470         if (isLeader()) {
471             getSender().tell(new Status.Success(null), getSelf());
472             return;
473         }
474
475         final ActorSelection leader = getLeader();
476
477         if (leader == null) {
478             // Leader is not present. The cluster is most likely trying to
479             // elect a leader and we should let that run its normal course
480
481             // TODO we can wait for the election to complete and retry the
482             // request. We can also let the caller retry by sending a flag
483             // in the response indicating the request is "reTryable".
484             getSender().tell(new Failure(
485                     new LeadershipTransferFailedException("We cannot initiate leadership transfer to local node. "
486                             + "Currently there is no leader for " + persistenceId())),
487                     getSelf());
488             return;
489         }
490
491         leader.tell(new RequestLeadership(getId(), getSender()), getSelf());
492     }
493
494     // Acquire our frontend tracking handle and verify generation matches
495     @Nullable
496     private LeaderFrontendState findFrontend(final ClientIdentifier clientId) throws RequestException {
497         final LeaderFrontendState existing = knownFrontends.get(clientId.getFrontendId());
498         if (existing != null) {
499             final int cmp = Long.compareUnsigned(existing.getIdentifier().getGeneration(), clientId.getGeneration());
500             if (cmp == 0) {
501                 existing.touch();
502                 return existing;
503             }
504             if (cmp > 0) {
505                 LOG.debug("{}: rejecting request from outdated client {}", persistenceId(), clientId);
506                 throw new RetiredGenerationException(clientId.getGeneration(),
507                     existing.getIdentifier().getGeneration());
508             }
509
510             LOG.info("{}: retiring state {}, outdated by request from client {}", persistenceId(), existing, clientId);
511             existing.retire();
512             knownFrontends.remove(clientId.getFrontendId());
513         } else {
514             LOG.debug("{}: client {} is not yet known", persistenceId(), clientId);
515         }
516
517         return null;
518     }
519
520     private LeaderFrontendState getFrontend(final ClientIdentifier clientId) throws RequestException {
521         final LeaderFrontendState ret = findFrontend(clientId);
522         if (ret != null) {
523             return ret;
524         }
525
526         // TODO: a dedicated exception would be better, but this is technically true, too
527         throw new OutOfSequenceEnvelopeException(0);
528     }
529
530     @Nonnull
531     private static ABIVersion selectVersion(final ConnectClientRequest message) {
532         final Range<ABIVersion> clientRange = Range.closed(message.getMinVersion(), message.getMaxVersion());
533         for (ABIVersion v : SUPPORTED_ABIVERSIONS) {
534             if (clientRange.contains(v)) {
535                 return v;
536             }
537         }
538
539         throw new IllegalArgumentException(String.format(
540             "No common version between backend versions %s and client versions %s", SUPPORTED_ABIVERSIONS,
541             clientRange));
542     }
543
544     @SuppressWarnings("checkstyle:IllegalCatch")
545     private void handleConnectClient(final ConnectClientRequest message) {
546         try {
547             final ClientIdentifier clientId = message.getTarget();
548             final LeaderFrontendState existing = findFrontend(clientId);
549             if (existing != null) {
550                 existing.touch();
551             }
552
553             if (!isLeader() || !isLeaderActive()) {
554                 LOG.info("{}: not currently leader, rejecting request {}. isLeader: {}, isLeaderActive: {},"
555                                 + "isLeadershipTransferInProgress: {}.",
556                         persistenceId(), message, isLeader(), isLeaderActive(), isLeadershipTransferInProgress());
557                 throw new NotLeaderException(getSelf());
558             }
559
560             final ABIVersion selectedVersion = selectVersion(message);
561             final LeaderFrontendState frontend;
562             if (existing == null) {
563                 frontend = new LeaderFrontendState.Enabled(persistenceId(), clientId, store);
564                 knownFrontends.put(clientId.getFrontendId(), frontend);
565                 LOG.debug("{}: created state {} for client {}", persistenceId(), frontend, clientId);
566             } else {
567                 frontend = existing;
568             }
569
570             frontend.reconnect();
571             message.getReplyTo().tell(new ConnectClientSuccess(message.getTarget(), message.getSequence(), getSelf(),
572                 ImmutableList.of(), store.getDataTree(), CLIENT_MAX_MESSAGES).toVersion(selectedVersion),
573                 ActorRef.noSender());
574         } catch (RequestException | RuntimeException e) {
575             message.getReplyTo().tell(new Failure(e), ActorRef.noSender());
576         }
577     }
578
579     @Nullable
580     private RequestSuccess<?, ?> handleRequest(final RequestEnvelope envelope, final long now)
581             throws RequestException {
582         // We are not the leader, hence we want to fail-fast.
583         if (!isLeader() || paused || !isLeaderActive()) {
584             LOG.debug("{}: not currently active leader, rejecting request {}. isLeader: {}, isLeaderActive: {},"
585                             + "isLeadershipTransferInProgress: {}, paused: {}",
586                     persistenceId(), envelope, isLeader(), isLeaderActive(), isLeadershipTransferInProgress(), paused);
587             throw new NotLeaderException(getSelf());
588         }
589
590         final Request<?, ?> request = envelope.getMessage();
591         if (request instanceof TransactionRequest) {
592             final TransactionRequest<?> txReq = (TransactionRequest<?>)request;
593             final ClientIdentifier clientId = txReq.getTarget().getHistoryId().getClientId();
594             return getFrontend(clientId).handleTransactionRequest(txReq, envelope, now);
595         } else if (request instanceof LocalHistoryRequest) {
596             final LocalHistoryRequest<?> lhReq = (LocalHistoryRequest<?>)request;
597             final ClientIdentifier clientId = lhReq.getTarget().getClientId();
598             return getFrontend(clientId).handleLocalHistoryRequest(lhReq, envelope, now);
599         } else {
600             LOG.warn("{}: rejecting unsupported request {}", persistenceId(), request);
601             throw new UnsupportedRequestException(request);
602         }
603     }
604
605     private boolean hasLeader() {
606         return getLeaderId() != null;
607     }
608
609     public int getPendingTxCommitQueueSize() {
610         return store.getQueueSize();
611     }
612
613     public int getCohortCacheSize() {
614         return commitCoordinator.getCohortCacheSize();
615     }
616
617     @Override
618     protected Optional<ActorRef> getRoleChangeNotifier() {
619         return roleChangeNotifier;
620     }
621
622     String getShardName() {
623         return shardName;
624     }
625
626     @Override
627     protected LeaderStateChanged newLeaderStateChanged(final String memberId, final String leaderId,
628             final short leaderPayloadVersion) {
629         return isLeader() ? new ShardLeaderStateChanged(memberId, leaderId, store.getDataTree(), leaderPayloadVersion)
630                 : new ShardLeaderStateChanged(memberId, leaderId, leaderPayloadVersion);
631     }
632
633     protected void onDatastoreContext(final DatastoreContext context) {
634         datastoreContext = context;
635
636         setTransactionCommitTimeout();
637
638         setPersistence(datastoreContext.isPersistent());
639
640         updateConfigParams(datastoreContext.getShardRaftConfig());
641     }
642
643     // applyState() will be invoked once consensus is reached on the payload
644     void persistPayload(final Identifier id, final Payload payload, final boolean batchHint) {
645         boolean canSkipPayload = !hasFollowers() && !persistence().isRecoveryApplicable();
646         if (canSkipPayload) {
647             applyState(self(), id, payload);
648         } else {
649             // We are faking the sender
650             persistData(self(), id, payload, batchHint);
651         }
652     }
653
654     private void handleCommitTransaction(final CommitTransaction commit) {
655         if (isLeader()) {
656             commitCoordinator.handleCommit(commit.getTransactionId(), getSender(), this);
657         } else {
658             ActorSelection leader = getLeader();
659             if (leader == null) {
660                 messageRetrySupport.addMessageToRetry(commit, getSender(),
661                         "Could not commit transaction " + commit.getTransactionId());
662             } else {
663                 LOG.debug("{}: Forwarding CommitTransaction to leader {}", persistenceId(), leader);
664                 leader.forward(commit, getContext());
665             }
666         }
667     }
668
669     private void handleCanCommitTransaction(final CanCommitTransaction canCommit) {
670         LOG.debug("{}: Can committing transaction {}", persistenceId(), canCommit.getTransactionId());
671
672         if (isLeader()) {
673             commitCoordinator.handleCanCommit(canCommit.getTransactionId(), getSender(), this);
674         } else {
675             ActorSelection leader = getLeader();
676             if (leader == null) {
677                 messageRetrySupport.addMessageToRetry(canCommit, getSender(),
678                         "Could not canCommit transaction " + canCommit.getTransactionId());
679             } else {
680                 LOG.debug("{}: Forwarding CanCommitTransaction to leader {}", persistenceId(), leader);
681                 leader.forward(canCommit, getContext());
682             }
683         }
684     }
685
686     @SuppressWarnings("checkstyle:IllegalCatch")
687     protected void handleBatchedModificationsLocal(final BatchedModifications batched, final ActorRef sender) {
688         try {
689             commitCoordinator.handleBatchedModifications(batched, sender, this);
690         } catch (Exception e) {
691             LOG.error("{}: Error handling BatchedModifications for Tx {}", persistenceId(),
692                     batched.getTransactionId(), e);
693             sender.tell(new Failure(e), getSelf());
694         }
695     }
696
697     private void handleBatchedModifications(final BatchedModifications batched) {
698         // This message is sent to prepare the modifications transaction directly on the Shard as an
699         // optimization to avoid the extra overhead of a separate ShardTransaction actor. On the last
700         // BatchedModifications message, the caller sets the ready flag in the message indicating
701         // modifications are complete. The reply contains the cohort actor path (this actor) for the caller
702         // to initiate the 3-phase commit. This also avoids the overhead of sending an additional
703         // ReadyTransaction message.
704
705         // If we're not the leader then forward to the leader. This is a safety measure - we shouldn't
706         // normally get here if we're not the leader as the front-end (TransactionProxy) should determine
707         // the primary/leader shard. However with timing and caching on the front-end, there's a small
708         // window where it could have a stale leader during leadership transitions.
709         //
710         boolean isLeaderActive = isLeaderActive();
711         if (isLeader() && isLeaderActive) {
712             handleBatchedModificationsLocal(batched, getSender());
713         } else {
714             ActorSelection leader = getLeader();
715             if (!isLeaderActive || leader == null) {
716                 messageRetrySupport.addMessageToRetry(batched, getSender(),
717                         "Could not process BatchedModifications " + batched.getTransactionId());
718             } else {
719                 // If this is not the first batch and leadership changed in between batched messages,
720                 // we need to reconstruct previous BatchedModifications from the transaction
721                 // DataTreeModification, honoring the max batched modification count, and forward all the
722                 // previous BatchedModifications to the new leader.
723                 Collection<BatchedModifications> newModifications = commitCoordinator
724                         .createForwardedBatchedModifications(batched,
725                                 datastoreContext.getShardBatchedModificationCount());
726
727                 LOG.debug("{}: Forwarding {} BatchedModifications to leader {}", persistenceId(),
728                         newModifications.size(), leader);
729
730                 for (BatchedModifications bm : newModifications) {
731                     leader.forward(bm, getContext());
732                 }
733             }
734         }
735     }
736
737     private boolean failIfIsolatedLeader(final ActorRef sender) {
738         if (isIsolatedLeader()) {
739             sender.tell(new Failure(new NoShardLeaderException(String.format(
740                     "Shard %s was the leader but has lost contact with all of its followers. Either all"
741                     + " other follower nodes are down or this node is isolated by a network partition.",
742                     persistenceId()))), getSelf());
743             return true;
744         }
745
746         return false;
747     }
748
749     protected boolean isIsolatedLeader() {
750         return getRaftState() == RaftState.IsolatedLeader;
751     }
752
753     @SuppressWarnings("checkstyle:IllegalCatch")
754     private void handleReadyLocalTransaction(final ReadyLocalTransaction message) {
755         LOG.debug("{}: handleReadyLocalTransaction for {}", persistenceId(), message.getTransactionId());
756
757         boolean isLeaderActive = isLeaderActive();
758         if (isLeader() && isLeaderActive) {
759             try {
760                 commitCoordinator.handleReadyLocalTransaction(message, getSender(), this);
761             } catch (Exception e) {
762                 LOG.error("{}: Error handling ReadyLocalTransaction for Tx {}", persistenceId(),
763                         message.getTransactionId(), e);
764                 getSender().tell(new Failure(e), getSelf());
765             }
766         } else {
767             ActorSelection leader = getLeader();
768             if (!isLeaderActive || leader == null) {
769                 messageRetrySupport.addMessageToRetry(message, getSender(),
770                         "Could not process ready local transaction " + message.getTransactionId());
771             } else {
772                 LOG.debug("{}: Forwarding ReadyLocalTransaction to leader {}", persistenceId(), leader);
773                 message.setRemoteVersion(getCurrentBehavior().getLeaderPayloadVersion());
774                 leader.forward(message, getContext());
775             }
776         }
777     }
778
779     private void handleForwardedReadyTransaction(final ForwardedReadyTransaction forwardedReady) {
780         LOG.debug("{}: handleForwardedReadyTransaction for {}", persistenceId(), forwardedReady.getTransactionId());
781
782         boolean isLeaderActive = isLeaderActive();
783         if (isLeader() && isLeaderActive) {
784             commitCoordinator.handleForwardedReadyTransaction(forwardedReady, getSender(), this);
785         } else {
786             ActorSelection leader = getLeader();
787             if (!isLeaderActive || leader == null) {
788                 messageRetrySupport.addMessageToRetry(forwardedReady, getSender(),
789                         "Could not process forwarded ready transaction " + forwardedReady.getTransactionId());
790             } else {
791                 LOG.debug("{}: Forwarding ForwardedReadyTransaction to leader {}", persistenceId(), leader);
792
793                 ReadyLocalTransaction readyLocal = new ReadyLocalTransaction(forwardedReady.getTransactionId(),
794                         forwardedReady.getTransaction().getSnapshot(), forwardedReady.isDoImmediateCommit(),
795                         forwardedReady.getParticipatingShardNames());
796                 readyLocal.setRemoteVersion(getCurrentBehavior().getLeaderPayloadVersion());
797                 leader.forward(readyLocal, getContext());
798             }
799         }
800     }
801
802     private void handleAbortTransaction(final AbortTransaction abort) {
803         doAbortTransaction(abort.getTransactionId(), getSender());
804     }
805
806     void doAbortTransaction(final Identifier transactionID, final ActorRef sender) {
807         commitCoordinator.handleAbort(transactionID, sender, this);
808     }
809
810     private void handleCreateTransaction(final Object message) {
811         if (isLeader()) {
812             createTransaction(CreateTransaction.fromSerializable(message));
813         } else if (getLeader() != null) {
814             getLeader().forward(message, getContext());
815         } else {
816             getSender().tell(new Failure(new NoShardLeaderException(
817                     "Could not create a shard transaction", persistenceId())), getSelf());
818         }
819     }
820
821     private void closeTransactionChain(final CloseTransactionChain closeTransactionChain) {
822         if (isLeader()) {
823             final LocalHistoryIdentifier id = closeTransactionChain.getIdentifier();
824             // FIXME: CONTROLLER-1628: stage purge once no transactions are present
825             store.closeTransactionChain(id, null);
826             store.purgeTransactionChain(id, null);
827         } else if (getLeader() != null) {
828             getLeader().forward(closeTransactionChain, getContext());
829         } else {
830             LOG.warn("{}: Could not close transaction {}", persistenceId(), closeTransactionChain.getIdentifier());
831         }
832     }
833
834     @SuppressWarnings("checkstyle:IllegalCatch")
835     private void createTransaction(final CreateTransaction createTransaction) {
836         try {
837             if (TransactionType.fromInt(createTransaction.getTransactionType()) != TransactionType.READ_ONLY
838                     && failIfIsolatedLeader(getSender())) {
839                 return;
840             }
841
842             ActorRef transactionActor = createTransaction(createTransaction.getTransactionType(),
843                 createTransaction.getTransactionId());
844
845             getSender().tell(new CreateTransactionReply(Serialization.serializedActorPath(transactionActor),
846                     createTransaction.getTransactionId(), createTransaction.getVersion()).toSerializable(), getSelf());
847         } catch (Exception e) {
848             getSender().tell(new Failure(e), getSelf());
849         }
850     }
851
852     private ActorRef createTransaction(final int transactionType, final TransactionIdentifier transactionId) {
853         LOG.debug("{}: Creating transaction : {} ", persistenceId(), transactionId);
854         return transactionActorFactory.newShardTransaction(TransactionType.fromInt(transactionType),
855             transactionId);
856     }
857
858     private void updateSchemaContext(final UpdateSchemaContext message) {
859         updateSchemaContext(message.getSchemaContext());
860     }
861
862     @VisibleForTesting
863     void updateSchemaContext(final SchemaContext schemaContext) {
864         store.updateSchemaContext(schemaContext);
865     }
866
867     private boolean isMetricsCaptureEnabled() {
868         CommonConfig config = new CommonConfig(getContext().system().settings().config());
869         return config.isMetricCaptureEnabled();
870     }
871
872     @Override
873     @VisibleForTesting
874     public RaftActorSnapshotCohort getRaftActorSnapshotCohort() {
875         return snapshotCohort;
876     }
877
878     @Override
879     @Nonnull
880     protected RaftActorRecoveryCohort getRaftActorRecoveryCohort() {
881         if (restoreFromSnapshot == null) {
882             return ShardRecoveryCoordinator.create(store, persistenceId(), LOG);
883         }
884
885         return ShardRecoveryCoordinator.forSnapshot(store, persistenceId(), LOG, restoreFromSnapshot.getSnapshot());
886     }
887
888     @Override
889     protected void onRecoveryComplete() {
890         restoreFromSnapshot = null;
891
892         //notify shard manager
893         getContext().parent().tell(new ActorInitialized(), getSelf());
894
895         // Being paranoid here - this method should only be called once but just in case...
896         if (txCommitTimeoutCheckSchedule == null) {
897             // Schedule a message to be periodically sent to check if the current in-progress
898             // transaction should be expired and aborted.
899             FiniteDuration period = FiniteDuration.create(transactionCommitTimeout / 3, TimeUnit.MILLISECONDS);
900             txCommitTimeoutCheckSchedule = getContext().system().scheduler().schedule(
901                     period, period, getSelf(),
902                     TX_COMMIT_TIMEOUT_CHECK_MESSAGE, getContext().dispatcher(), ActorRef.noSender());
903         }
904     }
905
906     @Override
907     protected void applyState(final ActorRef clientActor, final Identifier identifier, final Object data) {
908         if (data instanceof Payload) {
909             if (data instanceof DisableTrackingPayload) {
910                 disableTracking((DisableTrackingPayload) data);
911                 return;
912             }
913
914             try {
915                 store.applyReplicatedPayload(identifier, (Payload)data);
916             } catch (DataValidationFailedException | IOException e) {
917                 LOG.error("{}: Error applying replica {}", persistenceId(), identifier, e);
918             }
919         } else {
920             LOG.error("{}: Unknown state for {} received {}", persistenceId(), identifier, data);
921         }
922     }
923
924     @Override
925     protected void onStateChanged() {
926         boolean isLeader = isLeader();
927         boolean hasLeader = hasLeader();
928         treeChangeSupport.onLeadershipChange(isLeader, hasLeader);
929
930         // If this actor is no longer the leader close all the transaction chains
931         if (!isLeader) {
932             if (LOG.isDebugEnabled()) {
933                 LOG.debug(
934                     "{}: onStateChanged: Closing all transaction chains because shard {} is no longer the leader",
935                     persistenceId(), getId());
936             }
937
938             paused = false;
939             store.purgeLeaderState();
940         }
941
942         if (hasLeader && !isIsolatedLeader()) {
943             messageRetrySupport.retryMessages();
944         }
945     }
946
947     @Override
948     protected void onLeaderChanged(final String oldLeader, final String newLeader) {
949         shardMBean.incrementLeadershipChangeCount();
950         paused = false;
951
952         if (!isLeader()) {
953             if (!knownFrontends.isEmpty()) {
954                 LOG.debug("{}: removing frontend state for {}", persistenceId(), knownFrontends.keySet());
955                 knownFrontends = ImmutableMap.of();
956             }
957
958             requestMessageAssembler.close();
959
960             if (!hasLeader()) {
961                 // No leader anywhere, nothing else to do
962                 return;
963             }
964
965             // Another leader was elected. If we were the previous leader and had pending transactions, convert
966             // them to transaction messages and send to the new leader.
967             ActorSelection leader = getLeader();
968             if (leader != null) {
969                 Collection<?> messagesToForward = convertPendingTransactionsToMessages();
970
971                 if (!messagesToForward.isEmpty()) {
972                     LOG.debug("{}: Forwarding {} pending transaction messages to leader {}", persistenceId(),
973                             messagesToForward.size(), leader);
974
975                     for (Object message : messagesToForward) {
976                         LOG.debug("{}: Forwarding pending transaction message {}", persistenceId(), message);
977
978                         leader.tell(message, self());
979                     }
980                 }
981             } else {
982                 commitCoordinator.abortPendingTransactions("The transacton was aborted due to inflight leadership "
983                         + "change and the leader address isn't available.", this);
984             }
985         } else {
986             // We have become the leader, we need to reconstruct frontend state
987             knownFrontends = Verify.verifyNotNull(frontendMetadata.toLeaderState(this));
988             LOG.debug("{}: became leader with frontend state for {}", persistenceId(), knownFrontends.keySet());
989         }
990
991         if (!isIsolatedLeader()) {
992             messageRetrySupport.retryMessages();
993         }
994     }
995
996     /**
997      * Clears all pending transactions and converts them to messages to be forwarded to a new leader.
998      *
999      * @return the converted messages
1000      */
1001     public Collection<?> convertPendingTransactionsToMessages() {
1002         return commitCoordinator.convertPendingTransactionsToMessages(
1003                 datastoreContext.getShardBatchedModificationCount());
1004     }
1005
1006     @Override
1007     protected void pauseLeader(final Runnable operation) {
1008         LOG.debug("{}: In pauseLeader, operation: {}", persistenceId(), operation);
1009         paused = true;
1010
1011         // Tell-based protocol can replay transaction state, so it is safe to blow it up when we are paused.
1012         knownFrontends.values().forEach(LeaderFrontendState::retire);
1013         knownFrontends = ImmutableMap.of();
1014
1015         store.setRunOnPendingTransactionsComplete(operation);
1016     }
1017
1018     @Override
1019     protected void unpauseLeader() {
1020         LOG.debug("{}: In unpauseLeader", persistenceId());
1021         paused = false;
1022
1023         store.setRunOnPendingTransactionsComplete(null);
1024
1025         // Restore tell-based protocol state as if we were becoming the leader
1026         knownFrontends = Verify.verifyNotNull(frontendMetadata.toLeaderState(this));
1027     }
1028
1029     @Override
1030     protected OnDemandRaftState.AbstractBuilder<?, ?> newOnDemandRaftStateBuilder() {
1031         return OnDemandShardState.newBuilder().treeChangeListenerActors(treeChangeSupport.getListenerActors())
1032                 .commitCohortActors(store.getCohortActors());
1033     }
1034
1035     @Override
1036     public String persistenceId() {
1037         return this.name;
1038     }
1039
1040     @VisibleForTesting
1041     ShardCommitCoordinator getCommitCoordinator() {
1042         return commitCoordinator;
1043     }
1044
1045     public DatastoreContext getDatastoreContext() {
1046         return datastoreContext;
1047     }
1048
1049     @VisibleForTesting
1050     public ShardDataTree getDataStore() {
1051         return store;
1052     }
1053
1054     @VisibleForTesting
1055     ShardStats getShardMBean() {
1056         return shardMBean;
1057     }
1058
1059     public static Builder builder() {
1060         return new Builder();
1061     }
1062
1063     public abstract static class AbstractBuilder<T extends AbstractBuilder<T, S>, S extends Shard> {
1064         private final Class<S> shardClass;
1065         private ShardIdentifier id;
1066         private Map<String, String> peerAddresses = Collections.emptyMap();
1067         private DatastoreContext datastoreContext;
1068         private SchemaContextProvider schemaContextProvider;
1069         private DatastoreSnapshot.ShardSnapshot restoreFromSnapshot;
1070         private DataTree dataTree;
1071         private volatile boolean sealed;
1072
1073         protected AbstractBuilder(final Class<S> shardClass) {
1074             this.shardClass = shardClass;
1075         }
1076
1077         protected void checkSealed() {
1078             Preconditions.checkState(!sealed, "Builder isalready sealed - further modifications are not allowed");
1079         }
1080
1081         @SuppressWarnings("unchecked")
1082         private T self() {
1083             return (T) this;
1084         }
1085
1086         public T id(final ShardIdentifier newId) {
1087             checkSealed();
1088             this.id = newId;
1089             return self();
1090         }
1091
1092         public T peerAddresses(final Map<String, String> newPeerAddresses) {
1093             checkSealed();
1094             this.peerAddresses = newPeerAddresses;
1095             return self();
1096         }
1097
1098         public T datastoreContext(final DatastoreContext newDatastoreContext) {
1099             checkSealed();
1100             this.datastoreContext = newDatastoreContext;
1101             return self();
1102         }
1103
1104         public T schemaContextProvider(final SchemaContextProvider newSchemaContextProvider) {
1105             checkSealed();
1106             this.schemaContextProvider = Preconditions.checkNotNull(newSchemaContextProvider);
1107             return self();
1108         }
1109
1110         public T restoreFromSnapshot(final DatastoreSnapshot.ShardSnapshot newRestoreFromSnapshot) {
1111             checkSealed();
1112             this.restoreFromSnapshot = newRestoreFromSnapshot;
1113             return self();
1114         }
1115
1116         public T dataTree(final DataTree newDataTree) {
1117             checkSealed();
1118             this.dataTree = newDataTree;
1119             return self();
1120         }
1121
1122         public ShardIdentifier getId() {
1123             return id;
1124         }
1125
1126         public Map<String, String> getPeerAddresses() {
1127             return peerAddresses;
1128         }
1129
1130         public DatastoreContext getDatastoreContext() {
1131             return datastoreContext;
1132         }
1133
1134         public SchemaContext getSchemaContext() {
1135             return Verify.verifyNotNull(schemaContextProvider.getSchemaContext());
1136         }
1137
1138         public DatastoreSnapshot.ShardSnapshot getRestoreFromSnapshot() {
1139             return restoreFromSnapshot;
1140         }
1141
1142         public DataTree getDataTree() {
1143             return dataTree;
1144         }
1145
1146         public TreeType getTreeType() {
1147             switch (datastoreContext.getLogicalStoreType()) {
1148                 case CONFIGURATION:
1149                     return TreeType.CONFIGURATION;
1150                 case OPERATIONAL:
1151                     return TreeType.OPERATIONAL;
1152                 default:
1153                     throw new IllegalStateException("Unhandled logical store type "
1154                             + datastoreContext.getLogicalStoreType());
1155             }
1156         }
1157
1158         protected void verify() {
1159             Preconditions.checkNotNull(id, "id should not be null");
1160             Preconditions.checkNotNull(peerAddresses, "peerAddresses should not be null");
1161             Preconditions.checkNotNull(datastoreContext, "dataStoreContext should not be null");
1162             Preconditions.checkNotNull(schemaContextProvider, "schemaContextProvider should not be null");
1163         }
1164
1165         public Props props() {
1166             sealed = true;
1167             verify();
1168             return Props.create(shardClass, this);
1169         }
1170     }
1171
1172     public static class Builder extends AbstractBuilder<Builder, Shard> {
1173         Builder() {
1174             super(Shard.class);
1175         }
1176     }
1177
1178     Ticker ticker() {
1179         return Ticker.systemTicker();
1180     }
1181
1182     void scheduleNextPendingTransaction() {
1183         self().tell(RESUME_NEXT_PENDING_TRANSACTION, ActorRef.noSender());
1184     }
1185 }