Search code examples
apache-flinkflink-streamingflink-batch

Can i expose an endpoint from my flink streaming application


I would like to expose an end point from my flink streaming application.Which returns some static metadata about the app . What are the possible ways to implement this . Please help


Solution

  • What sort of metadata would you like to retrieve? Flink exposes a CLI which is enables you to gather data about the running job. Which you are able to use both if you're running it on e.g. Kubernetes or AWS KDA.

    You can also define and expose your own metrics if the CLI doesn't fulfil your use case.