You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by ab...@apache.org on 2023/03/10 05:25:24 UTC

[hive] branch master updated: HIVE-27106. Improve TezSessionPoolManager#getSession Log - include jobNameSet (#4083) (Shilun Fan reviewed by Laszlo Bodor)

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 dfa8d7a8b64 HIVE-27106. Improve TezSessionPoolManager#getSession Log - include jobNameSet (#4083) (Shilun Fan reviewed by Laszlo Bodor)
dfa8d7a8b64 is described below

commit dfa8d7a8b6459af8bfc5b3942f5171148c18c461
Author: slfan1989 <55...@users.noreply.github.com>
AuthorDate: Fri Mar 10 13:25:12 2023 +0800

    HIVE-27106. Improve TezSessionPoolManager#getSession Log - include jobNameSet (#4083) (Shilun Fan reviewed by Laszlo Bodor)
---
 .../java/org/apache/hadoop/hive/ql/exec/tez/TezSessionPoolManager.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ql/src/java/org/apache/hadoop/hive/ql/exec/tez/TezSessionPoolManager.java b/ql/src/java/org/apache/hadoop/hive/ql/exec/tez/TezSessionPoolManager.java
index 4f12b5d6ff7..7fbd1573ee7 100644
--- a/ql/src/java/org/apache/hadoop/hive/ql/exec/tez/TezSessionPoolManager.java
+++ b/ql/src/java/org/apache/hadoop/hive/ql/exec/tez/TezSessionPoolManager.java
@@ -288,7 +288,7 @@ public class TezSessionPoolManager extends TezSessionPoolSession.AbstractTrigger
      */
     if (nonDefaultUser || !hasInitialSessions || hasQueue || jobNameSet) {
       LOG.info("QueueName: {} nonDefaultUser: {} defaultQueuePool: {} hasInitialSessions: {}" +
-                      " jobNameSet: ", queueName, nonDefaultUser, defaultSessionPool,
+                      " jobNameSet: {}.", queueName, nonDefaultUser, defaultSessionPool,
               hasInitialSessions, jobNameSet);
       return getNewSessionState(conf, queueName, doOpen);
     }