1 2 3 4 5 6 7 8 9 10 11 12 13
| { "connector.class": "io.confluent.connect.http.HttpSinkConnector", "http.api.url": "http://localhost:8288/api/messages", "request.method": "POST", "topics": "REASON_HTTP", "tasks.max": "1", "request.body.format": "json", "confluent.topic.bootstrap.servers": "localhost:9092", "key.converter.schemas.enable": "false", "value.converter.schemas.enable": "false", "key.converter": "org.apache.kafka.connect.storage.StringConverter", "value.converter": "org.apache.kafka.connect.json.JsonConverter" }
|