Does pinot have a default limit? ```select id from...
# troubleshooting
y
Does pinot have a default limit?
Copy code
select id from table group by id limit 100000000
only returns 1.1 M rows from API and JDBC client.
m
Hmm shouldn’t be, I’ll check. Btw what are you trying to do with this query
y
Not much. Just something we found during some testing. We are querying upto 1M records so we are fine right now.
We wanna have a way in future to increase it if we really want to
m
Ok, however note that this is not the best use of Pinot. Could you elaborate on what app needs to fetch 1M rows?
y
We have a presto like layer which in some cases will pull out a bunch of information to join with other datasets present in other databases.
m
Then try out the streaming api from server that presto connector also uses
y
Sure. But is this a hard limit ? Can this not be overriden as a parameter for our use case ?
Just making sure we know the upgrade path in future.
m
@Jackie do we hard limit the select query response rows?
@Yash Agarwal I still recommend using streaming api from your connector for this usecase
j
There is no hard limit. How many distinct ids do you have?
y
Billions
But why am i then only getting 1.1 million rows ?
Are you also seeing the same ? Can you test it on your side