You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In most cases, limit query is expected to be very fast. However, when there are too many segments, it will be very slow even if the query is limit by 1.
Proposal
Make it run as fast as possible for limit query.
Additional Context
No response
The text was updated successfully, but these errors were encountered:
In most cases, limit query is expected to be very fast.
I think you are meaning query without group by and order by.
For this to work, our executor should support pass result in a streaming way, which is what we have now, so this should be improved without too much work.
Describe This Problem
In most cases, limit query is expected to be very fast. However, when there are too many segments, it will be very slow even if the query is limit by 1.
Proposal
Make it run as fast as possible for limit query.
Additional Context
No response
The text was updated successfully, but these errors were encountered: