We plan to use hbase rest api to perform inserts into a hbase table and would like to know if there is a way to insert multiple columns into a single column family or even multiple column families in a single call .
If not , as we plan to insert about 100+ columns for a particular record(row), this is causing us to make 100+ calls for a single row entry
You can insert multiple columns for a single/multiple column family in a single PUT operation.
--data
payload contains thekey
andCellSet
, CellSet contains base64 encoded value ofcf:columnname
and$
contains the base64 encoded value of column value.For example :
The final curl command will look like this: