Documentation

Delete predicate syntax

InfluxDB uses an InfluxQL-like predicate syntax to determine what data points to delete. InfluxDB uses the delete predicate to evaluate the series keys of points in the time range specified in the delete request. Points with series keys that evaluate to true for the given predicate are deleted. Points with series keys that evaluate to false are preserved.

A delete predicate is comprised of one or more predicate expressions. The left operand of the predicate expression is the column name. The right operand is the column value. Operands are compared using comparison operators. Use logical operators to combine two or more predicate expressions.

Example delete predicate
key1="value1" AND key2="value"
  • Copy
  • Fill window

Predicates with special characters or keywords

If your predicate contains keywords or strings with special characters, wrap each in escaped quotes to ensure the predicate string is parsed correctly.

Because delete predicates follow InfluxQL syntax, any InfluxQL keyword that matches your tag name needs to be escaped. Keywords are case-insensitive.

// Escaped due to the "-"
"_measurement=\"example-dash\""

// Escaped because "Name" is a keyword
"_measurement=example and \"Name\"=predicate"
  • Copy
  • Fill window

Column limitations when deleting data

InfluxDB Cloud supports deleting data by any column or tag except the following:

  • _time
  • _value

Logical operators

Logical operators join two or more predicate expressions.

OperatorDescription
ANDBoth left and right operands must be true for the expression to be true.

Comparison operators

Comparison operators compare left and right operands and return true or false.

OperatorDescriptionExampleResult
=Equal to"abc"="abc"true

Delete predicate examples

Delete points by measurement

The following will delete points in the sensorData measurement:

_measurement="sensorData"
  • Copy
  • Fill window

Delete points by field

The following will delete points with the temperature field:

_field="temperature"
  • Copy
  • Fill window

Delete points by tag set

The following will delete points from the prod-1.4 host in the us-west region:

host="prod-1.4" AND region="us-west"
  • Copy
  • Fill window

Limitations

The delete predicate syntax has the following limitations.

  • Delete predicates do not support regular expressions.
  • Delete predicates do not support the OR logical operator.
  • Delete predicates only support equality (=), not inequality (!=).
  • Delete predicates can use any column or tag except _time or _value.

Was this page helpful?

Thank you for your feedback!


The future of Flux

Flux is going into maintenance mode. You can continue using it as you currently are without any changes to your code.

Read more

InfluxDB 3 Core and Enterprise are now in Beta

InfluxDB 3 Core and Enterprise are now available for beta testing, available under MIT or Apache 2 license.

InfluxDB 3 Core is a high-speed, recent-data engine that collects and processes data in real-time, while persisting it to local disk or object storage. InfluxDB 3 Enterprise is a commercial product that builds on Core’s foundation, adding high availability, read replicas, enhanced security, and data compaction for faster queries. A free tier of InfluxDB 3 Enterprise will also be available for at-home, non-commercial use for hobbyists to get the full historical time series database set of capabilities.

For more information, check out:

InfluxDB Cloud powered by TSM