我在 Hbase 中创建了以下 Schema,
create 'test','lg'
put 'test','row1','lg:htype','get'
put 'test','row1','lg:ip','192.168.12.123'
put 'test','row1','lg:stat','success'
对于这个 Schema,我想创建一个 rowkey。我的问题是如何在 hBase shell 中创建行键。
使用上述模式,我创建了列族。如何使用 hbase shell 定义行键。或者我需要像定义列族一样定义行键。如果是这样,HBase 如何区分它是列族成员,而该字段是行键。
我想将我的行键作为用户 ID 和时间戳的组合键。所以请让我知道如何通过 shell 在 hbase 中创建复合行键。
请帮忙。