Re:Re: [statefun] Looking for a polyglot example

2022-02-16 Thread casel.chen
Thank you Igal. The remote functions from different language can be "mixed" by deploying different unit services in Dockerfile, and they can exchange messages by common message types like json, protobuf etc, or even connect together by in/out kafka topics, right? At 2022-02-16 2

Re: [statefun] Looking for a polyglot example

2022-02-16 Thread Igal Shilman
Hello, You can take a look at the flink stateful functions playground[1] where you can find a handful of examples, in all the supported SDKs, in addition for each language you will find a walkthrough that shows how to use the individual SDK features. Furthermore take a look at the documentations [

[statefun] Looking for a polyglot example

2022-02-14 Thread casel.chen
Hello, I am looking for polyglot example of stateful functions and learn how to program functions with different language then deploy them together as a unit of event driven application. Examples like Fraud Detection which use python functions in ML while use java funtions to process data etc. T