Sending Messages
This lesson discusses the various ways of sending Kafka messages and an example of sending messages asynchronously.
We'll cover the following...
There are three ways in which messages can be sent by producers:
-
Fire and forget: Message is sent to Kafka with no effort made to verify if the message was received successfully by the Kafka broker. In most instances, the messages will be received by Kafka, since the producer has retries built-in for failures. However, this method is still prone ...