Has anyone implemented iOS devices as a consumer of kafka? Is there any client libraries in Obj-C or Swift that could subscribe to Kafka topics?
Asked
Active
Viewed 4,022 times
3
-
Did you find anything available? – Fogia Mar 08 '16 at 10:42
-
I was not able to find anything that is supported natively. – ed1t Mar 09 '16 at 19:33
-
1[swift kafka](https://github.com/kellanburket/franz/) i found this it works fine – Fogia Mar 09 '16 at 20:43
1 Answers
2
I don't think consuming Kafka streams directly on a mobile device is the right way to go, unless you are doing some research kind of work. The ideal solution would be to have a REST API (a small web service) that can talk directly to Kafka. You can then poll API endpoints to retrieve messages from Kafka.
For instance, you can write a web service using Python Bottle framework integrated with kafka-python
as a solution.

Rafay
- 6,108
- 11
- 51
- 71