How do you delete data from influxdb?
The documentation shows it should be as simple as:
delete from foo where time < now() -1h
For some reason, influxdb rejects my delete statements saying "Delete queries can't have where clause that doesn't reference time"
select * from bootstrap where duration > 1000 and time > 14041409940s and time < now()
I want to delete these 5 entries whos duration > 1000 seconds

This should be a valid sql statement, yet it fails
None of these delete statements work either
delete from bootstrap where duration > 3000000"
delete from bootstrap where duration > 300000"
delete from bootstrap where time = 1404140994043"
delete from bootstrap where duration > 300000 and time > 1404141054508 "
delete from bootstrap where duration > 300000 and time > 1404141054508s "
delete from bootstrap where time > 1404141054508s and duration > 300000 "
delete from bootstrap where duration > 30000 and time > 1s"
Documentation reference
https://docs.influxdata.com/influxdb/v2.0/query-data/influxql/
Update
Additional queries
delete from bootstrap where time > 1404141416824 and duration > 3000;
delete sequence_number from bootstrap where time > 1s and duration > 1000;
Maybe this is a bug?
https://github.com/influxdb/influxdb/issues/975
https://github.com/influxdb/influxdb/issues/84
delete from bootstrap where duration > 3000000
dont work, and with this query
delete from bootstrap where time > 1404141416824s
you say that are in seconds but that time is in miliseconds so you have to change to ms :)
– Ricardo Origin Dec 15 '15 at 13:48