I think you cannot use the scanner simply to to a range scan here as your keys are not monotonically increasing. You need to apply logic to decode/reverse your mechanism that you have used to hash your keys at the time of writing. You might want to check out the SemaText library which does distributed scans and seem to handle the scenarios that you want to implement. http://blog.sematext.com/2012/04/09/hbasewd-avoid-regionserver-hotspotting-despite-writing-records-with-sequential-keys/
On Mon, Apr 29, 2013 at 11:03 AM, <[email protected]> wrote: > Hi, > > I have a rowkey defined by : > getMD5AsHex(Bytes.toBytes(myObjectId)) + String.format("%19d\n", > (Long.MAX_VALUE - changeDate.getTime())); > > How could I get the previous and next row for a given rowkey ? > For instance, I have the following ordered keys : > > 00003db1b6c1e7e7d2ece41ff2184f76*9223370673172227807 > 00003db1b6c1e7e7d2ece41ff2184f76*9223370674468022807 > >00003db1b6c1e7e7d2ece41ff2184f76*9223370674468862807 > 00003db1b6c1e7e7d2ece41ff2184f76*9223370674984237807 > 00003db1b6c1e7e7d2ece41ff2184f76*9223370674987271807 > > If I choose the rowkey : > 00003db1b6c1e7e7d2ece41ff2184f76*9223370674468862807, what would be the > correct scan to get the previous and next key ? > Result would be : > 00003db1b6c1e7e7d2ece41ff2184f76*9223370674468022807 > 00003db1b6c1e7e7d2ece41ff2184f76*9223370674984237807 > > Thank you ! > R. > > Une messagerie gratuite, garantie à vie et des services en plus, ça vous > tente ? > Je crée ma boîte mail www.laposte.net >
