New to Kafka.
I'm really confused by Kafka's API:
Version 0.9 is completely different from 0.8.
Then there are the simpleConsumer, the highlevel Consumer and the consumer group
- When I instantiate a SimpleConsumer is it associated to a consumer group? Or is the consumer group an abstraction which is used by the high-level consumer?
- If I don't care about ordering of messages or duplicates, can I instantiate 2 simpleConsumers that read from the same partition?
- Is there a way to use a simpleConsumer to read from the topic without specifying partitions?