Does Kafka guarantee message ordering within a single partition with ANY config param values?
问题 If I set Kafka config param at Producer as: 1. retries = 3 2. max.in.flight.requests.per.connection = 5 then its likely that Messages within one partition may not be in send_order. Does Kafka takes any extra step to make sure that messages within a partition remains in sent order only OR With above configuration, its possible to have out of order messages within a partition ? 回答1: Unfortunately, no. With your current configuration, there is a chance message will arrive unordered because of