I've used scans over data stored in Accumulo before, and have gotten the whole result set back (whatever Range
I specified). The problem is, I would like to filter those on the server-side from Accumulo before the client receives them. I'm hoping someone has a simple code example of how this is done.
From my understanding, Filter
provides some (all?) of this functionality, but how is this used in practice using the API? I see an example using Filter on the shell client, from the Accumulo documentation here: http://accumulo.apache.org/user_manual_1.3-incubating/examples/filter.html
I couldn't find any code examples online of a simple way to filter a scan based on regular expressions over any of the data, although I'm thinking this should be something relatively easy to do.