Monday, February 27, 2017

How to create first HBase table?

How to create first HBase table?

HBase is NoSQL database for Big Data environment. It is used for managing the data in Big Data environment.

HBase shell tool can be used to connect to HBase database and create tables. You can also use this tool for inserting and updating data.

The create command is used for creating table in HBase.

Here is simple example which creates student table:

create 'student', 'address', 'class'

You can use the put command to add data into HBase table.

Check the tutorial


For complete example of creating, adding data, listing data and deleting HBase table.

Thaks

No comments:

Post a Comment