io.streamnative.pulsar.handlers.kop.stats.DataSketchesOpStatsLogger Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulsar-protocol-handler-kafka Show documentation
Show all versions of pulsar-protocol-handler-kafka Show documentation
Kafka on Pulsar implemented using Pulsar Protocol Handler
/**
* Copyright (c) 2019 - 2024 StreamNative, Inc.. All Rights Reserved.
*/
/**
* 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 io.streamnative.pulsar.handlers.kop.stats;
import com.yahoo.sketches.quantiles.DoublesSketch;
import com.yahoo.sketches.quantiles.DoublesUnion;
import com.yahoo.sketches.quantiles.DoublesUnionBuilder;
import java.util.Map;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.atomic.LongAdder;
import org.apache.bookkeeper.stats.OpStatsData;
import org.apache.bookkeeper.stats.OpStatsLogger;
/**
* OpStatsLogger implementation that uses DataSketches library to calculate the approximated latency quantiles.
*/
public class DataSketchesOpStatsLogger implements OpStatsLogger {
/*
* Use 2 rotating thread local accessor so that we can safely swap them.
*/
private volatile ThreadLocalAccessor current;
private volatile ThreadLocalAccessor replacement;
/*
* These are the sketches where all the aggregated results are published.
*/
private volatile DoublesSketch successResult;
private volatile DoublesSketch failResult;
private final LongAdder successCountAdder = new LongAdder();
private final LongAdder failCountAdder = new LongAdder();
private final LongAdder successSumAdder = new LongAdder();
private final LongAdder failSumAdder = new LongAdder();
private final Map labels;
public DataSketchesOpStatsLogger(Map labels) {
this.current = new ThreadLocalAccessor();
this.replacement = new ThreadLocalAccessor();
this.labels = labels;
}
@Override
public void registerFailedEvent(long eventLatency, TimeUnit unit) {
double valueMillis = unit.toMicros(eventLatency) / 1000.0;
failCountAdder.increment();
failSumAdder.add((long) valueMillis);
current.getLocalData().updateFailedSketch(valueMillis);
}
@Override
public void registerSuccessfulEvent(long eventLatency, TimeUnit unit) {
double valueMillis = unit.toMicros(eventLatency) / 1000.0;
successCountAdder.increment();
successSumAdder.add((long) valueMillis);
current.getLocalData().updateSuccessSketch(valueMillis);
}
@Override
public void registerSuccessfulValue(long value) {
successCountAdder.increment();
successSumAdder.add(value);
current.getLocalData().updateSuccessSketch(value);
}
@Override
public void registerFailedValue(long value) {
failCountAdder.increment();
failSumAdder.add(value);
current.getLocalData().updateFailedSketch(value);
}
@Override
public OpStatsData toOpStatsData() {
// Not relevant as we don't use JMX here
throw new UnsupportedOperationException();
}
@Override
public void clear() {
// Not relevant as we don't use JMX here
throw new UnsupportedOperationException();
}
public void rotateLatencyCollection() {
// Swap current with replacement
ThreadLocalAccessor local = current;
current = replacement;
replacement = local;
final DoublesUnion aggregateSuccess = new DoublesUnionBuilder().build();
final DoublesUnion aggregateFail = new DoublesUnionBuilder().build();
local.record(aggregateSuccess, aggregateFail);
successResult = aggregateSuccess.getResultAndReset();
failResult = aggregateFail.getResultAndReset();
}
public long getCount(boolean success) {
return success ? successCountAdder.sum() : failCountAdder.sum();
}
public long getSum(boolean success) {
return success ? successSumAdder.sum() : failSumAdder.sum();
}
public double getQuantileValue(boolean success, double quantile) {
DoublesSketch s = success ? successResult : failResult;
return s != null ? s.getQuantile(quantile) : Double.NaN;
}
public Map getLabels() {
return labels;
}
}