diff --git ql/src/java/org/apache/hadoop/hive/ql/exec/tez/monitoring/LLAPioSummary.java ql/src/java/org/apache/hadoop/hive/ql/exec/tez/monitoring/LLAPioSummary.java index 1d13a06358..3db603fc1f 100644 --- ql/src/java/org/apache/hadoop/hive/ql/exec/tez/monitoring/LLAPioSummary.java +++ ql/src/java/org/apache/hadoop/hive/ql/exec/tez/monitoring/LLAPioSummary.java @@ -35,11 +35,10 @@ public class LLAPioSummary implements PrintSummary { - private static final String LLAP_SUMMARY_HEADER_FORMAT = "%10s %9s %9s %10s %9s %10s %11s %8s %9s"; + private static final String LLAP_SUMMARY_HEADER_FORMAT = "%10s %9s %9s %10s %9s %10s %9s"; private static final String LLAP_IO_SUMMARY_HEADER = "LLAP IO Summary"; private static final String LLAP_SUMMARY_HEADER = String.format(LLAP_SUMMARY_HEADER_FORMAT, - "VERTICES", "ROWGROUPS", "META_HIT", "META_MISS", "DATA_HIT", "DATA_MISS", - "ALLOCATION", "USED", "TOTAL_IO"); + "VERTICES", "ROWGROUPS", "META_HIT", "META_MISS", "DATA_HIT", "DATA_MISS", "TOTAL_IO"); @@ -93,10 +92,6 @@ private String vertexSummary(String vertexName, String counterGroup, TezCounters counterGroup, LlapIOCounters.CACHE_HIT_BYTES.name()); final long cacheMissBytes = getCounterValueByGroupName(vertexCounters, counterGroup, LlapIOCounters.CACHE_MISS_BYTES.name()); - final long allocatedBytes = getCounterValueByGroupName(vertexCounters, - counterGroup, LlapIOCounters.ALLOCATED_BYTES.name()); - final long allocatedUsedBytes = getCounterValueByGroupName(vertexCounters, - counterGroup, LlapIOCounters.ALLOCATED_USED_BYTES.name()); final long totalIoTime = getCounterValueByGroupName(vertexCounters, counterGroup, LlapIOCounters.TOTAL_IO_TIME_NS.name()); @@ -108,8 +103,6 @@ private String vertexSummary(String vertexName, String counterGroup, TezCounters metadataCacheMiss, Utilities.humanReadableByteCount(cacheHitBytes), Utilities.humanReadableByteCount(cacheMissBytes), - Utilities.humanReadableByteCount(allocatedBytes), - Utilities.humanReadableByteCount(allocatedUsedBytes), secondsFormatter.format(totalIoTime / 1000_000_000.0) + "s"); }