diqiu50 commented on code in PR #8777:
URL: https://github.com/apache/gravitino/pull/8777#discussion_r2510740294
##########
catalogs/hadoop-common/src/main/java/org/apache/gravitino/catalog/hadoop/fs/Constants.java:
##########
@@ -27,4 +27,25 @@ public class Constants {
// Name of the built-in HDFS file system provider
public static final String BUILTIN_HDFS_FS_PROVIDER = "builtin-hdfs";
+
+ // Name of the configuration property for HDFS config resources
+ public static final String HDFS_CONFIG_RESOURCES = "hdfs.config.resources";
+ // Name of the configuration property to disable HDFS FileSystem cache
+ public static final String FS_DISABLE_CACHE = "fs.hdfs.impl.disable.cache";
+ // Name of the configuration property for HDFS authentication type
+ public static final String HADOOP_SECURITY_AUTHENTICATION =
"hadoop.security.authentication";
+ // Name of the configuration property for Kerberos principal
+ public static final String HADOOP_SECURITY_PRINCIPAL =
+ "hadoop.security.authentication.kerberos.principal";
+ // Name of the configuration property for Kerberos keytab
+ public static final String HADOOP_SECURITY_KEYTAB =
+ "hadoop.security.authentication.kerberos.keytab";
+ // Name of the configuration property for Kerberos krb5.conf location
+ public static final String HADOOP_KRB5_CONF =
"hadoop.security.authentication.kerberos.krb5.conf";
+ // Environment variable for Java Kerberos configuration
+ public static final String SECURITY_KRB5_ENV = "java.security.krb5.conf";
+ // Supported authentication types
+ public static final String AUTH_KERBEROS = "kerberos";
Review Comment:
The AuthenticationConfig in the `fileset-catalog` module
--
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]