Hello. I see that <https://mvnrepository.com/artif...
# random
e
Hello. I see that https://mvnrepository.com/artifact/org.apache.flink/flink-streaming-scala has been deprecated and it's recommended to replace it with the Java counterpart. Is the process as simple as changing the underlying dependency, rebuilding the project with breaking changes and redeploying. Is there something else I would need to be aware of? πŸ™
m
This depends: do you currently have a Flink application that uses the Flink Scala APIs?
e
I do have. But they are all stateless.
m
Alright, so that would make it easier indeed given that it would render state invalid. What you would need to do, is change your application so that it doesn't use the Scala APIs, but the Flink Java APIs. So it's a bit more work then just swapping out the dependencies, but overall it should be minor. You could also consider testing https://github.com/flink-extended/flink-scala-api which should make your life easier if you're building things in Scala
e
Excellent, thank you!