Dear all,
I’ve just migrated to v2 and facing an issue:
I deleted some data points from A
measurement with “detector” tag = fit
influx delete --bucket readout --org alice \
--start '1970-01-01T00:00:00Z' \
--stop $(date +"%Y-%m-%dT%H:%M:%SZ") \
--predicate '_measurement="A" AND detector="fit"'
So everything looked fine at first and I get no results when quering the data:
from(bucket:"readout")
|> range(start: -30d)
|> filter(fn: (r) =>
r._measurement == "A" and
r.detector == "fit"
)
But when selecting tags, fit
detector is still there:
import "influxdata/influxdb/schema"
schema.measurementTagValues(
bucket: "readout",
measurement: "A",
tag: "detector"
)
outputs:
#group,false,false,false
#datatype,string,long,string
#default,_result,,
,result,table,_value
,,0,fit
,,0,ft0
...
Any help would be appreciated.