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 the data from HBase table?

  • Sample code Segment
    Configuration config = HBaseConfiguration.create();HTable table=new HTable(config, “tablename”);Delete delete=new Delete(rowname);delete.deleteColumn(columnfamily,columnname);delete.deleteFamily(columnfamily);
    table.delete(delete);
  • Command
    hbase< deleteall ‘tablename’, ‘rowname’