maheshk114 commented on a change in pull request #793: HIVE-22267 : Support
password based authentication for HMS along-side kerberos authentication.
URL: https://github.com/apache/hive/pull/793#discussion_r331078880
##########
File path:
standalone-metastore/metastore-common/src/main/java/org/apache/hadoop/hive/metastore/conf/MetastoreConf.java
##########
@@ -629,6 +635,97 @@ public static ConfVars getMetaConf(String name) {
"hive-metastore/[email protected]",
"The service principal for the metastore Thrift server. \n" +
"The special string _HOST will be replaced automatically with the
correct host name."),
+ THRIFT_METASTORE_AUTHENTICATION("metastore.authentication",
"hive.metastore.authentication",
+ "NOSASL",
+ new StringSetValidator("NOSASL", "NONE", "LDAP", "KERBEROS", "CUSTOM"),
+ "Client authentication types.\n" +
+ " NONE: no authentication check\n" +
+ " LDAP: LDAP/AD based authentication\n" +
+ " KERBEROS: Kerberos/GSSAPI authentication\n" +
+ " CUSTOM: Custom authentication provider\n" +
+ " (Use with property
metastore.custom.authentication.class)\n" +
+ " CONFIG: username and password is specified in the config" +
+ " NOSASL: Raw transport"),
+ THRIFT_CUSTOM_AUTHENTICATION_CLASS("metastore.custom.authentication.class",
Review comment:
it should be named METASTORE_CUSTOM_AUTHENTICATION_CLASS
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]