diff --git a/docs/layouts/shortcodes/generated/catalog_configuration.html b/docs/layouts/shortcodes/generated/catalog_configuration.html index e685559447e2d..cab6e731e8511 100644 --- a/docs/layouts/shortcodes/generated/catalog_configuration.html +++ b/docs/layouts/shortcodes/generated/catalog_configuration.html @@ -62,11 +62,17 @@ Boolean Enable Catalog Lock. + +
lock.type
+ (none) + String + The Lock Type for Catalog, such as 'hive', 'zookeeper'. +
metastore
"filesystem" String - Metastore of paimon catalog, supports filesystem、hive and jdbc. + Metastore of paimon catalog, supports filesystem, hive and jdbc.
table.type
diff --git a/paimon-common/src/main/java/org/apache/paimon/options/CatalogOptions.java b/paimon-common/src/main/java/org/apache/paimon/options/CatalogOptions.java index 9f7e995d44030..f00a35a750940 100644 --- a/paimon-common/src/main/java/org/apache/paimon/options/CatalogOptions.java +++ b/paimon-common/src/main/java/org/apache/paimon/options/CatalogOptions.java @@ -40,7 +40,7 @@ public class CatalogOptions { .stringType() .defaultValue("filesystem") .withDescription( - "Metastore of paimon catalog, supports filesystem、hive and jdbc."); + "Metastore of paimon catalog, supports filesystem, hive and jdbc."); public static final ConfigOption URI = ConfigOptions.key("uri")