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
Use case:
InfluxDB 3.x currently lacks granular deletion of individual data points, forcing users to delete entire measurement
This limitation:
Increases operational overhead for correcting single-point anomalies (requires deleting entire measurement)
Wastes storage resources by deleting valid data alongside targeted points
Proposal:
Implement a point-level deletion API using a composite primary key:
-- Syntax Example
DELETE FROM measurement
WHERE _measurement='cpu'
AND _time='2025-07-11T00:00:00Z'
AND _field='usage'
AND host='server-01' -- Optional unique tag
Current behaviour:
only measurement level deleting.