This is an automated email from the ASF dual-hosted git repository.

abstractdog pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hive.git


The following commit(s) were added to refs/heads/master by this push:
     new 5c05cc76056 HIVE-28111: FSCountersSummary is only printed when LLAP IO 
is enabled (#5133) (Laszlo Bodor reviewed by Ayush Saxena)
5c05cc76056 is described below

commit 5c05cc760564e8f2c3ded576d93894bf4612956a
Author: Bodor Laszlo <bodorlaszlo0...@gmail.com>
AuthorDate: Thu Mar 21 10:06:41 2024 +0100

    HIVE-28111: FSCountersSummary is only printed when LLAP IO is enabled 
(#5133) (Laszlo Bodor reviewed by Ayush Saxena)
---
 .../org/apache/hadoop/hive/ql/exec/tez/monitoring/TezJobMonitor.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/ql/src/java/org/apache/hadoop/hive/ql/exec/tez/monitoring/TezJobMonitor.java 
b/ql/src/java/org/apache/hadoop/hive/ql/exec/tez/monitoring/TezJobMonitor.java
index fbbbf189e48..e5c4f2e09c5 100644
--- 
a/ql/src/java/org/apache/hadoop/hive/ql/exec/tez/monitoring/TezJobMonitor.java
+++ 
b/ql/src/java/org/apache/hadoop/hive/ql/exec/tez/monitoring/TezJobMonitor.java
@@ -445,8 +445,8 @@ public class TezJobMonitor {
       //llap IO summary
       if (HiveConf.getBoolVar(hiveConf, HiveConf.ConfVars.LLAP_IO_ENABLED, 
false)) {
         new LLAPioSummary(progressMap, dagClient).print(console);
-        new FSCountersSummary(progressMap, dagClient).print(console);
       }
+      new FSCountersSummary(progressMap, dagClient).print(console);
       String wmQueue = HiveConf.getVar(hiveConf, 
ConfVars.HIVE_SERVER2_TEZ_INTERACTIVE_QUEUE);
       if (wmQueue != null && !wmQueue.isEmpty()) {
         new LlapWmSummary(progressMap, dagClient).print(console);

Reply via email to