Should a Kafka consumer consume from all partitions to get a complete message? -


i going through kafka, , understand topics partitioned ordered sequences of partitions.

since topics partitioned, should consumer consume of partitions, in order complete message? if so, responsibility make complete message out of messages?

each complete message written, in entirety, single offset in single partition. reading single message 1 partition using of available consumer api's, you're assured of getting whole thing.

see kafka site more info


Comments

Popular posts from this blog

c# - How Configure Devart dotConnect for SQLite Code First? -

java - Copying object fields -

c++ - Clear the memory after returning a vector in a function -