Is there a Apache Flink machine learning tutorial in Java language

822 views Asked by At

I am in search of a tutorial that tells us to setup a basic apache flink machine learning. Current available material is in scala language.

1

There are 1 answers

2
Till Rohrmann On

Flink's ML library does not support Java because its pipelining mechanism (being able to flexibly chain multiple Estimators and Transformers) heavily depends on Scala's implicit value resolution. Theoretically, it is possible to put the operations manually together, but this is quite tedious and not recommended.