- 1、本文档共13页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
hadoop-RPC机制
首先总结HDFS的设计架构,了解需要RPC通信的场景。HDFS的架构采用master/slave模式,一个HDFS集群是由一个Namenode和多个Datanode组成。在HDFS集群中,只有一个Namenode结点。Namenode作为HDFS集群的中心服务器,主要负责:管理集群中文件系统的命名空间。管理文件块和datanode的映射。管理datanode的状态报告。Datanode的主要功能是:负责节点上数据的读写操作。向Namenode结点报告状态。执行流水线复制。通过上面的叙述,可以看到,在HDFS集群中,存在三个主要的进程:Namenode进程、Datanode进程和文件系统客户端进程,这三个进程之间都是基于Hadoop实现的RPC机制进行通信的,该IPC模型基于Client/Server模式进行通信。因此上述三个进程之间存在如下端到端通信与交互:1、(Client)Datanode?/ Namenode(Server)2、(Client)DFS Client?/ Namenode(Server)3、(Client)DFS Client?/ Datanode(Server)4、(Client)Datanode A?/ Datanode B(Server)Client端分析客户端Client类提供的最基本的功能就是进行RPC调用,其中,提供了两种调用方式,一种就是串行单个调用,另一种就是并行调用,分别介绍如下。首先是串行单个调用的实现方法call,如下所示:public Writable call(Writable param, InetSocketAddress addr, Class? protocol, UserGroupInformation ticket) throws InterruptedException, IOException {Call call = new Call(param);// 根据传入的addr, protocol和ticket构造connectionId对象,在client的connections池中检索是否已经存在,如果存在返回相应的connection// 对象, 否则构造一个新的connection对象,将其加入到池中。并将该call加入到该connection的calls调用表中,然后调用setupIOstreams,该// 法的功能是Connect to the server and set up the I/O streams. It then sends a header to the server and starts the connection// thread that waits for responses.Connection connection = getConnection(addr, protocol, ticket, call);connection.sendParam(call);// send the parameterboolean interrupted = false;synchronized (call) {while (!call.done) {try {// wait for the result 正常应该被callComplete唤醒// void java.lang.eclipse-javadoc:%E2%98%82=hadoop_src/C:%5C/Program%20Files%5C/Genuitec%5C/Common%5C/binary%5C/com.sun.java.jdk.win32.x86_1.6.0.013%5C/jre%5C/lib%5C/rt.jar%3Cjava.lang(Object.class%E2%98%83ObjectObject.wait() throws eclipse-javadoc:%E2%98%82=hadoop_src/C:%5C/Program%20Files%5C/Genuitec%5C/Common%5C/binary%5C/com.sun.java.jdk.win32.x86_1.6.0.013%5C/jre%5C/lib%5C/rt.jar%3Cjava.lang(Object.class%E2%98%83Object~wait%E2%98%82InterruptedExceptionInterruptedException Causes the current thread to wait until another thread // invokes the eclipse-javadoc:%E2%98%82=hadoop_src/C:%5C/Program%20Fi
文档评论(0)