diff --git a/common/src/java/org/apache/hadoop/hive/conf/HiveConf.java b/common/src/java/org/apache/hadoop/hive/conf/HiveConf.java index 8b2b333e27..5f48008c36 100644 --- a/common/src/java/org/apache/hadoop/hive/conf/HiveConf.java +++ b/common/src/java/org/apache/hadoop/hive/conf/HiveConf.java @@ -899,7 +899,7 @@ private static void populateLlapDaemonVarsSet(Set llapDaemonVarsSetLocal "Default property values for newly created tables"), DDL_CTL_PARAMETERS_WHITELIST("hive.ddl.createtablelike.properties.whitelist", "", "Table Properties to copy over when executing a Create Table Like."), - METASTORE_RAW_STORE_IMPL("hive.metastore.rawstore.impl", "org.apache.hadoop.hive.metastore.ObjectStore", + METASTORE_RAW_STORE_IMPL("hive.metastore.rawstore.impl", "org.apache.hadoop.hive.metastore.cache.CachedStore", "Name of the class that implements org.apache.hadoop.hive.metastore.rawstore interface. \n" + "This class is used to store and retrieval of raw metadata objects such as table, database"), METASTORE_CACHED_RAW_STORE_IMPL("hive.metastore.cached.rawstore.impl", "org.apache.hadoop.hive.metastore.ObjectStore", diff --git a/data/conf/hive-site.xml b/data/conf/hive-site.xml index 6908bb1b7a..0155187ba7 100644 --- a/data/conf/hive-site.xml +++ b/data/conf/hive-site.xml @@ -129,11 +129,16 @@ hive.metastore.rawstore.impl - org.apache.hadoop.hive.metastore.ObjectStore + org.apache.hadoop.hive.metastore.cache.CachedStore Name of the class that implements org.apache.hadoop.hive.metastore.rawstore interface. This class is used to store and retrieval of raw metadata objects such as table, database + hive.metastore.cached.rawstore.impl + org.apache.hadoop.hive.metastore.ObjectStore + + + hive.querylog.location ${test.tmp.dir}/tmp Location of the structured hive logs diff --git a/data/conf/llap/hive-site.xml b/data/conf/llap/hive-site.xml index cdda875ddb..8fecde117f 100644 --- a/data/conf/llap/hive-site.xml +++ b/data/conf/llap/hive-site.xml @@ -145,11 +145,16 @@ hive.metastore.rawstore.impl - org.apache.hadoop.hive.metastore.ObjectStore + org.apache.hadoop.hive.metastore.cache.CachedStore Name of the class that implements org.apache.hadoop.hive.metastore.rawstore interface. This class is used to store and retrieval of raw metadata objects such as table, database + hive.metastore.cached.rawstore.impl + org.apache.hadoop.hive.metastore.ObjectStore + + + hive.querylog.location ${test.tmp.dir}/tmp Location of the structured hive logs diff --git a/data/conf/perf-reg/tez/hive-site.xml b/data/conf/perf-reg/tez/hive-site.xml index 012369fdd1..2ce866000c 100644 --- a/data/conf/perf-reg/tez/hive-site.xml +++ b/data/conf/perf-reg/tez/hive-site.xml @@ -144,11 +144,16 @@ hive.metastore.rawstore.impl - org.apache.hadoop.hive.metastore.ObjectStore + org.apache.hadoop.hive.metastore.cache.CachedStore Name of the class that implements org.apache.hadoop.hive.metastore.rawstore interface. This class is used to store and retrieval of raw metadata objects such as table, database + hive.metastore.cached.rawstore.impl + org.apache.hadoop.hive.metastore.ObjectStore + + + hive.querylog.location ${test.tmp.dir}/tmp Location of the structured hive logs diff --git a/data/conf/tez/hive-site.xml b/data/conf/tez/hive-site.xml index 451967811d..30e12881da 100644 --- a/data/conf/tez/hive-site.xml +++ b/data/conf/tez/hive-site.xml @@ -139,11 +139,16 @@ hive.metastore.rawstore.impl - org.apache.hadoop.hive.metastore.ObjectStore + org.apache.hadoop.hive.metastore.cache.CachedStore Name of the class that implements org.apache.hadoop.hive.metastore.rawstore interface. This class is used to store and retrieval of raw metadata objects such as table, database + hive.metastore.cached.rawstore.impl + org.apache.hadoop.hive.metastore.ObjectStore + + + hive.querylog.location ${test.tmp.dir}/tmp Location of the structured hive logs