-
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
[0.9.5] Query returning values for ORDER BY ASC but not ORDER BY DESC #5225
Comments
Another interesting result. This query is returning results from 6 days ago
But Bizarly when again I rerun the same query with ORDER BY time ASC without a limit. Having a hard time understanding what's going on. |
@jlark what version of the database? |
I'm sorry should have mentioned it. v0.9.5 @beckettsean Alp |
@jlark any chance you are running a cluster? Do you always get the same result for the This is a duplicate of #4944, which I found when researching #4235, an issue that was fixed in 0.9.5. @corylanou there are now two reports of |
Hi All, I just re ran the query SELECT "value" FROM "pv_production" ORDER BY time DESC LIMIT 10 So it's catching up but it's still 3 days behind. Could this be a low memory issue. I'm running on a small vm and did have influx crash due to an out of memory exception yesterday. Alp |
I'm running into some problems where the latest data I'm pushing to Influx is not appearing in queries.
While debugging the issue I'm running the query
SELECT "value" FROM "battery_voltage" WHERE time > now() - 6h ORDER BY time ASC
Which returns values fine. However the query:
SELECT "value" FROM "battery_voltage" WHERE time > now() - 6h ORDER BY time DESC
returns 0 values.
The expected behavior would be to get the values sorted in the opposite order.
The text was updated successfully, but these errors were encountered: