Important
Helios features are now enabled during weekly update windows and are no longer directly tied to SingleStore engine releases. Refer to the release notes to view the latest features available in your Helios cluster.
DROP WORKSPACE GROUP
On this page
The DROP WORKSPACE GROUP command deletes the specified cluster group.
Syntax
DROP WORKSPACE GROUP [ IF EXISTS ]
{ ID '<group_ID>' | '<group_name>' }
[ WAIT ON TERMINATED ]
[ FORCE ]Argument
-
group_,ID group_: ID or name of the cluster group to delete.name
Remarks
-
Specify the
IF EXISTSclause to attempt the delete operation only if a cluster group with the specified ID or name exists. -
Specify the
WAIT ON TERMINATEDclause to pause query execution until the cluster group is in theTERMINATEDstate. -
If the
FORCEclause is specified, the cluster group is deleted (terminated) even if it contains clusters.
Example
The following command deletes a cluster group named s2-group:
DROP WORKSPACE GROUP 's2-group' FORCE;
Last modified: