Github user ppadma commented on a diff in the pull request:
https://github.com/apache/drill/pull/1227#discussion_r183171726
--- Diff:
exec/java-exec/src/main/java/org/apache/drill/exec/physical/impl/join/HashJoinBatch.java
---
@@ -560,6 +554,40 @@ public void close() {
super.close();
}
+ @Override
+ protected void updateBatchMemoryManagerStats() {
+ stats.setLongStat(Metric.LEFT_INPUT_BATCH_COUNT,
batchMemoryManager.getNumIncomingBatches(LEFT_INDEX));
--- End diff --
@sohami I will create a JIRA and address that in a separate PR. For now, I
would like to override this method. is that ok ?
---