yifan-c commented on code in PR #4459:
URL: https://github.com/apache/cassandra/pull/4459#discussion_r2485617624
##########
src/java/org/apache/cassandra/tools/nodetool/stats/TableStatsPrinter.java:
##########
@@ -137,6 +137,7 @@ protected void printStatsTable(StatsTable table, String
tableDisplayName, String
out.println(indent + "Bloom filter off heap memory used: " +
table.bloomFilterOffHeapMemoryUsed);
if (table.indexSummaryOffHeapUsed)
out.println(indent + "Index summary off heap memory used: " +
table.indexSummaryOffHeapMemoryUsed);
+ out.println(indent + "Compression dictionaries memory used: " +
formatDataSize(Long.parseLong(table.compressionDictionariesMemoryUsed),
humanReadable));
Review Comment:
`table. compressionDictionariesMemoryUsed` is already a stringifyFileSize
string in `TableStatsHolder`
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]