[ https://issues.apache.org/jira/browse/HIVE-22267?focusedWorklogId=323399&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-323399 ]
ASF GitHub Bot logged work on HIVE-22267: ----------------------------------------- Author: ASF GitHub Bot Created on: 04/Oct/19 12:43 Start Date: 04/Oct/19 12:43 Worklog Time Spent: 10m Work Description: ashutosh-bapat commented on pull request #793: HIVE-22267 : Support password based authentication for HMS along-side kerberos authentication. URL: https://github.com/apache/hive/pull/793#discussion_r331481151 ########## 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/_h...@example.com", "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: Done. ---------------------------------------------------------------- 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: us...@infra.apache.org Issue Time Tracking ------------------- Worklog Id: (was: 323399) Time Spent: 2h 20m (was: 2h 10m) > Support password based authentication in HMS > -------------------------------------------- > > Key: HIVE-22267 > URL: https://issues.apache.org/jira/browse/HIVE-22267 > Project: Hive > Issue Type: New Feature > Reporter: Ashutosh Bapat > Assignee: Ashutosh Bapat > Priority: Major > Labels: pull-request-available > Attachments: HIVE-22267.00.patch, HIVE-22267.01.patch, > HIVE-22267.02.patch, HIVE-22267.03.patch, HIVE-22267.04.patch, > HIVE-22267.05.patch, HIVE-22267.06.patch, HIVE-22267.07.patch, > HIVE-22267.08.patch > > Time Spent: 2h 20m > Remaining Estimate: 0h > > Similar to HS2, support password based authentication in HMS. > Right now we provide LDAP and CONFIG based options. The later allows to set > user and password in config and is used only for testing. -- This message was sent by Atlassian Jira (v8.3.4#803005)