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%2Fdatabroker%2Factors%2Fdds%2FModuleShardBackendResolver.java;h=dde2292241ef55344e64bbd2793a03038c13bfa3;hb=b8c1ade398dbe557f8bff0c0510d02777c860730;hp=6f15c72a46e381123e4c78bd13084e80253e40b6;hpb=c426700e494b8eb18e49c3384d057767a9efed35;p=controller.git diff --git a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/databroker/actors/dds/ModuleShardBackendResolver.java b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/databroker/actors/dds/ModuleShardBackendResolver.java index 6f15c72a46..dde2292241 100644 --- a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/databroker/actors/dds/ModuleShardBackendResolver.java +++ b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/databroker/actors/dds/ModuleShardBackendResolver.java @@ -7,23 +7,22 @@ */ package org.opendaylight.controller.cluster.databroker.actors.dds; -import akka.util.Timeout; import com.google.common.base.Preconditions; import com.google.common.collect.BiMap; import com.google.common.collect.ImmutableBiMap; -import com.google.common.primitives.UnsignedLong; -import java.util.concurrent.CompletableFuture; +import com.google.common.collect.ImmutableBiMap.Builder; import java.util.concurrent.CompletionStage; -import java.util.concurrent.TimeUnit; -import org.opendaylight.controller.cluster.access.ABIVersion; -import org.opendaylight.controller.cluster.datastore.DataStoreVersions; -import org.opendaylight.controller.cluster.datastore.actors.client.BackendInfo; -import org.opendaylight.controller.cluster.datastore.actors.client.BackendInfoResolver; -import org.opendaylight.controller.cluster.datastore.messages.PrimaryShardInfo; +import java.util.concurrent.ConcurrentHashMap; +import java.util.concurrent.ConcurrentMap; +import javax.annotation.concurrent.GuardedBy; +import javax.annotation.concurrent.ThreadSafe; +import org.opendaylight.controller.cluster.access.client.BackendInfoResolver; +import org.opendaylight.controller.cluster.access.concepts.ClientIdentifier; +import org.opendaylight.controller.cluster.datastore.shardstrategy.DefaultShardStrategy; import org.opendaylight.controller.cluster.datastore.utils.ActorContext; +import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier; import org.slf4j.Logger; import org.slf4j.LoggerFactory; -import scala.compat.java8.FutureConverters; /** * {@link BackendInfoResolver} implementation for static shard configuration based on ShardManager. Each string-named @@ -32,66 +31,77 @@ import scala.compat.java8.FutureConverters; * * @author Robert Varga */ -final class ModuleShardBackendResolver extends BackendInfoResolver { +@ThreadSafe +final class ModuleShardBackendResolver extends AbstractShardBackendResolver { private static final Logger LOG = LoggerFactory.getLogger(ModuleShardBackendResolver.class); - /** - * Fall-over-dead timeout. If we do not make progress in this long, just fall over and propagate the failure. - * All users are expected to fail, possibly attempting to recover by restarting. It is fair to remain - * non-operational. - */ - // TODO: maybe make this configurable somehow? - private static final Timeout DEAD_TIMEOUT = Timeout.apply(15, TimeUnit.MINUTES); + private final ConcurrentMap backends = new ConcurrentHashMap<>(); private final ActorContext actorContext; - private volatile BiMap shards = ImmutableBiMap.of(); + @GuardedBy("this") + private long nextShard = 1; + + private volatile BiMap shards = ImmutableBiMap.of(DefaultShardStrategy.DEFAULT_SHARD, 0L); // FIXME: we really need just ActorContext.findPrimaryShardAsync() - ModuleShardBackendResolver(final ActorContext actorContext) { + ModuleShardBackendResolver(final ClientIdentifier clientId, final ActorContext actorContext) { + super(clientId, actorContext); this.actorContext = Preconditions.checkNotNull(actorContext); } - @Override - protected void invalidateBackendInfo(final CompletionStage info) { - LOG.trace("Initiated invalidation of backend information {}", info); - info.thenAccept(this::invalidate); - } + Long resolveShardForPath(final YangInstanceIdentifier path) { + final String shardName = actorContext.getShardStrategyFactory().getStrategy(path).findShard(path); + Long cookie = shards.get(shardName); + if (cookie == null) { + synchronized (this) { + cookie = shards.get(shardName); + if (cookie == null) { + cookie = nextShard++; + + Builder builder = ImmutableBiMap.builder(); + builder.putAll(shards); + builder.put(shardName, cookie); + shards = builder.build(); + } + } + } - private void invalidate(final BackendInfo result) { - Preconditions.checkArgument(result instanceof ShardBackendInfo); - LOG.debug("Invalidating backend information {}", result); - actorContext.getPrimaryShardInfoCache().remove(((ShardBackendInfo)result).getShardName()); + return cookie; } - @Override - protected CompletionStage resolveBackendInfo(final Long cookie) { + private ShardState resolveBackendInfo(final Long cookie) { final String shardName = shards.inverse().get(cookie); if (shardName == null) { LOG.warn("Failing request for non-existent cookie {}", cookie); - return CompletableFuture.completedFuture(null); + return null; } LOG.debug("Resolving cookie {} to shard {}", cookie, shardName); - return FutureConverters.toJava(actorContext.findPrimaryShardAsync(shardName)) - .thenApply(o -> createBackendInfo(o, shardName, cookie)); - } - private static ABIVersion toABIVersion(final short version) { - switch (version) { - case DataStoreVersions.BORON_VERSION: - return ABIVersion.BORON; - } + return resolveBackendInfo(shardName, cookie); + } - throw new IllegalArgumentException("Unsupported version " + version); + @Override + public CompletionStage getBackendInfo(final Long cookie) { + return backends.computeIfAbsent(cookie, this::resolveBackendInfo).getStage(); } - private static ShardBackendInfo createBackendInfo(final Object result, final String shardName, final Long cookie) { - Preconditions.checkArgument(result instanceof PrimaryShardInfo); - final PrimaryShardInfo info = (PrimaryShardInfo) result; + @Override + public CompletionStage refreshBackendInfo(final Long cookie, + final ShardBackendInfo staleInfo) { + final ShardState existing = backends.get(cookie); + if (existing != null) { + if (!staleInfo.equals(existing.getResult())) { + return existing.getStage(); + } + + LOG.debug("Invalidating backend information {}", staleInfo); + flushCache(staleInfo.getShardName()); - LOG.debug("Creating backend information for {}", info); - return new ShardBackendInfo(info.getPrimaryShardActor().resolveOne(DEAD_TIMEOUT).value().get().get(), - toABIVersion(info.getPrimaryShardVersion()), shardName, UnsignedLong.fromLongBits(cookie), - info.getLocalShardDataTree()); - } + LOG.trace("Invalidated cache %s", staleInfo); + backends.remove(cookie, existing); + } + + return getBackendInfo(cookie); + } }