List out operational commands available in Hbase?

Ashu Brahmbhatt
Ashu Brahmbhatt

Posted On: Feb 26, 2020

 

Operational commands are available in Hbase.

  • Delete: remove the row from the table.
  • Get: return the attribute for required rows.
  • Increment: increase the attribute in the table.
  • Put: add the new row or update the row in the table.
  • Scan: examine and duplication of the required row in the table.

    Related Questions

    Please Login or Register to leave a response.

    Related Questions

    HBase Interview Questions

    What is HBASE?

    The HBase is a Hadoop database which is used for real-time read writes the data of your large amount of data. It is a java based non-relational database which is distributed column-based database...

    HBase Interview Questions

    What is compaction in hbase?

    The Hbase is real-time read and writes access as well it stores big data. The compaction in HBase is combined all HFiles into large single Hfile. The maximum number of disk seeks to reduce. it is easy...

    HBase Interview Questions

    List some key components of Hbase?

    The main components of Hbase are:HMaster: it is used for assign region to region server in the Hadoop cluster for Manage and monitors the Hadoop cluster. It is used for table manipulation. Region...