@@ -223,6 +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
227
Schedule (*delay, new TEvents::TEvWakeup ());
227
228
}
228
229
}
@@ -276,7 +277,8 @@ class TPartitionWriter : public TActorBootstrapped<TPartitionWriter>, private TR
276
277
void HandleWriteId (NKqp::TEvKqp::TEvQueryResponse::TPtr& ev, const TActorContext& ctx) {
277
278
INFO (" End of the request to KQP for the WriteId. " <<
278
279
" SessionId: " << Opts.SessionId <<
279
- " TxId: " << Opts.TxId );
280
+ " TxId: " << Opts.TxId <<
281
+ " Status: " << ev->Get ()->Record .GetRef ().GetYdbStatus ());
280
282
281
283
auto & record = ev->Get ()->Record ;
282
284
switch (record.GetYdbStatus ()) {
@@ -423,7 +425,8 @@ class TPartitionWriter : public TActorBootstrapped<TPartitionWriter>, private TR
423
425
void HandlePartitionIdSaved (NKqp::TEvKqp::TEvQueryResponse::TPtr& ev, const TActorContext&) {
424
426
INFO (" End of a request to KQP to save PartitionId. " <<
425
427
" SessionId: " << Opts.SessionId <<
426
- " TxId: " << Opts.TxId );
428
+ " TxId: " << Opts.TxId <<
429
+ " Status: " << ev->Get ()->Record .GetRef ().GetYdbStatus ());
427
430
428
431
auto & record = ev->Get ()->Record ;
429
432
switch (record.GetYdbStatus ()) {
0 commit comments