November 2014
Beginner to intermediate
326 pages
7h 4m
English
There are some operations that can be performed on HBase data; these are known as HBase data model operations. These operations might have tasks such as reading from, writing to, and modifying data into HBase. Now, we will see the following data model operations:
Get() and Scan()Put()Delete()In this section, we will see the data models that are useful to read data from an HBase table.
Get() reads a row from a table. It can read a single or a set of rows based on the specified condition. It returns a result that contains data in key-value pairs or a map format. This method is provided by HTable classes and executed as HTable.get (condition). ...
Read now
Unlock full access