I want to implement retry
logic while consuming from Kafka topic
using KafkaJS, so basically, I will have 2 topics main-topic
and retry-topic
and I will
read from -> main-topic
if processing fails | -> retry topic
so is it a bad practice to use one consumer
for listening from both topics(both main
and retry
), as kafka
allows to listen from multiple topics using same consumer.