Re: Newbie question: Machine Learning Library of Apache Flink

2021-02-01 Thread Timo Walther
Hi, it is true that there is no dedicated machine learning library for Flink. Flink is a general data processing framework. It allows to embedded any available algorithm library within user-defined functions. Flink's focus is on stream processing. There are not many dedicated stream processi

Re: Newbie question

2016-02-14 Thread Gyula Fóra
Hi Renato, First of all to do anything together on the two streams you probably want to union them. This means that you need to have a common type. If this is the case you are lucky and you don't need anything else. Otherwise I suggest using the Either type provided by Flink as a simple wrapper.