GET /connectors/(string:name)/config
Gets the configuration for the connector.
Description
Parameters | Description |
---|---|
config (map) | Configuration parameters for the connector. |
Syntax
http://<host>:8083/connectors/<string_name/config
Request Example
GET /connectors/hdfs-sink-connector/config HTTP/1.1 Host: connect.example.com Accept: application/json
Response Example
HTTP/1.1 200 OK Content-Type: application/json
{ "connector.class": "io.confluent.connect.hdfs.HdfsSinkConnector",
"tasks.max": "10",
"topics": "test-topic",
"hdfs.url": "hdfs://fakehost:9000",
"hadoop.conf.dir": "/opt/hadoop/conf",
"hadoop.home": "/opt/hadoop",
"flush.size": "100",
"rotate.interval.ms": "1000"
}