@@ -223,7 +223,7 @@ class TPartitionWriter : public TActorBootstrapped<TPartitionWriter>, private TR
223
223
}
224
224
225
225
if (auto delay = RetryState->GetNextRetryDelay (code); delay.Defined ()) {
226
- INFO (" Repeat the request to KQP in " << *delay);
226
+ DEBUG (" Repeat the request to KQP in " << *delay);
227
227
Schedule (*delay, new TEvents::TEvWakeup ());
228
228
}
229
229
}
@@ -255,9 +255,9 @@ class TPartitionWriter : public TActorBootstrapped<TPartitionWriter>, private TR
255
255
// / GetWriteId
256
256
257
257
void GetWriteId (const TActorContext& ctx) {
258
- INFO (" Start of a request to KQP for a WriteId. " <<
259
- " SessionId: " << Opts.SessionId <<
260
- " TxId: " << Opts.TxId );
258
+ DEBUG (" Start of a request to KQP for a WriteId. " <<
259
+ " SessionId: " << Opts.SessionId <<
260
+ " TxId: " << Opts.TxId );
261
261
262
262
auto ev = MakeWriteIdRequest ();
263
263
ctx.Send (NKqp::MakeKqpProxyID (ctx.SelfID .NodeId ()), ev.Release ());
@@ -274,11 +274,11 @@ class TPartitionWriter : public TActorBootstrapped<TPartitionWriter>, private TR
274
274
}
275
275
}
276
276
277
- void HandleWriteId (NKqp::TEvKqp::TEvQueryResponse::TPtr& ev, const TActorContext& ctx) {
278
- INFO (" End of the request to KQP for the WriteId. " <<
279
- " SessionId: " << Opts.SessionId <<
280
- " TxId: " << Opts.TxId <<
281
- " Status: " << ev->Get ()->Record .GetRef ().GetYdbStatus ());
277
+ void HandleWriteId (NKqp::TEvKqp::TEvQueryResponse::TPtr& ev, const TActorContext& /* ctx*/ ) {
278
+ DEBUG (" End of the request to KQP for the WriteId. " <<
279
+ " SessionId: " << Opts.SessionId <<
280
+ " TxId: " << Opts.TxId <<
281
+ " Status: " << ev->Get ()->Record .GetRef ().GetYdbStatus ());
282
282
283
283
auto & record = ev->Get ()->Record ;
284
284
switch (record.GetYdbStatus ()) {
@@ -293,10 +293,9 @@ class TPartitionWriter : public TActorBootstrapped<TPartitionWriter>, private TR
293
293
294
294
WriteId = NPQ::GetWriteId (record.GetResponse ().GetTopicOperations ());
295
295
296
- LOG_DEBUG_S (ctx, NKikimrServices::PQ_WRITE_PROXY,
297
- " SessionId: " << Opts.SessionId <<
298
- " TxId: " << Opts.TxId <<
299
- " WriteId: " << WriteId);
296
+ DEBUG (" SessionId: " << Opts.SessionId <<
297
+ " TxId: " << Opts.TxId <<
298
+ " WriteId: " << WriteId);
300
299
301
300
GetOwnership ();
302
301
}
@@ -414,19 +413,19 @@ class TPartitionWriter : public TActorBootstrapped<TPartitionWriter>, private TR
414
413
Y_ABORT_UNLESS (HasWriteId ());
415
414
Y_ABORT_UNLESS (HasSupportivePartitionId ());
416
415
417
- INFO (" Start of a request to KQP to save PartitionId. " <<
418
- " SessionId: " << Opts.SessionId <<
419
- " TxId: " << Opts.TxId );
416
+ DEBUG (" Start of a request to KQP to save PartitionId. " <<
417
+ " SessionId: " << Opts.SessionId <<
418
+ " TxId: " << Opts.TxId );
420
419
421
420
auto ev = MakeWriteIdRequest ();
422
421
ctx.Send (NKqp::MakeKqpProxyID (ctx.SelfID .NodeId ()), ev.Release ());
423
422
}
424
423
425
424
void HandlePartitionIdSaved (NKqp::TEvKqp::TEvQueryResponse::TPtr& ev, const TActorContext&) {
426
- INFO (" End of a request to KQP to save PartitionId. " <<
427
- " SessionId: " << Opts.SessionId <<
428
- " TxId: " << Opts.TxId <<
429
- " Status: " << ev->Get ()->Record .GetRef ().GetYdbStatus ());
425
+ DEBUG (" End of a request to KQP to save PartitionId. " <<
426
+ " SessionId: " << Opts.SessionId <<
427
+ " TxId: " << Opts.TxId <<
428
+ " Status: " << ev->Get ()->Record .GetRef ().GetYdbStatus ());
430
429
431
430
auto & record = ev->Get ()->Record ;
432
431
switch (record.GetYdbStatus ()) {
0 commit comments