io.streamnative.pulsar.handlers.kop.format.EncodeResult 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.format;
import static io.streamnative.pulsar.handlers.kop.KopServerStats.BYTES_IN;
import static io.streamnative.pulsar.handlers.kop.KopServerStats.MESSAGE_IN;
import static io.streamnative.pulsar.handlers.kop.KopServerStats.PRODUCE_MESSAGE_CONVERSIONS;
import static io.streamnative.pulsar.handlers.kop.KopServerStats.PRODUCE_MESSAGE_CONVERSIONS_TIME_NANOS;
import io.netty.buffer.ByteBuf;
import io.netty.util.Recycler;
import io.netty.util.concurrent.EventExecutor;
import io.streamnative.pulsar.handlers.kop.RequestStats;
import io.streamnative.pulsar.handlers.kop.stats.StatsLogger;
import java.util.concurrent.TimeUnit;
import lombok.Getter;
import org.apache.kafka.common.TopicPartition;
import org.apache.kafka.common.record.MemoryRecords;
import org.apache.pulsar.broker.service.Producer;
/**
* Result of encode in entry formatter.
*/
@Getter
public class EncodeResult {
private MemoryRecords records;
private ByteBuf encodedByteBuf;
private int numMessages;
private int conversionCount;
private long conversionTimeNanos;
private final Recycler.Handle recyclerHandle;
public static EncodeResult get(MemoryRecords records,
ByteBuf encodedByteBuf,
int numMessages,
int conversionCount,
long conversionTimeNanos) {
EncodeResult encodeResult = RECYCLER.get();
encodeResult.records = records;
encodeResult.encodedByteBuf = encodedByteBuf;
encodeResult.numMessages = numMessages;
encodeResult.conversionCount = conversionCount;
encodeResult.conversionTimeNanos = conversionTimeNanos;
return encodeResult;
}
private EncodeResult(Recycler.Handle recyclerHandle) {
this.recyclerHandle = recyclerHandle;
}
private static final Recycler RECYCLER = new Recycler() {
@Override
protected EncodeResult newObject(Recycler.Handle handle) {
return new EncodeResult(handle);
}
};
public void recycle() {
records = null;
if (encodedByteBuf != null) {
encodedByteBuf.release();
encodedByteBuf = null;
}
numMessages = -1;
conversionCount = -1;
conversionTimeNanos = -1L;
recyclerHandle.recycle(this);
}
public void updateProducerStats(final TopicPartition topicPartition,
final RequestStats requestStats,
final Producer producer,
final EventExecutor executor) {
final int numBytes = encodedByteBuf.readableBytes();
producer.updateRates(numMessages, numBytes);
producer.getTopic().incrementPublishCount(producer, numMessages, numBytes);
int numMessageCopy = numMessages;
int conversionCountCopy = conversionCount;
long conversionTimeNanosCopy = conversionTimeNanos;
executor.execute(() -> {
final StatsLogger statsLoggerForThisPartition =
requestStats.getStatsLoggerForTopicPartition(topicPartition);
statsLoggerForThisPartition.getCounter(BYTES_IN).addCount(numBytes);
statsLoggerForThisPartition.getCounter(MESSAGE_IN).addCount(numMessageCopy);
statsLoggerForThisPartition.getCounter(PRODUCE_MESSAGE_CONVERSIONS).addCount(conversionCountCopy);
statsLoggerForThisPartition.getOpStatsLogger(PRODUCE_MESSAGE_CONVERSIONS_TIME_NANOS)
.registerSuccessfulEvent(conversionTimeNanosCopy, TimeUnit.NANOSECONDS);
RequestStats.BATCH_COUNT_PER_MEMORY_RECORDS_INSTANCE.set(numMessageCopy);
});
}
}