我在java中使用hadoop库,但出现以下异常:
Exception in thread "main" org.apache.hadoop.security.KerberosAuthException: failure to login: javax.security.auth.login.LoginException: java.lang.NullPointerException: invalid null input: name
我只是使用本地文件系统,没有连接到外部hadoop集群。我只想以某种方式传递到配置中,通过kerberos禁用auth。我该怎么做?
初始化
public FileSystem getHadoopFs() {
return new LocalFileSystem() {
@Override
public Configuration getConf() {
return new Configuration();
}
};
}
暂无答案!
目前还没有任何答案,快来回答吧!