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=0bdb29b598a56e876b2acddfa2ee38186c482125;hb=175f38490b56c4b4e0ec356b17b91f887b295da4;hp=ea7330ae23316a36637081142480a8acc781ba0c;hpb=1d3c54640b9fff649fe8d0f57e20d56f8f936cc1;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 ea7330ae23..0bdb29b598 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 @@ -10,11 +10,17 @@ package org.opendaylight.controller.cluster.datastore; import akka.actor.ActorRef; import akka.actor.ActorSystem; +import akka.actor.PoisonPill; +import akka.actor.Props; import com.google.common.annotations.VisibleForTesting; import com.google.common.base.Preconditions; +import com.google.common.base.Throwables; import com.google.common.util.concurrent.Uninterruptibles; import java.util.concurrent.CountDownLatch; import java.util.concurrent.TimeUnit; +import org.opendaylight.controller.cluster.access.concepts.ClientIdentifier; +import org.opendaylight.controller.cluster.databroker.actors.dds.DistributedDataStoreClient; +import org.opendaylight.controller.cluster.databroker.actors.dds.DistributedDataStoreClientActor; 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; @@ -51,7 +57,6 @@ public class DistributedDataStore implements DistributedDataStoreInterface, Sche DatastoreContextConfigAdminOverlay.Listener, DOMStoreTreeChangePublisher, DOMDataTreeCommitCohortRegistry, AutoCloseable { private static final Logger LOG = LoggerFactory.getLogger(DistributedDataStore.class); - private static final String UNKNOWN_TYPE = "unknown"; private static final long READY_WAIT_FACTOR = 3; @@ -66,7 +71,8 @@ public class DistributedDataStore implements DistributedDataStoreInterface, Sche private final CountDownLatch waitTillReadyCountDownLatch = new CountDownLatch(1); - private final String type; + private final ClientIdentifier identifier; + private final DistributedDataStoreClient client; private final TransactionContextFactory txContextFactory; @@ -78,9 +84,22 @@ public class DistributedDataStore implements DistributedDataStoreInterface, Sche Preconditions.checkNotNull(configuration, "configuration should not be null"); Preconditions.checkNotNull(datastoreContextFactory, "datastoreContextFactory should not be null"); - this.type = datastoreContextFactory.getBaseDatastoreContext().getDataStoreName(); + final Props clientProps = DistributedDataStoreClientActor.props(cluster.getCurrentMemberName(), + datastoreContextFactory.getBaseDatastoreContext().getDataStoreName()); + final ActorRef clientActor = actorSystem.actorOf(clientProps); + try { + client = DistributedDataStoreClientActor.getDistributedDataStoreClient(clientActor, 30, TimeUnit.SECONDS); + } catch (Exception e) { + LOG.error("Failed to get actor for {}", clientProps, e); + clientActor.tell(PoisonPill.getInstance(), ActorRef.noSender()); + throw Throwables.propagate(e); + } + + identifier = client.getIdentifier(); + LOG.debug("Distributed data store client {} started", identifier); - String shardManagerId = ShardManagerIdentifier.builder().type(type).build().toString(); + String shardManagerId = ShardManagerIdentifier.builder() + .type(datastoreContextFactory.getBaseDatastoreContext().getDataStoreName()).build().toString(); LOG.info("Creating ShardManager : {}", shardManagerId); @@ -99,7 +118,7 @@ public class DistributedDataStore implements DistributedDataStoreInterface, Sche this.waitTillReadyTimeInMillis = actorContext.getDatastoreContext().getShardLeaderElectionTimeout().duration().toMillis() * READY_WAIT_FACTOR; - this.txContextFactory = TransactionContextFactory.create(actorContext); + this.txContextFactory = new TransactionContextFactory(actorContext, identifier); datastoreConfigMXBean = new DatastoreConfigurationMXBeanImpl( datastoreContextFactory.getBaseDatastoreContext().getDataStoreMXBeanType()); @@ -112,10 +131,11 @@ public class DistributedDataStore implements DistributedDataStoreInterface, Sche } @VisibleForTesting - DistributedDataStore(ActorContext actorContext) { + DistributedDataStore(ActorContext actorContext, ClientIdentifier identifier) { this.actorContext = Preconditions.checkNotNull(actorContext, "actorContext should not be null"); - this.txContextFactory = TransactionContextFactory.create(actorContext); - this.type = UNKNOWN_TYPE; + this.client = null; + this.identifier = Preconditions.checkNotNull(identifier); + this.txContextFactory = new TransactionContextFactory(actorContext, identifier); this.waitTillReadyTimeInMillis = actorContext.getDatastoreContext().getShardLeaderElectionTimeout().duration().toMillis() * READY_WAIT_FACTOR; } @@ -214,7 +234,7 @@ public class DistributedDataStore implements DistributedDataStoreInterface, Sche @Override public void close() { - LOG.info("Closing data store {}", type); + LOG.info("Closing data store {}", identifier); if (datastoreConfigMXBean != null) { datastoreConfigMXBean.unregisterMBean(); @@ -233,6 +253,10 @@ public class DistributedDataStore implements DistributedDataStoreInterface, Sche txContextFactory.close(); actorContext.shutdown(); + + if (client != null) { + client.close(); + } } @Override @@ -241,11 +265,11 @@ public class DistributedDataStore implements DistributedDataStoreInterface, Sche } public void waitTillReady(){ - LOG.info("Beginning to wait for data store to become ready : {}", type); + LOG.info("Beginning to wait for data store to become ready : {}", identifier); try { if (waitTillReadyCountDownLatch.await(waitTillReadyTimeInMillis, TimeUnit.MILLISECONDS)) { - LOG.debug("Data store {} is now ready", type); + LOG.debug("Data store {} is now ready", identifier); } else { LOG.error("Shared leaders failed to settle in {} seconds, giving up", TimeUnit.MILLISECONDS.toSeconds(waitTillReadyTimeInMillis)); } @@ -265,7 +289,8 @@ public class DistributedDataStore implements DistributedDataStoreInterface, Sche } catch (Exception e){ lastException = e; Uninterruptibles.sleepUninterruptibly(100, TimeUnit.MILLISECONDS); - LOG.debug(String.format("Could not create actor %s because of %s - waiting for sometime before retrying (retry count = %d)", shardManagerId, e.getMessage(), i)); + LOG.debug("Could not create actor {} because of {} - waiting for sometime before retrying (retry count = {})", + shardManagerId, e.getMessage(), i); } }