Click to copy
Connectors • Reviewed for ksqlDB 0.29
How to Get Error Logs from Connector in ksqlDB
To get the status and error logs from a running connector:
DESCRIBE CONNECTOR "connector-name";
that returns:
ksql> DESCRIBE CONNECTOR CONNECTOR_FLORIDA_TWEETS;
Name : CONNECTOR_FLORIDA_TWEETS
Class : org.apache.camel.kafkaconnector.twittersearchsource.CamelTwittersearchsourceSourceConnector
Type : source
State : RUNNING
WorkerId : 10.0.2.197:8083
Task ID | State | Error Trace
---------------------------------
0 | RUNNING |
---------------------------------
If the connector encountered an error while processing the data, it would show up in the Error Trace
column.
Was this article helpful?