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

okumin 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 d6bcdf652d1 HIVE-28841: Rename hive.metastore.catalog.* to 
hive.metastore.iceberg.catalog.* (#5711)
d6bcdf652d1 is described below

commit d6bcdf652d1e59584a5fc7982ff93536abec935b
Author: Shohei Okumiya <[email protected]>
AuthorDate: Thu May 29 12:37:05 2025 +0900

    HIVE-28841: Rename hive.metastore.catalog.* to 
hive.metastore.iceberg.catalog.* (#5711)
---
 .../hadoop/hive/metastore/conf/MetastoreConf.java    | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git 
a/standalone-metastore/metastore-common/src/main/java/org/apache/hadoop/hive/metastore/conf/MetastoreConf.java
 
b/standalone-metastore/metastore-common/src/main/java/org/apache/hadoop/hive/metastore/conf/MetastoreConf.java
index 21ee4ce26c3..6f13260bd3a 100644
--- 
a/standalone-metastore/metastore-common/src/main/java/org/apache/hadoop/hive/metastore/conf/MetastoreConf.java
+++ 
b/standalone-metastore/metastore-common/src/main/java/org/apache/hadoop/hive/metastore/conf/MetastoreConf.java
@@ -1829,29 +1829,29 @@ public enum ConfVars {
             new StringSetValidator("simple", "jwt"),
         "Property-maps servlet authentication method (simple or jwt)."
     ),
-    ICEBERG_CATALOG_SERVLET_FACTORY("hive.metastore.catalog.servlet.factory",
-            "hive.metastore.catalog.servlet.factory",
+    
ICEBERG_CATALOG_SERVLET_FACTORY("metastore.iceberg.catalog.servlet.factory",
+            "hive.metastore.iceberg.catalog.servlet.factory",
             "org.apache.iceberg.rest.HMSCatalogFactory",
             "HMS Iceberg Catalog servlet factory class name."
             + "The factory needs to expose a method: "
             + "public static HttpServlet createServlet(Configuration 
configuration);"
     ),
-    ICEBERG_CATALOG_SERVLET_PATH("hive.metastore.catalog.servlet.path",
-        "hive.metastore.catalog.servlet.path", "iceberg",
+    ICEBERG_CATALOG_SERVLET_PATH("metastore.iceberg.catalog.servlet.path",
+        "hive.metastore.iceberg.catalog.servlet.path", "iceberg",
         "HMS Iceberg Catalog servlet path component of URL endpoint."
     ),
-    ICEBERG_CATALOG_SERVLET_PORT("hive.metastore.catalog.servlet.port",
-        "hive.metastore.catalog.servlet.port", -1,
+    ICEBERG_CATALOG_SERVLET_PORT("metastore.iceberg.catalog.servlet.port",
+        "hive.metastore.iceberg.catalog.servlet.port", -1,
         "HMS Iceberg Catalog servlet server port. Negative value disables the 
servlet," +
             " 0 will let the system determine the catalog server port," +
             " positive value will be used as-is."
     ),
-    ICEBERG_CATALOG_SERVLET_AUTH("hive.metastore.catalog.servlet.auth",
-        "hive.metastore.catalog.servlet.auth", "jwt", new 
StringSetValidator("simple", "jwt"),
+    ICEBERG_CATALOG_SERVLET_AUTH("metastore.iceberg.catalog.servlet.auth",
+        "hive.metastore.iceberg.catalog.servlet.auth", "jwt", new 
StringSetValidator("simple", "jwt"),
         "HMS Iceberg Catalog servlet authentication method (simple or jwt)."
     ),
-    ICEBERG_CATALOG_CACHE_EXPIRY("hive.metastore.catalog.cache.expiry",
-        "hive.metastore.catalog.cache.expiry", 60_000L,
+    ICEBERG_CATALOG_CACHE_EXPIRY("metastore.iceberg.catalog.cache.expiry",
+        "hive.metastore.iceberg.catalog.cache.expiry", 60_000L,
         "HMS Iceberg Catalog cache expiry."
     ),
     HTTPSERVER_THREADPOOL_MIN("hive.metastore.httpserver.threadpool.min",

Reply via email to