medidriss
medidriss

Reputation: 55

Can Apache kafka offer a asynchronous messaging service?

im about to implement a Chat room using Spring boot and webSocket and also Kafka, but i need to know if Kafka provide an asynchronous messaging service

Upvotes: 0

Views: 931

Answers (1)

Mislav Jaksic
Mislav Jaksic

Reputation: 40

Apache Kafka is an asynchronous messaging service.

  • Kafka Producer is a program which publishes messages to a Kafka Broker.
  • Kafka Broker is a server which stores messages in a category called Kafka topic.
  • Kafka Consumer is a program which reads messages from a Kafka topic.

In order to get a hang of how these concepts work try going through the Kafka Quickstart Tutorial.

Upvotes: 1

Related Questions