DESCRIBE CONNECTOR statement in ksqlDB for Confluent Platform¶
Synopsis¶
DESCRIBE CONNECTOR connector_name;
Description¶
Describe a connector. If the connector is one of the supported connectors, this statement also lists the tables and streams that were automatically imported to ksqlDB.
Example¶
DESCRIBE CONNECTOR "my-jdbc-connector";
Your output should resemble:
Name : jdbc-connector
Class : io.confluent.connect.jdbc.JdbcSourceConnector
Type : source
State : RUNNING
WorkerId : 10.200.7.69:8083
Task ID | State | Error Trace
---------------------------------
0 | RUNNING |
---------------------------------
ksqlDB Source Name | Kafka Topic | Type
--------------------------------------------
JDBC_CONNECTOR_USERS | jdbc-users | TABLE
--------------------------------------------
Related Topics
----------------
jdbc-users
----------------