java - Does hbase support double rows id filtering? -


suppose have designed hbase row id in following format (- used delimiters, _ instead of spaces):

timestamp-event_type-user_id 

so want select event sequences user. example, need select event typs go in following sequence: 4,8,1,10. obvious should create rowfilter combined regexstringcomparator. in case select group of rows, needs extract them , order timestamp determine event sequence. there approach in hbase apply row filter twice? e.g. first select row , second perform selection in selected group?

note

it may seems not correct use of hbase, main idea row key stored in hbase cache, double filtering on row keys should extremely fast. hbase provides similar?

have looked @ filterlist.

it take multiple filters , join them conditions. eg: must_pass_all (and) or must_pass_one (or).

hope helps.


Comments

Popular posts from this blog

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -