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