FSConstants.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.protocol;
  19. import org.apache.hadoop.conf.Configuration;
  20. /************************************
  21.  * Some handy constants
  22.  *
  23.  ************************************/
  24. public interface FSConstants {
  25.   public static int MIN_BLOCKS_FOR_WRITE = 5;
  26.   // Chunk the block Invalidate message
  27.   public static final int BLOCK_INVALIDATE_CHUNK = 100;
  28.   // Long that indicates "leave current quota unchanged"
  29.   public static final long QUOTA_DONT_SET = Long.MAX_VALUE;
  30.   public static final long QUOTA_RESET = -1L;
  31.   
  32.   //
  33.   // Timeouts, constants
  34.   //
  35.   public static long HEARTBEAT_INTERVAL = 3;
  36.   public static long BLOCKREPORT_INTERVAL = 60 * 60 * 1000;
  37.   public static long BLOCKREPORT_INITIAL_DELAY = 0;
  38.   public static final long LEASE_SOFTLIMIT_PERIOD = 60 * 1000;
  39.   public static final long LEASE_HARDLIMIT_PERIOD = 60 * LEASE_SOFTLIMIT_PERIOD;
  40.   public static final long LEASE_RECOVER_PERIOD = 10 * 1000; //in ms
  41.   
  42.   // We need to limit the length and depth of a path in the filesystem.  HADOOP-438
  43.   // Currently we set the maximum length to 8k characters and the maximum depth to 1k.  
  44.   public static int MAX_PATH_LENGTH = 8000;
  45.   public static int MAX_PATH_DEPTH = 1000;
  46.     
  47.   public static final int BUFFER_SIZE = new Configuration().getInt("io.file.buffer.size", 4096);
  48.   //Used for writing header etc.
  49.   public static final int SMALL_BUFFER_SIZE = Math.min(BUFFER_SIZE/2, 512);
  50.   //TODO mb@media-style.com: should be conf injected?
  51.   public static final long DEFAULT_BLOCK_SIZE = 64 * 1024 * 1024;
  52.   public static final int DEFAULT_DATA_SOCKET_SIZE = 128 * 1024;
  53.   public static final int SIZE_OF_INTEGER = Integer.SIZE / Byte.SIZE;
  54.   // SafeMode actions
  55.   public enum SafeModeAction{ SAFEMODE_LEAVE, SAFEMODE_ENTER, SAFEMODE_GET; }
  56.   // type of the datanode report
  57.   public static enum DatanodeReportType {ALL, LIVE, DEAD }
  58.   /**
  59.    * Distributed upgrade actions:
  60.    * 
  61.    * 1. Get upgrade status.
  62.    * 2. Get detailed upgrade status.
  63.    * 3. Proceed with the upgrade if it is stuck, no matter what the status is.
  64.    */
  65.   public static enum UpgradeAction {
  66.     GET_STATUS,
  67.     DETAILED_STATUS,
  68.     FORCE_PROCEED;
  69.   }
  70.   // Version is reflected in the dfs image and edit log files.
  71.   // Version is reflected in the data storage file.
  72.   // Versions are negative.
  73.   // Decrement LAYOUT_VERSION to define a new version.
  74.   public static final int LAYOUT_VERSION = -18;
  75.   // Current version: 
  76.   // Support disk space quotas
  77. }