**结束。**此问题不符合堆栈溢出准则。它目前不接受答案。
**想改进这个问题吗?**更新问题,使其成为堆栈溢出的主题。
5个月前关门了。
改进这个问题
在linux中,我们可以使用curl命令运行这个代码,但是我需要windows平台的命令
POST /connectors HTTPS
Host:
Authorization: Basic Auth (Provide the credentials used when creating the cluster)
Content-Type: application/json
{
"name": "myconnectorname",
"config": {
"connector.class": "io.confluent.connect.jdbc.JdbcSinkConnector",
"tasks.max": "1",
"topics": "mytopic",
"connection.url": "jdbc:mysql://<mymysqlurl>:<portnumber>/schemaname",
"connection.user": "myusername",
"connection.password": "mypassword",
"connection.password.secure.key": "mycredentialstorekey",
"auto.create": "true",
"key.converter": "io.confluent.connect.avro.AvroConverter",
"value.converter": "io.confluent.connect.avro.AvroConverter"
}
}
1条答案
按热度按时间wyyhbhjk1#
您可以使用任何rest客户端,如 Postman 或失眠。
powershell还有一个http客户端,类似于curl,您可以在windows中使用curl,也可以使用wsl。
github上还有kafka connect用户界面项目