-
Notifications
You must be signed in to change notification settings - Fork 3.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can't delete future values #7798
Comments
We need more information in order to diagnose what is going on. Can you update the issue description with the instructions listed in our issue template? |
Sure, sorry that was lazy of me. I'm running version 1.1.0-1 on windows 7 and I'm using python to interact with influxdb: starting out (printing length and earliest date):
running delete will delete past values but not future ones:
and the same output again if I use drop series. Let me know if I can provide any more information |
You may need to explicitly set the upper time bound with something like:
The default end time defaults to |
That works, thanks! |
Fixed via #8329 |
I can't delete future values using either the "delete from where tag = ''" syntax or the "drop series where tag = ''" syntax.
I have also tried using a 'delete from ... where time > now())' but this doesn't seem to help either.
Thanks
The text was updated successfully, but these errors were encountered: