DESCRIBE CONNECTOR
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:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20 | 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
----------------
|
Last update:
2024-10-28