Skip to content

Commit 8af4a09

Browse files
committed
Minor changes
- change log level to trace to not pollute the SchemeShard log - change comment wording to emphasize the real values seen in practice
1 parent 84de6c0 commit 8af4a09

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

ydb/core/tx/schemeshard/schemeshard__table_stats.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -515,11 +515,11 @@ void TSchemeShard::Handle(TEvDataShard::TEvPeriodicTableStats::TPtr& ev, const T
515515
<< " rowCount " << rowCount
516516
<< " cpuUsage " << tabletMetrics.GetCPU()/10000.0);
517517

518-
LOG_DEBUG_S(ctx, NKikimrServices::FLAT_TX_SCHEMESHARD,
518+
LOG_TRACE_S(ctx, NKikimrServices::FLAT_TX_SCHEMESHARD,
519519
"Got periodic table stats at tablet " << TabletID()
520520
<< " from shard " << datashardId
521521
<< " pathId " << pathId
522-
<< " raw table stats:\n" << tableStats.DebugString());
522+
<< " raw table stats:\n" << tableStats.ShortDebugString());
523523

524524
TStatsId statsId(pathId, datashardId);
525525

ydb/public/api/protos/ydb_cms.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ message DatabaseQuotas {
9696
uint32 ttl_min_run_internal_seconds = 4;
9797

9898
message StorageQuotas {
99-
// in theory an arbitrary string, but in practice HDD or SSD
99+
// in theory an arbitrary string, but in practice "hdd" or "ssd"
100100
string unit_kind = 1;
101101
uint64 data_size_hard_quota = 2;
102102
uint64 data_size_soft_quota = 3;

0 commit comments

Comments
 (0)