Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Hbase put shell command

Tags:

shell

hbase

How can I use the put command in Hbase shell to insert more than one value. I have a column family having five qualifiers. How can I insert values to all those 5 qualifiers using one single command using Put

like image 610
Patruni Srikanth Avatar asked Feb 08 '12 11:02

Patruni Srikanth


1 Answers

Sorry, you cannot do that from the HBase shell. The 'put' command is used to "Put a cell 'value' at specified table/row/column". It's for 'putting' a single value.

like image 105
mdahlman Avatar answered Sep 23 '22 16:09

mdahlman