-
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
querying with a time range that exceeds max int64 nanosecond timestamp gives no error #3369
Comments
hi, by running the following test queries against version 0.13.0 it seems that the maximum acceptable timestamp (defined as time string) is '2050-01-01T00:00:00Z' This works The following fail with time X overflows time literal (foo measurement doesn't event have to be there)
We are running influxdb server inside a docker container based on a 64bit linux machine. Any help / clarification would be appreciated. |
@sbile at the moment, 2050-01-01T00:00:00Z is the maximum time string. I think this may be changed for 1.0, but 0.13 will have that limit and I'm not certain if the time limit is changing for 1.0 or not. In the future, please ask question to the mailing list as you will get a much better answer there. Thanks. |
@rkuchan we should update the max time range in the docs to reflect the 2050 limitation. |
errors now display properly (modulo the rfc3339 issue):
The integer errors could be more clear, but at least there's an error, not just an empty return. |
I was querying at the edges of the valid time range to get back the most future possible point.
If I supply a time range that exceeds the max int64 nanosecond time range, there are no results returned, rather than an informative error (notice 104376 weeks vs 104375 in the valid query).
The text was updated successfully, but these errors were encountered: