Examples of IndexedHTableDescriptor


Examples of org.apache.hadoop.hbase.index.IndexedHTableDescriptor

  @Test(timeout = 180000)
  public void testIndexTableCreationAfterMasterRestart() throws Exception {
    HBaseAdmin admin = new HBaseAdmin(UTIL.getConfiguration());

    IndexedHTableDescriptor iHtd =
        createIndexedHTableDescriptor("testIndexTableCreationAfterMasterRestart", "cf",
          "index_name", "cf", "cq");
    admin.createTable(iHtd);
    admin.disableTable("testIndexTableCreationAfterMasterRestart" + Constants.INDEX_TABLE_SUFFIX);
    admin.deleteTable("testIndexTableCreationAfterMasterRestart" + Constants.INDEX_TABLE_SUFFIX);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.