936 B
936 B
title | sidebar_label | description |
---|---|---|
Error Recovery | Error Recovery | This document describes the SQL statements related to error recovery in TDengine. |
In a complex environment, connections and query tasks may encounter errors or fail to return in a reasonable time. If this occurs, you can terminate the connection or task.
Terminate a Connection
KILL CONNECTION conn_id;
You can use the SHOW CONNECTIONS statement to find the conn_id.
Terminate a Query
KILL QUERY 'kill_id';
You can use the SHOW QUERIES statement to find the kill_id.
Terminate a Transaction
KILL TRANSACTION trans_id
You can use the SHOW TRANSACTIONS statement to find the trans_id.
Reset Client Cache
RESET QUERY CACHE;
If metadata becomes desynchronized among multiple clients, you can use this command to clear the client-side cache. Clients then obtain the latest metadata from the server.