Querying Hbase efficiently
问题 I'm using Java as a client for querying Hbase. My Hbase table is set up like this: ROWKEY | HOST | EVENT -----------|--------------|---------- 21_1465435 | host.hst.com | clicked 22_1463456 | hlo.wrld.com | dragged . . . . . . . . . The first thing I need to do is get a list of all ROWKEYs which have host.hst.com associated with it. I can create a scanner at Column host and for each row value with column value = host.hst.com I will add the corresponding ROWKEY to the list. Seems pretty