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

Hadoop - What is a Job in Hadoop ?

In the field of computer science , a job just means a piece of program and the same rule applies to the Hadoop ecosystem as wel...