Yi, Thanks a lot for all the help. I am able to get the sliding window working. Here is what I have now to get it to work:
for (KeyValueIterator i = store.all(); i.hasNext();) { Entry next= (Entry) i.next(); String key = (String) next.getKey(); String value = (String) store.get(key); tempMap.put(key,value); store.delete(key); } Thanks again for all the help. On Thu, Jul 23, 2015 at 4:34 PM, Yi Pan <nickpa...@gmail.com> wrote: > Yeah, that's why I added some test code in the window() to call store.all() > and iterate through. I traced into it in my local environment and verified > that the iterator is functioning with store.all(). > > -Yi > > On Thu, Jul 23, 2015 at 4:26 PM, Shekar Tippur <ctip...@gmail.com> wrote: > > > Yi, > > > > In my case, I am able to append to the key but I am not able to get the > > store and iterate through. > > > > If you look at http://pastebin.com/fKGpHwW6, line 146, I am able to get > > the > > store value. but in window routine - line 187, I am unable to get the > > values from store. > > > > - Shekar > > >