jerryshao commented on code in PR #5020:
URL: https://github.com/apache/gravitino/pull/5020#discussion_r1802362158
##########
catalogs/catalog-hadoop/src/main/java/org/apache/gravitino/catalog/hadoop/HadoopCatalogPropertiesMetadata.java:
##########
@@ -44,8 +62,24 @@ public class HadoopCatalogPropertiesMetadata extends
BaseCatalogPropertiesMetada
false /* immutable */,
null,
false /* hidden */))
+ .put(
+ FILESYSTEM_PROVIDERS,
+ PropertyEntry.stringOptionalPropertyEntry(
+ FILESYSTEM_PROVIDERS,
+ "The file system provider names, separated by comma",
+ false /* immutable */,
+ null,
+ false /* hidden */))
+ .put(
+ DEFAULT_FS_PROVIDER,
+ PropertyEntry.stringOptionalPropertyEntry(
+ DEFAULT_FS_PROVIDER,
+ "Default file system provider name",
+ false /* immutable */,
+ LocalFileSystemProvider.class.getSimpleName(),
Review Comment:
Should it be "builtin-local" as a default value for this property?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]