Console - DROP CLUSTER
Removes a cluster from the database completely, deleting it with all records and caches in the cluster.
Syntax
DROP CLUSTER <cluster-name>
<cluster-name>Defines the name of the cluster you want to drop.
NOTE: When you drop a cluster, the cluster and all records and caches in the cluster are gone. Unless you have made backups, there is no way to restore the cluster after you drop it.
Examples
Drop a cluster
personfrom the current, local database:orientdb>DROP CLUSTER personThis removes both the cluster
Personand all records of thePersonclass in that cluster.
You can create a new cluster using the
CREATE CLUSTERcommand.For information on other commands, see SQL and Console commands.