Amazing technological breakthrough possible @S-Logix pro@slogix.in

Office Address

  • #5, First Floor, 4th Street Dr. Subbarayan Nagar Kodambakkam, Chennai-600 024 Landmark : Samiyar Madam
  • pro@slogix.in
  • +91- 81240 01111

Social List

How to delete a table in HBase?

  • Sample code Segment
    Configuration config = HBaseConfiguration.create();
    HBaseAdmin h1 = new HBaseAdmin(config);
    h1.disableTable(“table”);
    h1.deleteTable(“table”);
  • Command
    hbase> disable ‘table’
    hbase> drop ‘table’