I am trying out kafka and flink :
- I use a flink producer to send stream tweets to kafka.
- I use several flink consumer to treat this data (atm just parsing, and keeping the main message from the tweets). Now I would like to display these clean messages in my web application (angular2 base). What would be some good practice to do this ?
If I create a basic REST webservices, I guess I will lose the streaming interest, am I right ?
Should I feed my webapp with flink data or should I send it to another kafka topic for it to serve it to the webapp ?
Thank you,
Antoine