cylondata / twister2

A composable framework for fast and scalable data analytics
https://twister2.org
Apache License 2.0
57 stars 32 forks source link

Adding compute to tuple operation to tsets #936

Closed nirandaperera closed 3 years ago

nirandaperera commented 4 years ago

Dependent on #935 PR.

Added "computeToTuple" method to TLinks. Previously, if someone wanted to create a KeyedTSet after a compute, they had to go through a direct link as follows.

...compute(some compute).direct().mapToTuple(some map) 

Now this can be done in a single operation as follows

...computeToTuple(some compute with tuple output)
nirandaperera commented 3 years ago

Replaced by #943