NamenodeProtocol.java
上传用户:quxuerui
上传日期:2018-01-08
资源大小:41811k
文件大小:3k
源码类别:

网格计算

开发平台:

Java

  1. /**
  2.  * Licensed to the Apache Software Foundation (ASF) under one
  3.  * or more contributor license agreements.  See the NOTICE file
  4.  * distributed with this work for additional information
  5.  * regarding copyright ownership.  The ASF licenses this file
  6.  * to you under the Apache License, Version 2.0 (the
  7.  * "License"); you may not use this file except in compliance
  8.  * with the License.  You may obtain a copy of the License at
  9.  *
  10.  *     http://www.apache.org/licenses/LICENSE-2.0
  11.  *
  12.  * Unless required by applicable law or agreed to in writing, software
  13.  * distributed under the License is distributed on an "AS IS" BASIS,
  14.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15.  * See the License for the specific language governing permissions and
  16.  * limitations under the License.
  17.  */
  18. package org.apache.hadoop.hdfs.server.protocol;
  19. import java.io.IOException;
  20. import org.apache.hadoop.hdfs.protocol.DatanodeInfo;
  21. import org.apache.hadoop.hdfs.server.namenode.CheckpointSignature;
  22. import org.apache.hadoop.ipc.VersionedProtocol;
  23. /*****************************************************************************
  24.  * Protocol that a secondary NameNode uses to communicate with the NameNode.
  25.  * It's used to get part of the name node state
  26.  *****************************************************************************/
  27. public interface NamenodeProtocol extends VersionedProtocol {
  28.   /**
  29.    * 2: Added getEditLogSize(), rollEditLog(), rollFSImage().
  30.    */
  31.   public static final long versionID = 2L;
  32.   /** Get a list of blocks belonged to <code>datanode</code>
  33.     * whose total size is equal to <code>size</code>
  34.    * @param datanode  a data node
  35.    * @param size      requested size
  36.    * @return          a list of blocks & their locations
  37.    * @throws RemoteException if size is less than or equal to 0 or
  38.                                    datanode does not exist
  39.    */
  40.   public BlocksWithLocations getBlocks(DatanodeInfo datanode, long size)
  41.   throws IOException;
  42.   /**
  43.    * Get the size of the current edit log (in bytes).
  44.    * @return The number of bytes in the current edit log.
  45.    * @throws IOException
  46.    */
  47.   public long getEditLogSize() throws IOException;
  48.   /**
  49.    * Closes the current edit log and opens a new one. The 
  50.    * call fails if the file system is in SafeMode.
  51.    * @throws IOException
  52.    * @return a unique token to identify this transaction.
  53.    */
  54.   public CheckpointSignature rollEditLog() throws IOException;
  55.   /**
  56.    * Rolls the fsImage log. It removes the old fsImage, copies the
  57.    * new image to fsImage, removes the old edits and renames edits.new 
  58.    * to edits. The call fails if any of the four files are missing.
  59.    * @throws IOException
  60.    */
  61.   public void rollFsImage() throws IOException;
  62. }