X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-distributed-datastore%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fcluster%2Fdatastore%2FDistributedDataStore.java;h=19c93b3dc418d15b0b772d8365122a897b4dff7d;hb=9b78e3a07fc3090565400eb2206a8e970f9a675b;hp=7f2416efc36cc17ce9101fc968ca45a1edbc3adf;hpb=c2d1b9207fe82d36db83501e1baaffe7bc7da9ae;p=controller.git diff --git a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/DistributedDataStore.java b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/DistributedDataStore.java index 7f2416efc3..19c93b3dc4 100644 --- a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/DistributedDataStore.java +++ b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/DistributedDataStore.java @@ -19,6 +19,7 @@ import org.opendaylight.controller.cluster.datastore.config.Configuration; import org.opendaylight.controller.cluster.datastore.identifiers.ShardManagerIdentifier; import org.opendaylight.controller.cluster.datastore.jmx.mbeans.DatastoreConfigurationMXBeanImpl; import org.opendaylight.controller.cluster.datastore.jmx.mbeans.DatastoreInfoMXBeanImpl; +import org.opendaylight.controller.cluster.datastore.messages.DatastoreSnapshot; import org.opendaylight.controller.cluster.datastore.utils.ActorContext; import org.opendaylight.controller.cluster.datastore.utils.Dispatchers; import org.opendaylight.controller.cluster.datastore.utils.PrimaryShardInfoFutureCache; @@ -53,7 +54,6 @@ public class DistributedDataStore implements DOMStore, SchemaContextListener, private final ActorContext actorContext; private final long waitTillReadyTimeInMillis; - private AutoCloseable closeable; private DatastoreConfigurationMXBeanImpl datastoreConfigMXBean; @@ -67,7 +67,8 @@ public class DistributedDataStore implements DOMStore, SchemaContextListener, private final TransactionContextFactory txContextFactory; public DistributedDataStore(ActorSystem actorSystem, ClusterWrapper cluster, - Configuration configuration, DatastoreContextFactory datastoreContextFactory) { + Configuration configuration, DatastoreContextFactory datastoreContextFactory, + DatastoreSnapshot restoreFromSnapshot) { Preconditions.checkNotNull(actorSystem, "actorSystem should not be null"); Preconditions.checkNotNull(cluster, "cluster should not be null"); Preconditions.checkNotNull(configuration, "configuration should not be null"); @@ -83,9 +84,13 @@ public class DistributedDataStore implements DOMStore, SchemaContextListener, new Dispatchers(actorSystem.dispatchers()).getDispatcherPath(Dispatchers.DispatcherType.Shard); PrimaryShardInfoFutureCache primaryShardInfoCache = new PrimaryShardInfoFutureCache(); - actorContext = new ActorContext(actorSystem, createShardManager(actorSystem, cluster, configuration, - datastoreContextFactory, shardDispatcher, shardManagerId, primaryShardInfoCache), cluster, - configuration, datastoreContextFactory.getBaseDatastoreContext(), primaryShardInfoCache); + + ShardManager.Builder builder = ShardManager.builder().cluster(cluster).configuration(configuration). + datastoreContextFactory(datastoreContextFactory).waitTillReadyCountdownLatch(waitTillReadyCountDownLatch). + primaryShardInfoCache(primaryShardInfoCache).restoreFromSnapshot(restoreFromSnapshot); + + actorContext = new ActorContext(actorSystem, createShardManager(actorSystem, builder, shardDispatcher, + shardManagerId), cluster, configuration, datastoreContextFactory.getBaseDatastoreContext(), primaryShardInfoCache); this.waitTillReadyTimeInMillis = actorContext.getDatastoreContext().getShardLeaderElectionTimeout().duration().toMillis() * READY_WAIT_FACTOR; @@ -225,17 +230,14 @@ public class DistributedDataStore implements DOMStore, SchemaContextListener, } } - private ActorRef createShardManager(ActorSystem actorSystem, ClusterWrapper cluster, Configuration configuration, - DatastoreContextFactory datastoreContextFactory, String shardDispatcher, - String shardManagerId, PrimaryShardInfoFutureCache primaryShardInfoCache){ + private ActorRef createShardManager(ActorSystem actorSystem, ShardManager.Builder builder, String shardDispatcher, + String shardManagerId){ Exception lastException = null; for(int i=0;i<100;i++) { try { - return actorSystem.actorOf( - ShardManager.props(cluster, configuration, datastoreContextFactory, waitTillReadyCountDownLatch, - primaryShardInfoCache).withDispatcher(shardDispatcher).withMailbox( - ActorContext.MAILBOX), shardManagerId); + return actorSystem.actorOf(builder.props().withDispatcher(shardDispatcher).withMailbox( + ActorContext.MAILBOX), shardManagerId); } catch (Exception e){ lastException = e; Uninterruptibles.sleepUninterruptibly(100, TimeUnit.MILLISECONDS);