1.6.0 changed the package name from org.apache.kafka to com.teambition, so when you upgrade from 1.5.x, you may find your connectors breaked. So please:
- Save your connectors's configs to local file, you may save those configs to a local curl script like so:
curl -X PUT -H "Content-Type: application/json" http://192.168.0.22:38083/connectors/mongo_source_test/config -d '{
"connector.class": "MongoSourceConnector",
"databases": "teambition.tasks",
"initial.import": "true",
"topic.prefix": "mongo_test",
"tasks.max": "8",
"batch.size": "100",
"schema.name": "mongo_test_schema",
"name": "mongo_source_test",
"mongo.uri": "mongodb://root:root@192.168.0.21:27017/?authSource=admin",
"additional.filter": ""
}'
- Delete your connectors via
curl -XDELETE http://192.168.0.22:38083/connectors/your_connector_name
, this will not delete your offsets, so you will not worry about lost of your offsets. - Upgrade your kafka-connect-mongo cluster to 1.6.0.
- Recreate your connectors (with the saved curl scripts).
name=mongo-source-connector
connector.class=MongoSourceConnector
tasks.max=1
mongo.uri=mongodb://127.0.0.1:27017
batch.size=100
schema.name=mongo_local_schema
topic.prefix=mongo_local
databases=test.users
# If this option is set to true, source connector will analyze the schema from real document type and mapping them to the top level schema types
# WARNING: mongo connector interprets the schema from the structure of document, so it can not ensure the schema always stay consist.
# If you met an `Schema being registered is incompatible with an earlier schema` error given by schema registry, please set the `avro.compatibility.level` option of schema registry to `none`
analyze.schema=false
schema.registry.url=http://127.0.0.1:8080
# This option works in export mode (use MongoExportSourceConnector), which will export the whole database with these filter conditions
additional.filter=
# If use ssl, add configs on jvm by set environment variables `-Djavax.net.ssl.trustStore=/secrets/truststore.jks -Djavax.net.ssl.trustStorePassword=123456 -Djavax.net.ssl.keyStore=/secrets/keystore.jks -Djavax.net.ssl.keyStorePassword=123456`
#mongo.uri=mongodb://user:pwd@128.0.0.1:27017/?ssl=true&authSource=admin&replicaSet=rs0&sslInvalidHostNameAllowed=true
name=mongo-sink-connector
connector.class=MongoSinkConnector
tasks.max=1
mongo.uri=mongodb://root:root@127.0.0.1:27017/?authSource=admin
topics=topic1,topic2
databases=mydb.topic1,mydb.topic2
Now you can only use mongo sink connector as your restore tool, you can restore data from kafka which given by mongo source connector.
The messages should contain object
and id
fields
Apache License 2.0