HDFS-11217. Annotate NameNode and DataNode MXBean interfaces as Private/Stable. Contributed by Jagadesh Kiran N.
This commit is contained in:
parent
80b8023276
commit
5bd7dece92
|
@ -24,9 +24,11 @@ import java.util.Map;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* This is the JMX management interface for data node information
|
* This is the JMX management interface for data node information.
|
||||||
|
* End users shouldn't be implementing these interfaces, and instead
|
||||||
|
* access this information through the JMX APIs.
|
||||||
*/
|
*/
|
||||||
@InterfaceAudience.Public
|
@InterfaceAudience.Private
|
||||||
@InterfaceStability.Stable
|
@InterfaceStability.Stable
|
||||||
public interface DataNodeMXBean {
|
public interface DataNodeMXBean {
|
||||||
|
|
||||||
|
|
|
@ -24,9 +24,11 @@ import org.apache.hadoop.classification.InterfaceStability;
|
||||||
import org.apache.hadoop.hdfs.protocol.RollingUpgradeInfo;
|
import org.apache.hadoop.hdfs.protocol.RollingUpgradeInfo;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This is the JMX management interface for namenode information
|
* This is the JMX management interface for namenode information.
|
||||||
|
* End users shouldn't be implementing these interfaces, and instead
|
||||||
|
* access this information through the JMX APIs.
|
||||||
*/
|
*/
|
||||||
@InterfaceAudience.Public
|
@InterfaceAudience.Private
|
||||||
@InterfaceStability.Stable
|
@InterfaceStability.Stable
|
||||||
public interface NameNodeMXBean {
|
public interface NameNodeMXBean {
|
||||||
|
|
||||||
|
|
|
@ -21,10 +21,12 @@ import org.apache.hadoop.classification.InterfaceAudience;
|
||||||
import org.apache.hadoop.classification.InterfaceStability;
|
import org.apache.hadoop.classification.InterfaceStability;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This is the JMX management interface for NameNode status information
|
* This is the JMX management interface for NameNode status information.
|
||||||
|
* End users shouldn't be implementing these interfaces, and instead
|
||||||
|
* access this information through the JMX APIs. *
|
||||||
*/
|
*/
|
||||||
@InterfaceAudience.Public
|
@InterfaceAudience.Private
|
||||||
@InterfaceStability.Evolving
|
@InterfaceStability.Stable
|
||||||
public interface NameNodeStatusMXBean {
|
public interface NameNodeStatusMXBean {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue