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 e980c7a5e6b HIVE-28210: Print Tez summary by default in tests (#5211)
(Laszlo Bodor reviewed by Stamatis Zampetakis)
e980c7a5e6b is described below
commit e980c7a5e6ba3adec473a30e3ea0a539a5eae257
Author: Bodor Laszlo <[email protected]>
AuthorDate: Thu Apr 25 12:14:03 2024 +0200
HIVE-28210: Print Tez summary by default in tests (#5211) (Laszlo Bodor
reviewed by Stamatis Zampetakis)
---
data/conf/hive-site.xml | 5 +++++
data/conf/iceberg/llap/hive-site.xml | 5 +++++
data/conf/iceberg/tez/hive-site.xml | 5 +++++
data/conf/llap/hive-site.xml | 5 +++++
data/conf/perf/tpcds30tb/tez/hive-site.xml | 4 ++++
data/conf/tez/hive-site.xml | 5 +++++
packaging/src/docker/conf/hive-site.xml | 4 ++++
7 files changed, 33 insertions(+)
diff --git a/data/conf/hive-site.xml b/data/conf/hive-site.xml
index b4ef1479a53..eec76484835 100644
--- a/data/conf/hive-site.xml
+++ b/data/conf/hive-site.xml
@@ -369,4 +369,9 @@
<name>hive.async.cleanup.service.thread.count</name>
<value>4</value>
</property>
+
+ <property>
+ <name>hive.tez.exec.print.summary</name>
+ <value>true</value>
+ </property>
</configuration>
diff --git a/data/conf/iceberg/llap/hive-site.xml
b/data/conf/iceberg/llap/hive-site.xml
index fb941d991c4..7a99c50c8c2 100644
--- a/data/conf/iceberg/llap/hive-site.xml
+++ b/data/conf/iceberg/llap/hive-site.xml
@@ -278,6 +278,11 @@
<value> -Dlog4j.configurationFile=tez-container-log4j2.properties
-Dtez.container.log.level=INFO -Dtez.container.root.logger=CLA </value>
</property>
+ <property>
+ <name>hive.tez.exec.print.summary</name>
+ <value>true</value>
+ </property>
+
<property>
<name>hive.llap.cache.allow.synthetic.fileid</name>
<value>true</value>
diff --git a/data/conf/iceberg/tez/hive-site.xml
b/data/conf/iceberg/tez/hive-site.xml
index 272859dd915..248adad2d83 100644
--- a/data/conf/iceberg/tez/hive-site.xml
+++ b/data/conf/iceberg/tez/hive-site.xml
@@ -264,6 +264,11 @@
<value> -Dlog4j.configurationFile=tez-container-log4j2.properties
-Dtez.container.log.level=INFO -Dtez.container.root.logger=CLA </value>
</property>
+<property>
+ <name>hive.tez.exec.print.summary</name>
+ <value>true</value>
+</property>
+
<property>
<name>hive.orc.splits.ms.footer.cache.enabled</name>
<value>true</value>
diff --git a/data/conf/llap/hive-site.xml b/data/conf/llap/hive-site.xml
index fe69d81de7e..4811dca19d8 100644
--- a/data/conf/llap/hive-site.xml
+++ b/data/conf/llap/hive-site.xml
@@ -275,6 +275,11 @@
<value> -Dlog4j.configurationFile=tez-container-log4j2.properties
-Dtez.container.log.level=INFO -Dtez.container.root.logger=CLA </value>
</property>
+<property>
+ <name>hive.tez.exec.print.summary</name>
+ <value>true</value>
+</property>
+
<property>
<name>hive.llap.cache.allow.synthetic.fileid</name>
<value>true</value>
diff --git a/data/conf/perf/tpcds30tb/tez/hive-site.xml
b/data/conf/perf/tpcds30tb/tez/hive-site.xml
index 01cd6743dc7..b806e2b912b 100644
--- a/data/conf/perf/tpcds30tb/tez/hive-site.xml
+++ b/data/conf/perf/tpcds30tb/tez/hive-site.xml
@@ -182,6 +182,10 @@
<name>hive.tez.auto.reducer.parallelism</name>
<value>true</value>
</property>
+ <property>
+ <name>hive.tez.exec.print.summary</name>
+ <value>true</value>
+ </property>
<!-- Metastore properties -->
<property>
<name>hive.metastore.db.type</name>
diff --git a/data/conf/tez/hive-site.xml b/data/conf/tez/hive-site.xml
index 384bc7ee4b4..e797e544dae 100644
--- a/data/conf/tez/hive-site.xml
+++ b/data/conf/tez/hive-site.xml
@@ -265,6 +265,11 @@
<value> -Dlog4j.configurationFile=tez-container-log4j2.properties
-Dtez.container.log.level=INFO -Dtez.container.root.logger=CLA </value>
</property>
+<property>
+ <name>hive.tez.exec.print.summary</name>
+ <value>true</value>
+</property>
+
<property>
<name>hive.orc.splits.ms.footer.cache.enabled</name>
<value>true</value>
diff --git a/packaging/src/docker/conf/hive-site.xml
b/packaging/src/docker/conf/hive-site.xml
index 89823059eb7..b7eec691f26 100644
--- a/packaging/src/docker/conf/hive-site.xml
+++ b/packaging/src/docker/conf/hive-site.xml
@@ -24,6 +24,10 @@
<name>hive.tez.exec.inplace.progress</name>
<value>false</value>
</property>
+ <property>
+ <name>hive.tez.exec.print.summary</name>
+ <value>true</value>
+ </property>
<property>
<name>hive.exec.scratchdir</name>
<value>/opt/hive/scratch_dir</value>