@@ -276,7 +276,7 @@ class TBlobStorageGroupAssimilateRequest : public TBlobStorageGroupRequestActor
276
276
}
277
277
278
278
void Bootstrap () override {
279
- A_LOG_INFO_S (" BPA01" , " bootstrap"
279
+ DSP_LOG_INFO_S (" BPA01" , " bootstrap"
280
280
<< " ActorId# " << SelfId ()
281
281
<< " Group# " << Info->GroupID
282
282
<< " RestartCounter# " << RestartCounter);
@@ -289,7 +289,7 @@ class TBlobStorageGroupAssimilateRequest : public TBlobStorageGroupRequestActor
289
289
}
290
290
291
291
void HandleWakeup () {
292
- A_LOG_NOTICE_S (" BPA25" , " assimilation is way too long" );
292
+ DSP_LOG_NOTICE_S (" BPA25" , " assimilation is way too long" );
293
293
}
294
294
295
295
STATEFN (StateWork) {
@@ -315,7 +315,7 @@ class TBlobStorageGroupAssimilateRequest : public TBlobStorageGroupRequestActor
315
315
maxOpt (SkipBarriersUpTo, info.LastProcessedBarrier ),
316
316
maxOpt (SkipBlobsUpTo, info.LastProcessedBlob )), 0 );
317
317
318
- A_LOG_DEBUG_S (" BPA03" , " Request orderNumber# " << orderNumber << " VDiskId# " << Info->GetVDiskId (orderNumber));
318
+ DSP_LOG_DEBUG_S (" BPA03" , " Request orderNumber# " << orderNumber << " VDiskId# " << Info->GetVDiskId (orderNumber));
319
319
320
320
++RequestsInFlight;
321
321
}
@@ -328,7 +328,7 @@ class TBlobStorageGroupAssimilateRequest : public TBlobStorageGroupRequestActor
328
328
const ui32 orderNumber = Info->GetTopology ().GetOrderNumber (vdiskId);
329
329
Y_ABORT_UNLESS (orderNumber < PerVDiskInfo.size ());
330
330
331
- A_LOG_DEBUG_S (" BPA02" , " Handle TEvVAssimilateResult"
331
+ DSP_LOG_DEBUG_S (" BPA02" , " Handle TEvVAssimilateResult"
332
332
<< " Status# " << NKikimrProto::EReplyStatus_Name (record.GetStatus ())
333
333
<< " ErrorReason# '" << record.GetErrorReason () << " '"
334
334
<< " VDiskId# " << vdiskId
@@ -379,14 +379,14 @@ class TBlobStorageGroupAssimilateRequest : public TBlobStorageGroupRequestActor
379
379
ReplyAndDie (NKikimrProto::ERROR);
380
380
} else {
381
381
// answer with what we have already collected
382
- A_LOG_DEBUG_S (" BPA06" , " SendResponseAndDie (no items to merge)" );
382
+ DSP_LOG_DEBUG_S (" BPA06" , " SendResponseAndDie (no items to merge)" );
383
383
SendResponseAndDie (std::move (Result));
384
384
}
385
385
return ;
386
386
}
387
387
while (requests.empty ()) {
388
388
if (Heap.empty ()) {
389
- A_LOG_DEBUG_S (" BPA07" , " SendResponseAndDie (heap empty)" );
389
+ DSP_LOG_DEBUG_S (" BPA07" , " SendResponseAndDie (heap empty)" );
390
390
SendResponseAndDie (std::move (Result));
391
391
return ;
392
392
}
@@ -429,7 +429,7 @@ class TBlobStorageGroupAssimilateRequest : public TBlobStorageGroupRequestActor
429
429
}
430
430
431
431
if (Result->Blocks .size () + Result->Barriers .size () + Result->Blobs .size () >= 10'000 ) {
432
- A_LOG_DEBUG_S (" BPA05" , " SendResponseAndDie (10k)" );
432
+ DSP_LOG_DEBUG_S (" BPA05" , " SendResponseAndDie (10k)" );
433
433
SendResponseAndDie (std::move (Result));
434
434
} else {
435
435
for (const ui32 orderNumber : requests) {
@@ -446,7 +446,7 @@ class TBlobStorageGroupAssimilateRequest : public TBlobStorageGroupRequestActor
446
446
}
447
447
448
448
void ReplyAndDie (NKikimrProto::EReplyStatus status) override {
449
- A_LOG_DEBUG_S (" BPA04" , " ReplyAndDie status# " << NKikimrProto::EReplyStatus_Name (status));
449
+ DSP_LOG_DEBUG_S (" BPA04" , " ReplyAndDie status# " << NKikimrProto::EReplyStatus_Name (status));
450
450
for (const auto & item : PerVDiskInfo) {
451
451
if (item.ErrorReason ) {
452
452
if (ErrorReason) {
0 commit comments