Package org.apache.hadoop.hdfs.server.namenode.metrics

Examples of org.apache.hadoop.hdfs.server.namenode.metrics.AvatarNodeMetrics


      InetSocketAddress nameNodeAddr, NamenodeProtocol primaryNamenode)
      throws IOException {
    super(conf);   
   
    // wrap namenode metrics
    this.metrics = new AvatarNodeMetrics(super.getNameNodeMetrics());
   
    // check if we talk to primary
    if (startInfo.isStandby
        && (nameNodeAddr == null || primaryNamenode == null)) {
      throw new IOException("RPC to primary namenode not initialized");
View Full Code Here

TOP

Related Classes of org.apache.hadoop.hdfs.server.namenode.metrics.AvatarNodeMetrics

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.