aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMikhail Surin <ssmike@ydb.tech>2024-08-08 13:34:53 +0300
committerGitHub <noreply@github.com>2024-08-08 10:34:53 +0000
commitc2e177fc54584ed38828d4e77d7f5fb54d26836e (patch)
treefa22494c602a28b627b01fa2531e1fb5795b6dd3
parent7ed98e4f1ed3a5045638cb4f4b762ef3db825918 (diff)
downloadydb-c2e177fc54584ed38828d4e77d7f5fb54d26836e.tar.gz
Remove debug output (#7553)
-rw-r--r--ydb/core/kqp/runtime/kqp_compute_scheduler.h3
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;