Friday, May 11, 2018

HBase - Loading The Data Into Table

In last tutorial , we have gone through the creation of the table in HBase . Now , we will understand how to load the data into the table.

In Last tutorial , we have created a table 'player'. Now we will load the data into that table.

Basic Syntax for loading the data into the table.

put 'table_name','row_key','column Family:column','value'




 Similarly , we can insert the data into the another column family 'cricket'.

 
Now, we can scan and check the data in the table 'player'. This is how our table looks .

Syntax to Check The Table Detail :-

Scan 'Table_Name' 






No comments:

Post a Comment

Delta Lake - Time Travel

  Time Travel allows you to query, restore, or compare data from a previous version of a Delta table. Delta Lake automatically keeps tra...