Skip to content

Commit d6bcdf6

Browse files
authored
HIVE-28841: Rename hive.metastore.catalog.* to hive.metastore.iceberg.catalog.* (#5711)
1 parent 84b4287 commit d6bcdf6

File tree

1 file changed

+10
-10
lines changed
  • standalone-metastore/metastore-common/src/main/java/org/apache/hadoop/hive/metastore/conf

1 file changed

+10
-10
lines changed

standalone-metastore/metastore-common/src/main/java/org/apache/hadoop/hive/metastore/conf/MetastoreConf.java

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1829,29 +1829,29 @@ public enum ConfVars {
18291829
new StringSetValidator("simple", "jwt"),
18301830
"Property-maps servlet authentication method (simple or jwt)."
18311831
),
1832-
ICEBERG_CATALOG_SERVLET_FACTORY("hive.metastore.catalog.servlet.factory",
1833-
"hive.metastore.catalog.servlet.factory",
1832+
ICEBERG_CATALOG_SERVLET_FACTORY("metastore.iceberg.catalog.servlet.factory",
1833+
"hive.metastore.iceberg.catalog.servlet.factory",
18341834
"org.apache.iceberg.rest.HMSCatalogFactory",
18351835
"HMS Iceberg Catalog servlet factory class name."
18361836
+ "The factory needs to expose a method: "
18371837
+ "public static HttpServlet createServlet(Configuration configuration);"
18381838
),
1839-
ICEBERG_CATALOG_SERVLET_PATH("hive.metastore.catalog.servlet.path",
1840-
"hive.metastore.catalog.servlet.path", "iceberg",
1839+
ICEBERG_CATALOG_SERVLET_PATH("metastore.iceberg.catalog.servlet.path",
1840+
"hive.metastore.iceberg.catalog.servlet.path", "iceberg",
18411841
"HMS Iceberg Catalog servlet path component of URL endpoint."
18421842
),
1843-
ICEBERG_CATALOG_SERVLET_PORT("hive.metastore.catalog.servlet.port",
1844-
"hive.metastore.catalog.servlet.port", -1,
1843+
ICEBERG_CATALOG_SERVLET_PORT("metastore.iceberg.catalog.servlet.port",
1844+
"hive.metastore.iceberg.catalog.servlet.port", -1,
18451845
"HMS Iceberg Catalog servlet server port. Negative value disables the servlet," +
18461846
" 0 will let the system determine the catalog server port," +
18471847
" positive value will be used as-is."
18481848
),
1849-
ICEBERG_CATALOG_SERVLET_AUTH("hive.metastore.catalog.servlet.auth",
1850-
"hive.metastore.catalog.servlet.auth", "jwt", new StringSetValidator("simple", "jwt"),
1849+
ICEBERG_CATALOG_SERVLET_AUTH("metastore.iceberg.catalog.servlet.auth",
1850+
"hive.metastore.iceberg.catalog.servlet.auth", "jwt", new StringSetValidator("simple", "jwt"),
18511851
"HMS Iceberg Catalog servlet authentication method (simple or jwt)."
18521852
),
1853-
ICEBERG_CATALOG_CACHE_EXPIRY("hive.metastore.catalog.cache.expiry",
1854-
"hive.metastore.catalog.cache.expiry", 60_000L,
1853+
ICEBERG_CATALOG_CACHE_EXPIRY("metastore.iceberg.catalog.cache.expiry",
1854+
"hive.metastore.iceberg.catalog.cache.expiry", 60_000L,
18551855
"HMS Iceberg Catalog cache expiry."
18561856
),
18571857
HTTPSERVER_THREADPOOL_MIN("hive.metastore.httpserver.threadpool.min",

0 commit comments

Comments
 (0)