console
console copied to clipboard
Message count for partitioned topics off by one.
I created a topic with 30 partitions and produced 1,001 records. (Yes, I also had an off-by-one issue, too 🙃)
Since the highwater mark is 1 past the last offset, I think Console is miscounting 1 message per partition, hence 1,031 messages instead of the expected 1,001 in my case.
This is with Console v2.3.5.
@voutilad The per partition message count seems to be correct though, no? First message with offset 0 until last message with offset 38 = 39 messages as shown in partition 0.