Fix messages waiting for empty topic (#60)
This commit is contained in:
parent
b60f2a357e
commit
5a0b23ed59
1 changed files with 2 additions and 1 deletions
|
@ -68,12 +68,13 @@ public class ConsumingService {
|
|||
assignPartitions(consumer);
|
||||
seekOffsets(consumer);
|
||||
int pollsCount = 0;
|
||||
while (!sink.isCancelled() || ++pollsCount > MAX_POLLS_COUNT) {
|
||||
while (!sink.isCancelled() && ++pollsCount < MAX_POLLS_COUNT) {
|
||||
ConsumerRecords<Bytes, Bytes> records = consumer.poll(POLL_TIMEOUT_MS);
|
||||
log.info("{} records polled", records.count());
|
||||
records.iterator()
|
||||
.forEachRemaining(sink::next);
|
||||
}
|
||||
sink.complete();
|
||||
} catch (Exception e) {
|
||||
log.error("Error occurred while consuming records", e);
|
||||
throw new RuntimeException(e);
|
||||
|
|
Loading…
Add table
Reference in a new issue