如何访问以编程方式启用 Kerberos 的 hadoop 集群?

How to access hadoop cluster which is Kerberos enabled programmatically?

我有这段代码可以从 Hadoop 文件系统中获取文件。我在单个节点上安装了 hadoop,并从我的本地计算机 运行 这段代码查看它是否能够从该节点上的 HDFS 设置中获取文件。成功了。

package com.hdfs.test.hdfs_util;
/*  Copy file from hdfs to local disk without hadoop installation
*  
*  params are something like 
*  hdfs://node01.sindice.net:8020 /user/bob/file.zip file.zip
*
*/

import java.io.IOException;

import org.apache.hadoop.conf.Configuration;

import org.apache.hadoop.fs.FileSystem;

import org.apache.hadoop.fs.Path;

public class HDFSdownloader{

public static void main(String[] args) throws Exception {

    System.getProperty("java.classpath");
    if (args.length != 3) {

        System.out.println("use: HDFSdownloader hdfs src dst");

        System.exit(1);

    }

    System.out.println(HDFSdownloader.class.getName());
    HDFSdownloader dw = new HDFSdownloader();

    dw.copy2local(args[0], args[1], args[2]);

}

private void copy2local(String hdfs, String src, String dst) throws IOException {

    System.out.println("!! Entering function !!");
    Configuration conf = new Configuration();
    conf.set("fs.hdfs.impl", org.apache.hadoop.hdfs.DistributedFileSystem.class.getName());
    conf.set("fs.file.impl", org.apache.hadoop.fs.LocalFileSystem.class.getName());


    conf.set("fs.default.name", hdfs);

    FileSystem.get(conf).copyToLocalFile(new Path(src), new Path(dst));

    System.out.println("!! copytoLocalFile Reached!!");

}

}

现在我采用了相同的代码,将其捆绑在一个 jar 中并尝试 运行 它在另一个节点(比如 B)上。这次代码必须从适当的分布式 Hadoop 集群中获取文件。该集群中启用了 Kerberos。

代码 运行 但出现异常:

Exception in thread "main" org.apache.hadoop.security.AccessControlException: SIMPLE authentication is not enabled.  Available:[TOKEN, KERBEROS]
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
at org.apache.hadoop.ipc.RemoteException.instantiateException(RemoteException.java:106)
at org.apache.hadoop.ipc.RemoteException.unwrapRemoteException(RemoteException.java:73)
at org.apache.hadoop.hdfs.DFSClient.getFileInfo(DFSClient.java:2115)
at org.apache.hadoop.hdfs.DistributedFileSystem.doCall(DistributedFileSystem.java:1305)
at org.apache.hadoop.hdfs.DistributedFileSystem.doCall(DistributedFileSystem.java:1301)
at org.apache.hadoop.fs.FileSystemLinkResolver.resolve(FileSystemLinkResolver.java:81)
at org.apache.hadoop.hdfs.DistributedFileSystem.getFileStatus(DistributedFileSystem.java:1317)
at org.apache.hadoop.fs.FileUtil.copy(FileUtil.java:337)
at org.apache.hadoop.fs.FileUtil.copy(FileUtil.java:289)
at org.apache.hadoop.fs.FileSystem.copyToLocalFile(FileSystem.java:2030)
at org.apache.hadoop.fs.FileSystem.copyToLocalFile(FileSystem.java:1999)
at org.apache.hadoop.fs.FileSystem.copyToLocalFile(FileSystem.java:1975)
at com.hdfs.test.hdfs_util.HDFSdownloader.copy2local(HDFSdownloader.java:49)
at com.hdfs.test.hdfs_util.HDFSdownloader.main(HDFSdownloader.java:35)

有没有办法以编程方式生成此代码运行。由于某些原因,我无法在源节点上安装kinit。

这是一个代码片段,适用于您上面描述的场景,即以编程方式访问启用了 kerberos 的集群。需要注意的要点是

  • 在 UserGroupInformation 中提供密钥表文件位置
  • 在 JVM 参数中提供 kerberos 领域详细信息 - krb5.conf 文件
  • 定义hadoop安全认证方式为kerberos

    import org.apache.hadoop.conf.Configuration;
    import org.apache.hadoop.fs.FileStatus;
    import org.apache.hadoop.fs.FileSystem;
    import org.apache.hadoop.fs.Path;
    import org.apache.hadoop.security.UserGroupInformation;
    
    public class KerberosHDFSIO {
    
    public static void main(String[] args) throws IOException {
    
        Configuration conf = new Configuration();
        //The following property is enough for a non-kerberized setup
        //      conf.set("fs.defaultFS", "localhost:9000");
    
        //need following set of properties to access a kerberized cluster
        conf.set("fs.defaultFS", "hdfs://devha:8020");
        conf.set("hadoop.security.authentication", "kerberos");
    
        //The location of krb5.conf file needs to be provided in the VM arguments for the JVM
        //-Djava.security.krb5.conf=/Users/user/Desktop/utils/cluster/dev/krb5.conf
    
        UserGroupInformation.setConfiguration(conf);
        UserGroupInformation.loginUserFromKeytab("user@HADOOP_DEV.ABC.COM",
                "/Users/user/Desktop/utils/cluster/dev/.user.keytab");
    
        try (FileSystem fs = FileSystem.get(conf);) {
            FileStatus[] fileStatuses = fs.listStatus(new Path("/user/username/dropoff"));
            for (FileStatus fileStatus : fileStatuses) {
                System.out.println(fileStatus.getPath().getName());
            }
        } catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
    }
    

    }