In Apache Kafka why can’t there be more consumer instances than partitions?

Ok, to understand it, one needs to understand several parts. In order to provide ordering total order, the message can be sent only to one consumer. Otherwise it would be extremely inefficient, because it would need to wait for all consumers to recieve the message before sending the next one: However, although the server hands … Read more