diff --git a/data/conf/hive-log4j2.xml b/data/conf/hive-log4j2.xml index 51173a0..11c8e79 100644 --- a/data/conf/hive-log4j2.xml +++ b/data/conf/hive-log4j2.xml @@ -25,7 +25,6 @@ DRFA ${sys:test.tmp.dir}/log hive.log - INFO @@ -95,8 +94,8 @@ - - + + diff --git a/data/conf/hive-site.xml b/data/conf/hive-site.xml index 8f7fb28..a58017e 100644 --- a/data/conf/hive-site.xml +++ b/data/conf/hive-site.xml @@ -241,12 +241,6 @@ - hive.ql.log.PerfLogger.level - WARN,DRFA - Used to change the perflogger level - - - hive.fetch.task.conversion minimal diff --git a/itests/hive-unit/src/test/java/org/apache/hive/service/cli/operation/TestOperationLoggingAPIWithMr.java b/itests/hive-unit/src/test/java/org/apache/hive/service/cli/operation/TestOperationLoggingAPIWithMr.java index 920b563..0155b75 100644 --- a/itests/hive-unit/src/test/java/org/apache/hive/service/cli/operation/TestOperationLoggingAPIWithMr.java +++ b/itests/hive-unit/src/test/java/org/apache/hive/service/cli/operation/TestOperationLoggingAPIWithMr.java @@ -62,8 +62,6 @@ public static void setUpBeforeClass() throws Exception { }; hiveConf = new HiveConf(); hiveConf.set(ConfVars.HIVE_SERVER2_LOGGING_OPERATION_LEVEL.varname, "verbose"); - // We need to set the below parameter to test performance level logging - hiveConf.set("hive.ql.log.PerfLogger.level", "INFO,DRFA"); miniHS2 = new MiniHS2(hiveConf); confOverlay = new HashMap(); confOverlay.put(ConfVars.HIVE_SUPPORT_CONCURRENCY.varname, "false"); diff --git a/itests/hive-unit/src/test/java/org/apache/hive/service/cli/operation/TestOperationLoggingAPIWithTez.java b/itests/hive-unit/src/test/java/org/apache/hive/service/cli/operation/TestOperationLoggingAPIWithTez.java index 31f34b2..ab29861 100644 --- a/itests/hive-unit/src/test/java/org/apache/hive/service/cli/operation/TestOperationLoggingAPIWithTez.java +++ b/itests/hive-unit/src/test/java/org/apache/hive/service/cli/operation/TestOperationLoggingAPIWithTez.java @@ -40,8 +40,6 @@ public static void setUpBeforeClass() throws Exception { }; hiveConf = new HiveConf(); hiveConf.set(ConfVars.HIVE_SERVER2_LOGGING_OPERATION_LEVEL.varname, "verbose"); - // We need to set the below parameter to test performance level logging - hiveConf.set("hive.ql.log.PerfLogger.level", "INFO,DRFA"); // Change the engine to tez hiveConf.setVar(ConfVars.HIVE_EXECUTION_ENGINE, "tez"); // Set tez execution summary to false. diff --git a/itests/hive-unit/src/test/java/org/apache/hive/service/cli/operation/TestOperationLoggingLayout.java b/itests/hive-unit/src/test/java/org/apache/hive/service/cli/operation/TestOperationLoggingLayout.java index 93c16de..56f6a31 100644 --- a/itests/hive-unit/src/test/java/org/apache/hive/service/cli/operation/TestOperationLoggingLayout.java +++ b/itests/hive-unit/src/test/java/org/apache/hive/service/cli/operation/TestOperationLoggingLayout.java @@ -39,8 +39,6 @@ public static void setUpBeforeClass() throws Exception { tableName = "TestOperationLoggingLayout_table"; hiveConf = new HiveConf(); hiveConf.set(HiveConf.ConfVars.HIVE_SERVER2_LOGGING_OPERATION_LEVEL.varname, "execution"); - // We need to set the below parameter to test performance level logging - hiveConf.set("hive.ql.log.PerfLogger.level", "INFO,DRFA"); miniHS2 = new MiniHS2(hiveConf); confOverlay = new HashMap(); confOverlay.put(HiveConf.ConfVars.HIVE_SUPPORT_CONCURRENCY.varname, "false");