Hey Martin, On 27 Jul 2014, at 12:56, Martin Neumann <[email protected]> wrote:
> Is there a way to do a operation that allows for more the one output set > (basically split a set into 2 sets)? This would reduce the complexity of > the code a lot. What exactly do you mean with split? I am not sure if this is what you want, but you can just apply two transformations on the same input data set. DataSet<String> input = ...; DataSet<String> firstSet = input.map(...) DataSet<String> secondSet = input.map(...) Does this help?
