File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -326,6 +326,7 @@ redpanda_cc_library(
326326 "//src/v/bytes:iostream" ,
327327 "//src/v/bytes:scattered_message" ,
328328 "//src/v/config" ,
329+ "//src/v/container:chunked_circular_buffer" ,
329330 "//src/v/container:chunked_hash_map" ,
330331 "//src/v/container:chunked_vector" ,
331332 "//src/v/hashing:murmur" ,
Original file line number Diff line number Diff line change 1313
1414#include " absl/container/flat_hash_map.h"
1515#include " base/seastarx.h"
16+ #include " container/chunked_circular_buffer.h"
1617#include " kafka/protocol/produce.h"
1718#include " model/fundamental.h"
1819#include " storage/record_batch_builder.h"
1920
20- #include < seastar/core/circular_buffer.hh>
2121#include < seastar/core/coroutine.hh>
2222
2323namespace kafka ::client {
@@ -124,8 +124,8 @@ class produce_batcher {
124124 model::compression _c;
125125 storage::record_batch_builder _builder;
126126 // TODO(Ben): Maybe these should be a queue for backpressure
127- ss::circular_buffer <client_context> _client_reqs;
128- ss::circular_buffer <broker_context> _broker_reqs;
127+ chunked_circular_buffer <client_context> _client_reqs;
128+ chunked_circular_buffer <broker_context> _broker_reqs;
129129};
130130
131131} // namespace kafka::client
You can’t perform that action at this time.
0 commit comments