// Create and add indices
IndexSpecification iSpec2 = new IndexSpecification("Index2");
iSpec2.addIndexColumn(hcd2, "ql1", ValueType.String, 10);
iSpec2.addIndexColumn(hcd3, "ql1", ValueType.String, 10);
iSpec2.addIndexColumn(hcd4, "ql1", ValueType.String, 10);
ihtd.addIndex(iSpec2);
admin.createTable(ihtd);
ZKAssign.blockUntilNoRIT(zkw);
HTable table = new HTable(conf, userTableName);
Put p = new Put("row1".getBytes());