如何为HiveServer2提供简单的属性文件或数据库用户/密码验证?
我已经发现this有关此问题的演示文稿,但不是英文版:(。
在Cloudera reference manual,他们谈论hive.server2.authentication
财产。它支持接口CUSTOM
的{{1}}实现。
如何实现?
答案 0 :(得分:11)
实质上,您必须提供可以执行身份验证的Java应用程序。也许您正在使用mysql或postgres数据库或平面文件等。您需要提供一个可以实现org.apache.hive.service.auth.PasswdAuthenticationProvider接口的jar。
一个简单的例子:
package org.apache.hive.service.auth.PasswdAuthenticationProvider.SampleAuth;
import java.util.Hashtable;
import javax.security.sasl.AuthenticationException;
import org.apache.hive.service.auth.PasswdAuthenticationProvider;
/*
javac -cp $HIVE_HOME/lib/hive-service-0.12.0-cdh5.0.0-beta-2.jar SampleAuthenticator.java -d .
jar cf sampleauth.jar hive
cp sampleauth.jar $HIVE_HOME/lib/.
*/
public class SampleAuthenticator implements PasswdAuthenticationProvider {
Hashtable<String, String> store = null;
public SampleAuthenticator () {
store = new Hashtable<String, String>();
store.put("user1", "passwd1");
store.put("user2", "passwd2");
}
@Override
public void Authenticate(String user, String password)
throws AuthenticationException {
String storedPasswd = store.get(user);
if (storedPasswd != null && storedPasswd.equals(password))
return;
throw new AuthenticationException("SampleAuthenticator: Error validating user");
}
}
然后在hive-site.xml中,使用新创建的自定义身份验证jar:
<property>
<name>hive.server2.authentication</name>
<value>CUSTOM</value>
</property>
<property>
<name>hive.server2.custom.authentication.class</name>
<value>org.apache.hive.service.auth.PasswdAuthenticationProvider.SampleAuth</value>
</property>