diff options
author | Mikhail Surin <ssmike@ydb.tech> | 2024-08-08 13:34:53 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-08 10:34:53 +0000 |
commit | c2e177fc54584ed38828d4e77d7f5fb54d26836e (patch) | |
tree | fa22494c602a28b627b01fa2531e1fb5795b6dd3 | |
parent | 7ed98e4f1ed3a5045638cb4f4b762ef3db825918 (diff) | |
download | ydb-c2e177fc54584ed38828d4e77d7f5fb54d26836e.tar.gz |
Remove debug output (#7553)
-rw-r--r-- | ydb/core/kqp/runtime/kqp_compute_scheduler.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/ydb/core/kqp/runtime/kqp_compute_scheduler.h b/ydb/core/kqp/runtime/kqp_compute_scheduler.h index e3c39a0291..21f7380db1 100644 --- a/ydb/core/kqp/runtime/kqp_compute_scheduler.h +++ b/ydb/core/kqp/runtime/kqp_compute_scheduler.h @@ -254,9 +254,6 @@ protected: Y_ABORT_UNLESS(newStats.has_value()); Y_ABORT_UNLESS(*newStats >= *OldActivationStats); auto toAccount = TDuration::MicroSeconds(NHPTimer::GetSeconds(*newStats - *OldActivationStats) * 1e6); - if (toAccount.MicroSeconds() > 100000) { - CA_LOG_E("very huge account " << toAccount.MicroSeconds() << " newStats=" << newStats << " oldStats=" << OldActivationStats << " trackedWork=" << TrackedWork.MicroSeconds()); - } { auto minTime = Min(toAccount, TrackedWork); TrackedWork -= minTime; |