deniskuzZ commented on code in PR #5380:
URL: https://github.com/apache/hive/pull/5380#discussion_r1702008348
##########
ql/src/java/org/apache/hadoop/hive/ql/exec/GroupByOperator.java:
##########
@@ -964,7 +963,8 @@ private void flushHashTable(boolean complete) throws
HiveException {
}
int oldSize = hashAggregations.size();
- LOG.info("Hash Tbl flush: #hash table = {}", oldSize);
+ int flushSize = (int) (oldSize * hashAggrFlushPercent);
+ LOG.trace("Hash Tbl flush: #hash table = {}", oldSize);
Review Comment:
should we log the flush size as well?
--
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]