All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.couchbase.client.core.msg.RequestContext Maven / Gradle / Ivy

There is a newer version: 3.7.2
Show newest version
/*
 * Copyright (c) 2018 Couchbase, Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.couchbase.client.core.msg;

import com.couchbase.client.core.Core;
import com.couchbase.client.core.CoreContext;
import com.couchbase.client.core.annotation.Stability;
import com.couchbase.client.core.cnc.CbTracing;
import com.couchbase.client.core.cnc.RequestSpan;
import com.couchbase.client.core.cnc.TracingIdentifiers;
import com.couchbase.client.core.cnc.metrics.NoopMeter;
import com.couchbase.client.core.env.Authenticator;
import com.couchbase.client.core.env.CoreEnvironment;
import com.couchbase.client.core.node.NodeIdentifier;
import com.couchbase.client.core.retry.RetryReason;
import com.couchbase.client.core.util.HostAndPort;
import reactor.util.annotation.Nullable;

import java.time.Duration;
import java.util.EnumSet;
import java.util.HashMap;
import java.util.Map;
import java.util.Set;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.atomic.AtomicInteger;
import java.util.concurrent.atomic.AtomicLong;
import java.util.concurrent.atomic.AtomicReference;

import static com.couchbase.client.core.logging.RedactableArgument.redactMeta;
import static com.couchbase.client.core.logging.RedactableArgument.redactSystem;
import static com.couchbase.client.core.util.Validators.notNull;
import static java.util.Objects.requireNonNull;

/**
 * Additional context which might be attached to an individual {@link Request}.
 *
 * @since 2.0.0
 */
public class RequestContext extends CoreContext {

  /**
   * Holds the last dispatch latency if set already (or at all).
   */
  private volatile long dispatchLatency;

  /**
   * Stores the sum of all dispatch latencies.
   */
  private final AtomicLong totalDispatchLatency = new AtomicLong(0);

  /**
   * Holds the last server latency if reported.
   */
  private volatile long serverLatency;

  /**
   * Stores the sum of all server latencies.
   */
  private final AtomicLong totalServerLatency = new AtomicLong(0);

  /**
   * The time when the request got logically completed.
   */
  private volatile long logicallyCompletedAt;

  /**
   * The time it took to encode the payload (if any).
   */
  private volatile long encodeLatency;

  /**
   * The channel id where this request was last written to, if at all.
   */
  private volatile String lastChannelId;

  /**
   * The request ID associated.
   */
  private final Request request;

  /**
   * User-attached domain specific diagnostic information.
   */
  private volatile Map clientContext;

  /**
   * The hostname/ip where this request got last dispatched to.
   */
  private volatile HostAndPort lastDispatchedTo;

  /**
   * The node where this request got last dispatched to.
   */
  private volatile NodeIdentifier lastDispatchedToNode;

  /**
   * The hostname/ip where this request got last dispatched from.
   */
  private volatile HostAndPort lastDispatchedFrom;

  /**
   * Holds a set of retry reasons.
   */
  private final AtomicReference> retryReasons = new AtomicReference<>(null);

  /**
   * The number of times the attached request has been retried.
   */
  private final AtomicInteger retryAttempts;

  /**
   * The last retry duration for this request.
   */
  private volatile Duration lastRetryDuration;

  @Stability.Internal
  public RequestContext(CoreContext ctx, final Request request) {
    this(ctx.core(), ctx.id(), ctx.environment(), ctx.authenticator(), request);
  }

  @Stability.Internal
  public RequestContext(
    @Nullable Core core, // Protostellar doesn't have this kind of core :-/
    long contextId,
    CoreEnvironment environment,
    Authenticator authenticator,
    Request request
  ) {
    super(core, contextId, environment, authenticator);
    this.request = requireNonNull(request);
    this.retryAttempts = new AtomicInteger(0);
  }

  /**
   * Returns the duration of the dispatch phase if set.
   *
   * @return the duration of the dispatch phase.
   */
  @Stability.Volatile
  public long dispatchLatency() {
    return dispatchLatency;
  }

  /**
   * Allows to set the dispatch duration of the request.
   *
   * @param dispatchLatency the duration.
   */
  @Stability.Internal
  public RequestContext dispatchLatency(long dispatchLatency) {
    this.dispatchLatency = dispatchLatency;
    this.totalDispatchLatency.addAndGet(dispatchLatency);
    return this;
  }

  public long totalDispatchLatency() {
    return totalDispatchLatency.get();
  }

  public long totalServerLatency() {
    return totalServerLatency.get();
  }

  @Stability.Volatile
  public long encodeLatency() {
    return encodeLatency;
  }

  @Stability.Internal
  public RequestContext encodeLatency(long encodeLatency) {
    this.encodeLatency = encodeLatency;
    return this;
  }

  @Stability.Volatile
  public String lastChannelId() {
    return lastChannelId;
  }

  @Stability.Internal
  public RequestContext lastChannelId(final String lastChannelId) {
    this.lastChannelId = lastChannelId;
    return this;
  }

  @Stability.Volatile
  public long serverLatency() {
    return serverLatency;
  }

  @Stability.Internal
  public RequestContext serverLatency(long serverLatency) {
    this.serverLatency = serverLatency;
    this.totalServerLatency.addAndGet(serverLatency);
    return this;
  }

  /**
   * Signals that this request is completed fully, including streaming sections or logical sub-requests also being
   * completed (i.e. observe polling).
   * @param err if non-null, will be recorded onto the span (if present).
   */
  @Stability.Internal
  public RequestContext logicallyComplete(@Nullable Throwable err) {
    this.logicallyCompletedAt = System.nanoTime();

    RequestSpan span = request.requestSpan();
    if (span != null) {
      if (!CbTracing.isInternalSpan(span)) {
        span.attribute(TracingIdentifiers.ATTR_RETRIES, retryAttempts());
        if (err != null) {
          span.recordException(err);
          span.status(RequestSpan.StatusCode.ERROR);
        }
      }
      span.end();
    }

    if (!(environment().meter() instanceof NoopMeter)) {
      long latency = logicalRequestLatency();
      if (latency > 0) {
        core().responseMetric(request, err).recordValue(latency);
      }
    }

    return this;
  }

  @Stability.Internal
  public RequestContext logicallyComplete() {
    return logicallyComplete(null);
  }

  public int retryAttempts() {
    return retryAttempts.get();
  }

  public Set retryReasons() {
    return retryReasons.get();
  }

  public Duration lastRetryDuration() {
    return lastRetryDuration;
  }

  /**
   * Returns the absolute nano time when the request got logically completed.
   */
  public long logicallyCompletedAt() {
    return logicallyCompletedAt;
  }

  /**
   * Returns the request latency once logically completed (includes potential "inner" operations like observe
   * calls).
   */
  public long logicalRequestLatency() {
    long createdAt = request.createdAt();
    if (logicallyCompletedAt == 0 || logicallyCompletedAt <= createdAt) {
      return 0;
    }
    return logicallyCompletedAt - createdAt;
  }

  @Stability.Internal
  public RequestContext incrementRetryAttempts(final Duration lastRetryDuration, final RetryReason reason) {
    notNull(lastRetryDuration, "Retry Duration");
    notNull(reason, "Retry Reason");

    retryReasons.getAndUpdate(retryReasons -> {
      if (retryReasons == null) {
        retryReasons = EnumSet.of(reason);
      } else {
        retryReasons.add(reason);
      }
      return retryReasons;
    });
    retryAttempts.incrementAndGet();
    this.lastRetryDuration = lastRetryDuration;
    return this;
  }

  public HostAndPort lastDispatchedTo() {
    return lastDispatchedTo;
  }

  @Stability.Internal
  public NodeIdentifier lastDispatchedToNode() {
    return lastDispatchedToNode;
  }

  @Stability.Internal
  public RequestContext lastDispatchedTo(final HostAndPort lastDispatchedTo) {
    this.lastDispatchedTo = lastDispatchedTo;
    return this;
  }

  @Stability.Internal
  public RequestContext lastDispatchedToNode(final NodeIdentifier lastDispatchedToNode) {
    this.lastDispatchedToNode = lastDispatchedToNode;
    return this;
  }

  public HostAndPort lastDispatchedFrom() {
    return lastDispatchedFrom;
  }

  @Stability.Internal
  public RequestContext lastDispatchedFrom(final HostAndPort lastDispatchedFrom) {
    this.lastDispatchedFrom = lastDispatchedFrom;
    return this;
  }

  /**
   * Returns the custom user payload of this request.
   *
   * @return the payload if set.
   */
  public Map clientContext() {
    return clientContext;
  }

  /**
   * Allows to set a custom payload for this request.
   *
   * @param clientContext the payload to set.
   */
  @Stability.Internal
  public RequestContext clientContext(@Nullable final Map clientContext) {
    if (clientContext != null) {
      this.clientContext = clientContext;
    }
    return this;
  }

  public Request request() {
    return request;
  }

  @Override
  public void injectExportableParams(final Map input) {
    super.injectExportableParams(input);

    final Request request = this.request;
    input.put("requestId", request.id());
    input.put("idempotent", request.idempotent());
    input.put("requestType", request.getClass().getSimpleName());
    input.put("retried", retryAttempts());
    input.put("completed", request.completed());
    input.put("timeoutMs", request.timeout().toMillis());
    if (request.cancelled()) {
      input.put("cancelled", true);
      input.put("reason", request.cancellationReason());
    }
    if (clientContext != null) {
      input.put("clientContext", clientContext);
    }
    Map serviceContext = request.serviceContext();
    if (serviceContext != null) {
      input.put("service", serviceContext);
    }
    Set retryReasons = retryReasons();
    if (retryReasons != null) {
      input.put("retryReasons", retryReasons);
    }
    long logicalLatency = logicalRequestLatency();
    if (dispatchLatency != 0 || logicalLatency != 0 || encodeLatency != 0 || serverLatency != 0) {
      HashMap timings = new HashMap<>();
      if (dispatchLatency != 0) {
        timings.put("dispatchMicros", TimeUnit.NANOSECONDS.toMicros(dispatchLatency));
      }

      if (totalDispatchLatency.get() != 0) {
        timings.put("totalDispatchMicros", TimeUnit.NANOSECONDS.toMicros(totalDispatchLatency.get()));
      }
      if (serverLatency != 0) {
        timings.put("serverMicros", TimeUnit.NANOSECONDS.toMicros(serverLatency));
      }
      if (totalServerLatency.get() != 0) {
        timings.put("totalServerMicros", TimeUnit.NANOSECONDS.toMicros(totalServerLatency.get()));
      }
      if (logicalLatency != 0) {
        timings.put("totalMicros", TimeUnit.NANOSECONDS.toMicros(logicalLatency));
      }
      if (encodeLatency != 0) {
        timings.put("encodingMicros", TimeUnit.NANOSECONDS.toMicros(encodeLatency));
      }
      input.put("timings", timings);
    }
    if (lastDispatchedTo != null) {
      input.put("lastDispatchedTo", redactSystem(lastDispatchedTo));
    } else if (lastDispatchedToNode != null) {
      input.put("lastDispatchedTo", redactSystem(lastDispatchedToNode.address()));
    }

    if (lastDispatchedFrom != null) {
      input.put("lastDispatchedFrom", redactSystem(lastDispatchedFrom));
    }
    if (lastChannelId != null) {
      input.put("lastChannelId", redactMeta(lastChannelId));
    }
  }

  /**
   * Allows to cancel the attached {@link Request} from anywhere in the code.
   *
   * 

If the operation is already completed (either successfully or failed) this * is an operation without side-effect.

*/ @Stability.Uncommitted public RequestContext cancel() { request.cancel(CancellationReason.CANCELLED_VIA_CONTEXT); return this; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy