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

网格计算

开发平台:

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.datanode.metrics;
  19. import java.io.IOException;
  20. /**
  21.  * 
  22.  * This Interface defines the methods to get the status of a the FSDataset of
  23.  * a data node.
  24.  * It is also used for publishing via JMX (hence we follow the JMX naming
  25.  * convention.) 
  26.  *  * Note we have not used the MetricsDynamicMBeanBase to implement this
  27.  * because the interface for the FSDatasetMBean is stable and should
  28.  * be published as an interface.
  29.  * 
  30.  * <p>
  31.  * Data Node runtime statistic  info is report in another MBean
  32.  * @see org.apache.hadoop.hdfs.server.datanode.metrics.DataNodeStatisticsMBean
  33.  *
  34.  */
  35. public interface FSDatasetMBean {
  36.   
  37.   /**
  38.    * Returns the total space (in bytes) used by dfs datanode
  39.    * @return  the total space used by dfs datanode
  40.    * @throws IOException
  41.    */  
  42.   public long getDfsUsed() throws IOException;
  43.     
  44.   /**
  45.    * Returns total capacity (in bytes) of storage (used and unused)
  46.    * @return  total capacity of storage (used and unused)
  47.    * @throws IOException
  48.    */
  49.   public long getCapacity() throws IOException;
  50.   /**
  51.    * Returns the amount of free storage space (in bytes)
  52.    * @return The amount of free storage space
  53.    * @throws IOException
  54.    */
  55.   public long getRemaining() throws IOException;
  56.   
  57.   /**
  58.    * Returns the storage id of the underlying storage
  59.    */
  60.   public String getStorageInfo();
  61. }