delete data from influxdb 2.0

Viewed 1386

I want to delete data from influxdb v2.0: I read its doc and I try 2 ways that it says, but I get error.

https://docs.influxdata.com/influxdb/v2.0/write-data/delete-data/

in cli:

influx delete \
--host HOST \
--org ORG \
--token TOKEN \
--bucket BUCKET \
--start 2021-06-01T00:00:00Z \
--stop 2021-06-01T01:00:00Z

error:

Error: Failed to delete data: Not implemented.
See 'influx delete -h' for help

Can you help me, how can I delete data?

1 Answers

Delete data from same host:

influx delete --bucket example-bucket \
  --start 2020-03-01T00:00:00Z \
  --stop 2020-11-14T00:00:00Z

You can also delete data via Curl

curl --request POST https://influxurl/api/v2/delete?org=example-org&bucket=example-bucket \
  --header 'Authorization: Token YOUR_API_TOKEN' \
  --header 'Content-Type: application/json' \
  --data '{
    "start": "2022-01-19T06:32:00Z",
    "stop": "2022-01-19T06:33:00Z",
    "predicate": "_measurement=\"example-measurement\" AND feature=\"temp2\" "
  }'

Predicate method not working properly. (bug)

Related