I have created the following Schema in Hbase,
create 'test','lg'
put 'test','row1','lg:htype','get'
put 'test','row1','lg:ip','192.168.12.123'
put 'test','row1','lg:stat','success'
For this Schema, I want to create a rowkey. My question is how to create a row key in hBase shell.
Using the above schema I have created the column family. How to define the row key using hbase shell. Or I need to define the rowkey like how I defined as column family. If so how HBase distinguishes it is a columnfamily member and this field is a row key.
And I would like to have my rowkey as a composite key of userid and timestamp. So please let me know how to create a composite row key in hbase via shell.
Please help.