I just created a new InfluxDB database on the Serverless cloud hosted service, and I’d like to delete data points from a bucket.
I’ve tried every formulation of delete commands, queries, and API calls, but none of them work.
Ex:
influx delete --org-id <snipped> --bucket <snipped> --start 2020-01-01T00:00:00Z --stop 2023-06-09T10:00:00Z --predicate '_measurement="editor.reload_times"'
I’ve tried similar through the HTTP API. Both of these return success, but don’t actually do anything, and no data is deleted.
I’ve also tried various queries through the query editor, but all of them fail with either syntax issues, or ‘unsupported’:
DROP SERIES ...
DELETE FROM bucket_name;
DELETE * FROM measurement_name
Etc, etc.
How do I actually delete data points?