I needed to source data from a MongoDB change stream- using Kafka. The official Mongo DB connector is on https://www.confluent.io/hub/mongodb/kafka-connect-mongodb and is straightforward to install. If you're database server has an internet connection , use the confluent-hub method. Otherwise there is a manual install method - outlined in the link above. This is an example of using the confluent-hub method confluent-hub install mongodb/kafka-connect-mongodb:0.1 Once you've installed the connector stop | start the Confluent Connect confluent stop connect confluent start connect You should now see a new entry in the Connector list : MongoDBConnector For the connection to work there is... Read more →