datanodeprotocol.java

来自「hadoop:Nutch集群平台」· Java 代码 · 共 89 行

JAVA
89
字号
/** * Copyright 2005 The Apache Software Foundation * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * *     http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */package org.apache.hadoop.dfs;import java.io.*;import org.apache.hadoop.ipc.VersionedProtocol;/********************************************************************** * Protocol that a DFS datanode uses to communicate with the NameNode. * It's used to upload current load information and block reports. * * The only way a NameNode can communicate with a DataNode is by * returning values from these functions. * * @author Michael Cafarella **********************************************************************/interface DatanodeProtocol extends VersionedProtocol {  public static final long versionID = 2L;  // infoPort added to DatanodeID                                            // affected: DatanodeRegistration    // error code  final static int DISK_ERROR = 1;  final static int INVALID_BLOCK = 2;  /**    * Register Datanode.   *   * @see DataNode#register()   * @see FSNamesystem#registerDatanode(DatanodeRegistration)   *    * @return updated {@link DatanodeRegistration}, which contains    * new storageID if the datanode did not have one and   * registration ID for further communication.   */    public DatanodeRegistration register( DatanodeRegistration registration                                        ) throws IOException;    /**     * sendHeartbeat() tells the NameNode that the DataNode is still     * alive and well.  Includes some status info, too.      * It also gives the NameNode a chance to return a "BlockCommand" object.     * A BlockCommand tells the DataNode to invalidate local block(s),      * or to copy them to other DataNodes, etc.     */    public BlockCommand sendHeartbeat(DatanodeRegistration registration,                                      long capacity, long remaining,                                      int xmitsInProgress,                                      int xceiverCount) throws IOException;    /**     * blockReport() tells the NameNode about all the locally-stored blocks.     * The NameNode returns an array of Blocks that have become obsolete     * and should be deleted.  This function is meant to upload *all*     * the locally-stored blocks.  It's invoked upon startup and then     * infrequently afterwards.     */    public Block[] blockReport( DatanodeRegistration registration,                                Block blocks[]) throws IOException;        /**     * blockReceived() allows the DataNode to tell the NameNode about     * recently-received block data.  For example, whenever client code     * writes a new Block here, or another DataNode copies a Block to     * this DataNode, it will call blockReceived().     */    public void blockReceived(DatanodeRegistration registration,                              Block blocks[]) throws IOException;    /**     * errorReport() tells the NameNode about something that has gone     * awry.  Useful for debugging.     */    public void errorReport(DatanodeRegistration registration,                            int errorCode,                             String msg) throws IOException;}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?