We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0390b8f commit 8ef5cfaCopy full SHA for 8ef5cfa
ydb/core/kqp/runtime/kqp_compute_scheduler.h
@@ -254,9 +254,6 @@ class TSchedulableComputeActorBase : public NYql::NDq::TDqSyncComputeActorBase<T
254
Y_ABORT_UNLESS(newStats.has_value());
255
Y_ABORT_UNLESS(*newStats >= *OldActivationStats);
256
auto toAccount = TDuration::MicroSeconds(NHPTimer::GetSeconds(*newStats - *OldActivationStats) * 1e6);
257
- if (toAccount.MicroSeconds() > 100000) {
258
- CA_LOG_E("very huge account " << toAccount.MicroSeconds() << " newStats=" << newStats << " oldStats=" << OldActivationStats << " trackedWork=" << TrackedWork.MicroSeconds());
259
- }
260
{
261
auto minTime = Min(toAccount, TrackedWork);
262
TrackedWork -= minTime;
0 commit comments