I am trying to use spring-cloud-dataflow to create streams over an existing set of servers. It is not a production environment, I am aware of the fault tolerance issues with the "local" deployer.
I have in the past created this infrastructure by:
1-Created a "scdf-server" by implementing the provided interface (ui and shell worked fine with no changes) . This server forward the request to an application (2) running on each server using REST calls
2-On each server I have an application that encapsulates the local deployer and receives the REST calls from the server passing the along to the encapsulated local deployer.
This approach worked perfectly, but now I need some of the new features in the new SCDF version and with the introduction of skipper I am not sure this is the best approach, or if it is even possible, need advice.
TIA