Package org.apache.hadoop.hbase.HMaster

Examples of org.apache.hadoop.hbase.HMaster.MetaRegion


  if (onlineRegions != null && onlineRegions.size() > 0) {
      out.write('\n');
      out.write(' ');
      out.write(' ');
for (Map.Entry<Text, HMaster.MetaRegion> e: onlineRegions.entrySet()) {
    MetaRegion meta = e.getValue();
 
      out.write("\n  <tr><td>");
      out.print( meta.getRegionName().toString() );
      out.write("</td><td>");
      out.print( meta.getServer().toString() );
      out.write("</td></tr>\n  ");
}
  }
      out.write("\n</table>\n");
}
View Full Code Here


  if (onlineRegions != null && onlineRegions.size() > 0) {
      out.write('\n');
      out.write(' ');
      out.write(' ');
for (Map.Entry<Text, HMaster.MetaRegion> e: onlineRegions.entrySet()) {
    MetaRegion meta = e.getValue();
 
      out.write("\n  <tr><td>");
      out.print( meta.getRegionName().toString() );
      out.write("</td><td>");
      out.print( meta.getServer().toString() );
      out.write("</td></tr>\n  ");
}
  }
      out.write("\n</table>\n");
}
View Full Code Here

TOP

Related Classes of org.apache.hadoop.hbase.HMaster.MetaRegion

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.