eric-maynard commented on code in PR #1532: URL: https://github.com/apache/polaris/pull/1532#discussion_r2086165007
########## polaris-core/src/main/java/org/apache/polaris/core/config/FeatureConfiguration.java: ########## @@ -234,4 +233,36 @@ public static void enforceFeatureEnabledOrThrow( .description("If true, the policy-store endpoints are enabled") .defaultValue(true) .buildFeatureConfiguration(); + + public static final FeatureConfiguration<Boolean> ALLOW_SPECIFYING_FILE_IO_IMPL = + PolarisConfiguration.<Boolean>builder() + .key("ALLOW_SPECIFYING_FILE_IO_IMPL") + .description( + "Config key for whether to allow setting the FILE_IO_IMPL using catalog properties. " + + "Must only be enabled in dev/test environments, should not be in production systems.") + .defaultValue(false) + .buildFeatureConfiguration(); + + public static final FeatureConfiguration<Boolean> ALLOW_INSECURE_STORAGE_TYPES = Review Comment: > I think this property is good enough as it's generic to any storage type (not only FILE). Is that true? What qualifies a storage type as insecure? If the answer is "the storage type can use HadoopFileIO", then all 4 storage types are insecure. -- 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: issues-unsubscr...@polaris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org