Reputation: 376
I have two ends of an application:
Now the question is can these two ends communicate? For example can my machine agent consume messages from Kafka via the REST proxy,with messages produced from the other end in the normal way? Or do both ends need to use Kafka REST Proxy?
Upvotes: 0
Views: 258
Reputation: 191993
As long as data arrives in Kafka, it doesn't matter what protocol-hops you're using to get it there. I'd recommend using sarama
or confluent-kafka-go
instead of HTTP, though
Upvotes: 1