Re: Filter on row iterator

2011-05-08 Thread aaron morton
AFAIK Token suport is there for the hadoop integration and is not something you should normally need to use. It will be easier to use a KeyRange with a start_key if you have a consistent key format, with the most significant discriminator first. e.g. /id Then you can use a range start such as

Filter on row iterator

2011-05-06 Thread cbert...@libero.it
Hi all, I have a column family with about 300 rows. Rows name are of 2 categories: number (eg: 12345) e_number (eg: e_12345) is there any way to extract only rows that are numbers? For the moment I'm iterating over all rows with a KeyRange and filtering client-side but I don't like this solution