List of Topics:
Research Breakthrough Possible @S-Logix pro@slogix.in

Office Address

Social List

How to display the data in HBase table?

  • Sample code Segment
    Configuration config = HBaseConfiguration.create();
    HTable table=new HTable(config, “tablename”);
    Scan scan =new Scan();
    scan.addcolumn(columnfamily,columnname);
    ResultScanner dispaly=table.getScanner(scan);
    for(Result r=display.next(); r!=null;r=display.next()) {
    System.out.println(“row value”+r);
    }
  • Command
    hbase> scan ‘tablename’