'is there a visual programming environment like Nifi or streamsets data collector for flink or beam-filnk
I am looking for a visual programming tool to abstract away coding when creating data stream flows to build CEP applications in Flink or Beam-Flink. Something like the Nifi or streamsets data collector graphical designers.
Is anyone aware of such a project?
Solution 1:[1]
Right now there is a visual tool https://github.com/TouK/nussknacker. The result of its flow execution is not exactly mapped into Flink Operator or Beam but Nussknacker nodes can be easily translated into similar Flink Operators. One Nussknacker scenario is deployed as a single Flink’s job. You can also add your custom components which will be translated even more straightforwardly to Flink’s Operators. You don’t have full capabilities of Flink CEP but you can handle many CEP use cases using filter/switch/split/joint etc.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | dswiecki |
