Hi,
I get a "No initial value was serialized for the fold window function. Probably the setOutputmethod was not called" when I use the fold function on a WindowedStream where an evictor has been set. If no evictor is set, it works fine.
There was a similair
issue before, but I thought that it was fixed.
Exampel code:
env.fromCollection[String](data).keyBy(0).window(GlobalWindows.create).evictor(CountEvictor.of(1)).trigger(CountTrigger.of(2)).fold[String]("")((s,r) => s+r).print()
I'm using version 1.0.3 and Scala.
Erik