Let's say I call poll()
just once with some timeout, instead of while(true) {...poll...}
- Will the consumer get all the records from last committed to the latest available in one shot?
- Does the timeout parameter matters? E.g. if
timeout==0
and there are millions of records, what happens?