Description
KafkaConsumer.poll() will currently throw NoOffsetForPartitionException if reset strategy is "none" and there are no defined offsets.
problem is the exception will only be thrown for the 1st such partition encountered.
since a single consumer can be the owner of thousands of partitions this results in a lot of exception that need to be caught and handled.
its possible to throw the exception once for all such TopicPartitions without any user-visible API changes.