webhdfs详解

简介

hdfs提供了一种除了通过rpc的方式进行文件操作的方式之外,还提供了http的方式对文件进行操作的方式:webhdfs。支持HDFS 的完整FileSystem / FileContext接口。

其中Router和NameNode都支持了webhdfs的功能,具体实现有差别。

使用

文件系统URI与HTTP URL

WebHDFS的文件系统方案为“ webhdfs:// ”。WebHDFS文件系统URI具有以下格式。

webhdfs://<主机>:<HTTP_PORT>/<PATH>

上面的WebHDFS URI对应于下面的HDFS URI。

 hdfs://<主机>:<RPC_PORT>/<PATH>

在REST API中,在路径中插入前缀“ /webhdfs/v1 ”,并在末尾附加查询。因此,相应的HTTP URL具有以下格式。

http://<主机>:<HTTP_PORT>/webhdfs/v1/<PATH>?op=create

详细可以参考:https://hadoop.apache.org/docs/r3.4.1/hadoop-project-dist/hadoop-hdfs/WebHDFS.html

源码实现分析

NameNode webhdfs 源码实现分析

启动和初始化

NameNode启动过程中,启动NameNode的http模块的时候,启动了NameNode的webhdfs模块。核心入口函数(NameNodeHttpServer.java):

void start() throws IOException {
//...
initWebHdfs(conf, bindAddress.getHostName(), httpKeytab, httpServer,
        NamenodeWebHdfsMethods.class.getPackage().getName());
//...

}

从上面代码可以看出webhdfs的核心处理类为NamenodeWebHdfsMethods.java。当前类是每个请求都是由一个NamenodeWebHdfsMethods对象处理的,在处理每个请求的时候,需要做下面的初始化:

 public NamenodeWebHdfsMethods(@Context HttpServletRequest request) {
    // the request object is a proxy to thread-locals so we have to extract
    // what we want from it since the external call will be processed in a
    // different thread.
    scheme = request.getScheme();
    userPrincipal = request.getUserPrincipal();
    // get the remote address, if coming in via a trusted proxy server then
    // the address with be that of the proxied client
    remoteAddr = JspHelper.getRemoteAddr(request);
    remotePort = JspHelper.getRemotePort(request);
    supportEZ =
        Boolean.valueOf(request.getHeader(WebHdfsFileSystem.EZ_HEADER));
  }

主要获取了当前登录的用户的相关信息,hdfs的nameService以及是否开启EC。

请求处理

NamenodeWebHdfsMethods里面定义的请求类型主要是:

  • PUT请求:主要处理写入类型的求情。

    • CREATE操作。
    • MKDIRS操作。
    • CREATESYMLINK操作。
    • RENAME操作。
    • SETREPLICATION操作。
    • SETOWNER操作。
    • .....
  • DELETE请求:主要处理删除类的请求。主要包含:

    • DELETE操作:
    • DELETESNAPSHOT操作:
  • GET请求:主要处理查询类的请求。

  • POST请求:主要处理写入类的请求。主要包含:

    • APPEND操作。
    • CONCAT操作。
    • TRUNCATE操作。
    • UNSETSTORAGEPOLICY操作。
    • UNSETECPOLICY操作。

定义参考如下:

 @GET
  @Path("{" + UriFsPathParam.NAME + ":.*}")
  @Produces({MediaType.APPLICATION_OCTET_STREAM + "; " + JettyUtils.UTF_8,
      MediaType.APPLICATION_JSON + "; " + JettyUtils.UTF_8})
  public Response get(
      @Context final UserGroupInformation ugi,
      @QueryParam(DelegationParam.NAME) @DefaultValue(DelegationParam.DEFAULT)
          final DelegationParam delegation,
     //...
      ) throws IOException, InterruptedException {

    init(ugi, delegation, username, doAsUser, path, op, offset, length,
        renewer, bufferSize, xattrEncoding, excludeDatanodes, fsAction,
        snapshotName, oldSnapshotName, tokenKind, tokenService, startAfter);

    return doAs(ugi, new PrivilegedExceptionAction<Response>() {
      @Override
      public Response run() throws IOException, URISyntaxException {
        return get(ugi, delegation, username, doAsUser, path.getAbsolutePath(),
            op, offset, length, renewer, bufferSize, xattrNames, xattrEncoding,
            excludeDatanodes, fsAction, snapshotName, oldSnapshotName,
            tokenKind, tokenService, noredirect, startAfter);
      }
    });
  }

webhdfs 操作实现

CREATE操作

未完待续



标 题:《webhdfs详解
作 者:zeekling
提 示:转载请注明文章转载自个人博客:浪浪山旁那个村

    评论
    0 评论
avatar

取消