Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: record pooled record memory usage #846

Merged
merged 1 commit into from
Feb 27, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,11 @@

public class ElasticLogFileRecords {
private static final Logger LOGGER = LoggerFactory.getLogger(ElasticLogFileRecords.class);
private static final int POOLED_MEMORY_RECORDS = 30;
static {
DirectByteBufAlloc.registerAllocType(POOLED_MEMORY_RECORDS, "pooled_memory_records");
}

protected final AtomicInteger size;
// only used for recover
protected final Iterable<RecordBatch> batches;
Expand Down Expand Up @@ -320,7 +325,7 @@ private PooledMemoryRecords(long logBaseOffset, List<FetchResult> fetchResults,
}
// TODO: create a new ByteBufMemoryRecords data struct to avoid copy
if (pooled) {
this.pack = DirectByteBufAlloc.byteBuffer(size);
this.pack = DirectByteBufAlloc.byteBuffer(size, POOLED_MEMORY_RECORDS);
} else {
this.pack = Unpooled.buffer(size);
}
Expand Down
Loading