X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fcds-access-client%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fcluster%2Faccess%2Fclient%2FAbstractReceivingClientConnection.java;h=a27470db8959455182c8705699464e142ff2315d;hb=b74c6012092e47430a8f4d6f4ddeb1d3e2b1b7df;hp=15da294ec99fbcd4ed49417500d55b8dae950432;hpb=b4d95acff78952020e9fbde4372d13b461fd7469;p=controller.git diff --git a/opendaylight/md-sal/cds-access-client/src/main/java/org/opendaylight/controller/cluster/access/client/AbstractReceivingClientConnection.java b/opendaylight/md-sal/cds-access-client/src/main/java/org/opendaylight/controller/cluster/access/client/AbstractReceivingClientConnection.java index 15da294ec9..a27470db89 100644 --- a/opendaylight/md-sal/cds-access-client/src/main/java/org/opendaylight/controller/cluster/access/client/AbstractReceivingClientConnection.java +++ b/opendaylight/md-sal/cds-access-client/src/main/java/org/opendaylight/controller/cluster/access/client/AbstractReceivingClientConnection.java @@ -7,30 +7,48 @@ */ package org.opendaylight.controller.cluster.access.client; +import com.google.common.base.MoreObjects.ToStringHelper; import com.google.common.base.Preconditions; import java.util.Optional; /** * Implementation-internal intermediate subclass between {@link AbstractClientConnection} and two-out of three of its - * sublcasses. It allows us to share some code. + * subclasses. It allows us to share some code. * * @author Robert Varga * * @param Concrete {@link BackendInfo} type */ abstract class AbstractReceivingClientConnection extends AbstractClientConnection { + /** + * Multiplication factor applied to remote's advertised limit on outstanding messages. Our default strategy + * rate-limiting strategy in {@link AveragingProgressTracker} does not penalize threads as long as we have not + * reached half of the target. + * + *

+ * By multiplying the advertised maximum by four, our queue steady-state should end up with: + * - the backend pipeline being full, + * - another full batch of messages being in the queue while not paying any throttling cost + * - another 2 full batches of messages with incremental throttling cost + */ + private static final int MESSAGE_QUEUE_FACTOR = 4; + private final T backend; AbstractReceivingClientConnection(final ClientActorContext context, final Long cookie, final T backend) { - super(context, cookie, new TransmitQueue.Transmitting(backend)); + super(context, cookie, new TransmitQueue.Transmitting(targetQueueSize(backend), backend)); this.backend = Preconditions.checkNotNull(backend); } AbstractReceivingClientConnection(final AbstractReceivingClientConnection oldConnection) { - super(oldConnection); + super(oldConnection, targetQueueSize(oldConnection.backend)); this.backend = oldConnection.backend; } + private static int targetQueueSize(final BackendInfo backend) { + return backend.getMaxMessages() * MESSAGE_QUEUE_FACTOR; + } + @Override public final Optional getBackendInfo() { return Optional.of(backend); @@ -39,4 +57,9 @@ abstract class AbstractReceivingClientConnection extends final T backend() { return backend; } + + @Override + ToStringHelper addToStringAttributes(final ToStringHelper toStringHelper) { + return super.addToStringAttributes(toStringHelper).add("backend", backend); + } }