File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
ydb/core/kafka_proxy/actors Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 55
66#include < ydb/core/persqueue/utils.h>
77#include < ydb/core/protos/grpc_pq_old.pb.h>
8+ #include < ydb/public/api/protos/draft/persqueue_common.pb.h>
89
910namespace NKafka {
1011
@@ -262,6 +263,7 @@ THolder<TEvPartitionWriter::TEvWriteRequest> Convert(const TProduceRequestData::
262263
263264 for (const auto & record : batch->Records ) {
264265 NKikimrPQClient::TDataChunk proto;
266+ proto.set_codec (NPersQueueCommon::RAW);
265267 for (auto & h : record.Headers ) {
266268 auto res = proto.AddMessageMeta ();
267269 if (h.Key ) {
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ using namespace NKikimrClient;
1919// Each request can contain data for writing to several topics, and in each topic to several partitions.
2020// When a request to write to an unknown topic arrives, the actor changes the state to Init until it receives
2121// information about all the topics needed to process the request.
22- //
22+ //
2323// Requests are processed in parallel, but it is guaranteed that the recording order will be preserved.
2424// The order of responses to requests is also guaranteed.
2525//
You can’t perform that action at this time.
0 commit comments