You have learned about Kafka Connect in detail. We know Kafka Connect is used for copying data in and out of Kafka.
Let's understand a few common use cases of Kafka Connect:
- Copying data to HDFS: User wants to copy data from Kafka topics to HDFS for various reasons. A few want to copy it to HDFS just to take a backup of the history data, others may want to copy it to HDFS for batch processing. However, there are already many open source tools available, such as Camus, Gobblin, Flume, and so on, but maintaining, installing, and running these jobs takes more effort than what Kafka Connect provides. Kafka Connect copies data from topics in parallel and is capable of scaling up more if required.
- Replication: Replicating ...