You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by kg...@apache.org on 2019/11/16 03:41:58 UTC

[hive] branch master updated: HIVE-22493: Scheduled Query Execution Failure in Tests (Zoltan Haindrich reviewed by Slim Bouguerra)

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

kgyrtkirk 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 af0f325  HIVE-22493: Scheduled Query Execution Failure in Tests (Zoltan Haindrich reviewed by Slim Bouguerra)
af0f325 is described below

commit af0f325a56857b22be2ea82c44671d5c39aebcd9
Author: Zoltan Haindrich <ki...@rxd.hu>
AuthorDate: Sat Nov 16 03:40:36 2019 +0000

    HIVE-22493: Scheduled Query Execution Failure in Tests (Zoltan Haindrich reviewed by Slim Bouguerra)
    
    Signed-off-by: Zoltan Haindrich <zh...@cloudera.com>
---
 itests/util/src/main/java/org/apache/hive/jdbc/miniHS2/MiniHS2.java | 1 +
 1 file changed, 1 insertion(+)

diff --git a/itests/util/src/main/java/org/apache/hive/jdbc/miniHS2/MiniHS2.java b/itests/util/src/main/java/org/apache/hive/jdbc/miniHS2/MiniHS2.java
index 27c949d..1b60a51 100644
--- a/itests/util/src/main/java/org/apache/hive/jdbc/miniHS2/MiniHS2.java
+++ b/itests/util/src/main/java/org/apache/hive/jdbc/miniHS2/MiniHS2.java
@@ -245,6 +245,7 @@ public class MiniHS2 extends AbstractHiveService {
     hiveConf.setLongVar(ConfVars.HIVE_SERVER2_MAX_START_ATTEMPTS, 3l);
     hiveConf.setTimeVar(ConfVars.HIVE_SERVER2_SLEEP_INTERVAL_BETWEEN_START_ATTEMPTS, 10,
         TimeUnit.SECONDS);
+    hiveConf.setBoolVar(ConfVars.HIVE_SCHEDULED_QUERIES_EXECUTOR_ENABLED, false);
     this.miniClusterType = miniClusterType;
     this.useMiniKdc = useMiniKdc;
     this.serverPrincipal = serverPrincipal;