beryllw commented on code in PR #1359:
URL: https://github.com/apache/fluss/pull/1359#discussion_r2320901277
##########
fluss-common/src/main/java/com/alibaba/fluss/config/ConfigOptions.java:
##########
@@ -61,6 +61,12 @@ public class ConfigOptions {
"ch.qos.logback"
};
+ @Internal
+ public static final String[] PARENT_FIRST_HDFS_PATTERNS =
+ new String[] {
+ "hdfs-site", "core-site", "org.apache.hadoop.", "META-INF",
Review Comment:
Option 3: Adding the configuration
`fluss.hadoop.hadoop.security.authentication` does not work. The root cause is
that when initializing the `UserGroupInformation` class, it uses an empty
Configuration instance instead of our Fluss-specific Hadoop configuration.
I noticed that Flink includes a security module which is responsible for
setting the configuration of `UserGroupInformation` — this might be relevant to
our issue. For reference, see the following link:
https://github.com/apache/flink/blob/78136133fbec4ca145dec66d4bc0c324c8e16d82/flink-runtime/src/main/java/org/apache/flink/runtime/security/modules/HadoopModule.java#L68-L70
--
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]