Hi team, Assume I am using a synchronous producer and it has the following default properties:
message.send.max.retries
3
retry.backoff.ms
100
I use java api Producer.send(message) to send a message.
While send() is being called, if the brokers are shutdown, what happens?
send() will retry 3 times with a 100ms interval and fail silently?
If I don't want to lose any message when the brokers are back online, what
should I do? Thanks.
Libo
