You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In a fully replicated 3-node cluster (default configuration settings), DROP MEASUREMENT cpu only drops the measurement from the node that the query executed on.
// node 1
> create database measuretest
> insert cpu value=1
> show measurements
name: measurements
------------------
name
cpu
> drop measurement cpu
> show measurements
// node 2
> show measurements
name: measurements
------------------
name
cpu
// node 3
> show measurements
name: measurements
------------------
name
cpu
The text was updated successfully, but these errors were encountered:
Fixes#5612, #5573 and #5518.
Using the MetaExecuter, queries that need to run on both data nodes
and optionally the meta store will be executed across all data nodes
in the cluster.
Fixes#5612, #5573 and #5518.
Using the MetaExecuter, queries that need to run on both data nodes
and optionally the meta store will be executed across all data nodes
in the cluster.
Fixes#5612, #5573 and #5518.
Using the MetaExecuter, queries that need to run on both data nodes
and optionally the meta store will be executed across all data nodes
in the cluster.
In a fully replicated 3-node cluster (default configuration settings),
DROP MEASUREMENT cpu
only drops the measurement from the node that the query executed on.The text was updated successfully, but these errors were encountered: