【发布时间】:2021-09-07 07:34:21
【问题描述】:
如何删除 debezium 连接器。我正在关注本教程 https://debezium.io/documentation/reference/tutorial.html 我看到了注册连接器的方法,但不知道如何删除/更新连接器。
curl -i -X POST -H "Accept:application/json" -H "Content-Type:application/json" localhost:8083/connectors/ -d '{ "name": "inventory-connector", "config": { "connector.class": "io.debezium.connector.mysql.MySqlConnector", "tasks.max": "1", "database.hostname": "mysql", "database.port": "3306", "database.user": "debezium", "database.password": "dbz", "database.server.id": "184054", "database.server.name": "dbserver1", "database.include.list": "inventory", "database.history.kafka.bootstrap.servers": "kafka:9092", "database.history.kafka.topic": "dbhistory.inventory" } }'
您能否也请指向我提到删除和更新连接器的文档页面。
【问题讨论】:
标签: debezium