Reputation: 51
I want to know what's the difference between doing:
DROP MEASUREMENT A
and
DROP SERIES FROM A
Since all series and points from A are gone after any of those commands, isn't it just the same?
Upvotes: 5
Views: 9655
Reputation: 113
The DELETE query deletes all points from a series in a database. Unlike DROP SERIES, it does not drop the series from the index and it supports time intervals in the WHERE clause.
Better use workaround to fully clean data
https://github.com/influxdata/influxdb/issues/4275#issuecomment-227219840
Upvotes: 0