Question: Dose pinot provide real-time api for consume in mobile app and web apps?
m
Mayank
01/21/2022, 7:38 PM
The real-time consumption in Pinot is via a pull from systems like Kafka/kinesis etc today. Could you elaborate what you mean?
a
Abhishek Tomar
01/21/2022, 7:53 PM
Ex. i have kafka topics that connected with pinot and i have created some query on pinot for data analysis now i need to consume the pinot query output in mobile app, how can i archive this type of use case?
m
Mayank
01/21/2022, 8:03 PM
Once data in Pinot, your app needs to make a query call to Pinot (rest api). Typically folks have a common backend that talks to Pinot that their apps may use, instead of apps directly taking to Pinot
a
Abhishek Tomar
01/24/2022, 2:09 PM
Okay so it's possible to send Pinot data in another database. I got my answer. -Thanks