-
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
[1.2.0] Show series, fields and tags with over 10k series in DB are truncated (unexpected behaviour) #7962
Comments
We are also seeing similar behavior via Grafana. Large series of metrics that displayed perfectly in 1.1 now are truncated and partially rendered. |
Yes, though |
👍 |
Thanks @jwilder, sounds like clients will need to handle this behaviour. |
Closing as not a bug |
@jwilder Even after setting max-row-limit = 0 in my config, my results are truncated to 10000. Expected or a bug indeed? This works as (my) expected in version 1.1 (i.e results not truncated). |
@geethanjalieswaran you have under the
|
@jwilder Sorry for the false alarm! It was not under [http] section. [http] |
Bug report
System info: 1.2.0, Linux
Steps to reproduce:
SHOW SERIES LIMIT 20000
Expected behavior: Series list would return up to 20k series.
Actual behavior: Series list was truncated to 10k
Additional info: Not sure if this is a bug or expected behaviour but saw nothing in change log about
SHOW
queries now having a 10k max limit, regardless of limit set in query. With or without an explicit limit in the query, max series returned is always 10k.Looking at the json returned by influxdb, it contains
partial: true
, but no messages in influxdb logs otherwise. Also, at least in the python influxdb client, there is no indication that partial results have been returned. The behaviour with1.1.x
is that avalue of LIMIT
number of series is returned. This has affected some influxdb clients on upgrading to1.2.0
.SHOW FIELD KEYS
andSHOW TAG KEYS
are also similarly truncated to 10k.The text was updated successfully, but these errors were encountered: