Reputation: 523
Can I use processor api in Kafka Streams and read data from a topic in one kafka cluster and pipe data into a kafka topic in ANOTHER kafka cluster?
Is that do-able thing using processor api? I know, its not possible with Stream DSL!
Upvotes: 0
Views: 469
Reputation: 26865
This is not possible with Kafka Streams. It only works against a single cluster.
To copy data across clusters you need to either use MirrorMaker or one of the available replicator tools, for example a Kafka source connector.
Upvotes: 3