Package org.apache.hadoop.hbase

Examples of org.apache.hadoop.hbase.HConnection


  public ReturnMsg execute(final HBaseConfiguration conf) {
    if (this.tableName == null)
      return new ReturnMsg(0, "Syntax error : Please check 'Truncate' syntax.");

    try {
      HConnection conn = HConnectionManager.getConnection(conf);
      HBaseAdmin admin = new HBaseAdmin(conf);

      if (!conn.tableExists(tableName)) {
        return new ReturnMsg(0, "Table not found.");
      }

      HTableDescriptor[] tables = conn.listTables();
      HColumnDescriptor[] columns = null;
      for (int i = 0; i < tables.length; i++) {
        if (tables[i].getName().equals(tableName)) {
          columns = tables[i].getFamilies().values().toArray(
              new HColumnDescriptor[] {});
View Full Code Here

TOP

Related Classes of org.apache.hadoop.hbase.HConnection

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.