For example, I configure a topic have 2 partitions, but in my application with 1 instance, I use Flux.parallel(10)
to consume the message, and it has 1000 message lag on that topic, what will happen?
I want to know how it works, so I could configure it right with the capability of large throughput and consume sequence
BTW I found this issue, but now answer there
It's better to use multiple receivers instead.
Using parallel can cause problems with out of order offset commits.