You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by se...@apache.org on 2017/02/17 19:50:23 UTC

hive git commit: HIVE-15954 : LLAP: some Tez INFO logs are too noisy (Sergey Shelukhin, reviewed by Prasanth Jayachandran)

Repository: hive
Updated Branches:
  refs/heads/master 6f6a5586e -> bba18181a


HIVE-15954 : LLAP: some Tez INFO logs are too noisy (Sergey Shelukhin, reviewed by Prasanth Jayachandran)


Project: http://git-wip-us.apache.org/repos/asf/hive/repo
Commit: http://git-wip-us.apache.org/repos/asf/hive/commit/bba18181
Tree: http://git-wip-us.apache.org/repos/asf/hive/tree/bba18181
Diff: http://git-wip-us.apache.org/repos/asf/hive/diff/bba18181

Branch: refs/heads/master
Commit: bba18181ad107fbea17c2d2bea9fd88873a4a943
Parents: 6f6a558
Author: Sergey Shelukhin <se...@apache.org>
Authored: Fri Feb 17 11:49:38 2017 -0800
Committer: Sergey Shelukhin <se...@apache.org>
Committed: Fri Feb 17 11:50:14 2017 -0800

----------------------------------------------------------------------
 .../src/main/resources/llap-daemon-log4j2.properties  | 14 +++++++++++++-
 1 file changed, 13 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hive/blob/bba18181/llap-server/src/main/resources/llap-daemon-log4j2.properties
----------------------------------------------------------------------
diff --git a/llap-server/src/main/resources/llap-daemon-log4j2.properties b/llap-server/src/main/resources/llap-daemon-log4j2.properties
index a9bfa34..31a34be 100644
--- a/llap-server/src/main/resources/llap-daemon-log4j2.properties
+++ b/llap-server/src/main/resources/llap-daemon-log4j2.properties
@@ -100,7 +100,19 @@ appender.query-routing.routes.route-mdc.file-mdc.app.layout.type = PatternLayout
 appender.query-routing.routes.route-mdc.file-mdc.app.layout.pattern = %d{ISO8601} %5p [%t (%X{fragmentId})] %c{2}: %m%n
 
 # list of all loggers
-loggers = PerfLogger, EncodedReader, NIOServerCnxn, ClientCnxnSocketNIO, DataNucleus, Datastore, JPOX, HistoryLogger, LlapIoImpl, LlapIoOrc, LlapIoCache, LlapIoLocking
+loggers = PerfLogger, EncodedReader, NIOServerCnxn, ClientCnxnSocketNIO, DataNucleus, Datastore, JPOX, HistoryLogger, LlapIoImpl, LlapIoOrc, LlapIoCache, LlapIoLocking, TezSM, TezSS, TezM, TezHC
+
+
+# shut up the Tez logs that log debug-level stuff on INFO
+
+logger.TezSM.name = org.apache.tez.runtime.library.common.shuffle.impl.ShuffleManager
+logger.TezSM.level = WARN
+logger.TezSS.name = org.apache.tez.runtime.library.common.shuffle.orderedgrouped.ShuffleScheduler
+logger.TezSS.level = WARN
+logger.TezM.name = org.apache.tez.runtime.library.common.sort.impl.TezMerger
+logger.TezM.level = WARN
+logger.TezHC.name = org.apache.tez.http.HttpConnection
+logger.TezHC.level = WARN
 
 logger.PerfLogger.name = org.apache.hadoop.hive.ql.log.PerfLogger
 logger.PerfLogger.level = DEBUG