📣
TiDB Cloud Premium is now in public preview. Unlimited growth, instant elasticity, advanced security for enterprise workloads. Try it out →

DROP WORKER



Removes a worker.

Syntax

DROP WORKER [ IF EXISTS ] <worker_name>

Parameters

ParameterDescription
IF EXISTSOptional. Suppresses the error if the worker does not exist.
<worker_name>The worker name.

Examples

DROP WORKER read_env;
DROP WORKER IF EXISTS read_env;

Was this page helpful?