I am having issues consuming from a given offset using python, in Java I had implemented a KafkaConsumer and used
consumer.seek(new TopicPartition(topic, 0), 3)
to consume from my third offset in partition 0.
But when using Python I am using an AvroConsumer, which has a seek method but only takes the partition as a parameter and not an offset to consume from. it seems to consume then from the beginning of the topic. Is there a way with AvroConsumer to consume from a certain offset? Thanks