Re: Approach to hold the output of an iterator in memory to do further operations

2015-04-27 Thread Mike Drob
Check out the MinCombiner https://github.com/apache/accumulo/blob/master/core/src/main/java/org/apache/accumulo/core/iterators/user/MinCombiner.java On Mon, Apr 27, 2015 at 12:19 PM, vaibhav thapliyal < vaibhav.thapliyal...@gmail.com> wrote: > Hello everyone. > > I am trying to carry out max and

Re: Approach to hold the output of an iterator in memory to do further operations

2015-04-27 Thread Josh Elser
No, there isn't a way to do this that doesn't involve writing it to disk. vaibhav thapliyal wrote: I want to ask if there if a way to store this in memory so as to avoid writing it to a table? Is there a reason for wanting to avoid this (small) amount of work client-side? My experience has be