Archives of Support Questions (Read Only)

This is an archived board for historical reference. Information and links may no longer be available or relevant
Announcements
This board is archived and read-only for historical reference. To ask a new question, please post a new topic on the appropriate active board.

How to send data stored in Kafka from beginning to a new consumer using NiFi?

avatar
New Member

Hello All,

How can I add a new NiFi consumer to a Kafka topic and send data from beginning? I do not see any setting in ConsumerKafkaRecord_0_10 processor to accomplish this.

I am looking for functionality similar to --from-beginning parameter in Kafka Console Consumer.

"./bin/kafka-console-consumer --zookeeper zk1:2181,zk2:2181,zk3:2181/kafka --topic LCL_LANG_DSTRBTN1 --from-beginning"

Thanks!!

1 ACCEPTED SOLUTION

avatar
Master Guru

There is a property called "Offset Reset" that you can set to "earliest".

This only takes effect the first time the consumer group consumes from the topic, so if you have already run the processor before then you will need to also change the group id.

View solution in original post

2 REPLIES 2

avatar
Master Guru

There is a property called "Offset Reset" that you can set to "earliest".

This only takes effect the first time the consumer group consumes from the topic, so if you have already run the processor before then you will need to also change the group id.

avatar
New Member

Thanks Bryan !!