-
Notifications
You must be signed in to change notification settings - Fork 478
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
Does influxdb-java has limitation for the # of select queries in one query() call? #930
Comments
Now i can only query 3 select in a batch, and I'm worrying about the extra I/O may slow it down. When I set batch up to more than 3, it still gets this problem by missing some queries.
|
strNewBee
changed the title
Does influxdb-java has limitation for the # of select query in one query() call?
Does influxdb-java has limitation for the # of select queries in one query() call?
May 6, 2023
Grateful for any help. (T T) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Environment
Platform
Question
My influxdb database stores the data from May 2nd to May 5th, and the query string is as below, which contains 5 select:
I'm calling InfluxDB.query() to execute it, but only the first 3 select query returns QueryResult. The Json format of QueryResult is:
When I execute each select query seperately, they can all return QueryResults. And there is more, which is when I narrowed down the time range to { 2023-05-02T10:10:30.78+08:00 ---- 2023-05-04T10:10:30.78+08:00 } instead of { 2023-05-02T10:10:30.78+08:00 ---- 2023-05-20T08:20:30.78+08:00 }, it works just fine and gives all the results for 5 queries.
I had no clue why this happened. Is there any constrants for the number of select query in one query() call?
The text was updated successfully, but these errors were encountered: