How read data from HBase?

devquora
devquora

Posted On: May 10, 2023

 

There are two ways to read data from the database in HBase.

One is Get and another is Scan. Get can retrieve only one roe and Scan reads the entire table of the database.

Example:-

Syntax: 
get <'table_name'>, <'row_name'>, {< Additional_parameters>}

    Related Questions

    Please Login or Register to leave a response.

    Related Questions