Hi Edward,
Do you mean that using Python UDF in the Java DataStream API job? If so, there is still no plan to support this directly in the Java DataStream API.
However, there is one way to achieve this as it supports to use Python UDF in the Java Table API, so you can do as following:
- Convert DataStream to Table
- Use Python UDF in the Table API
- Convert Table back to DataStream
You can refer [1] for more details on how to use Python UDF in the Java Table API.
Regards,
Dian