-
Notifications
You must be signed in to change notification settings - Fork 616
Optimize query execution by deferring query evaluation #3201
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
Conversation
Coverage ReportAffected SDKs
Test Logs
NotesHTML coverage reports can be produced locally with Head commit (39959e7d) is created by Prow via merging commits: 1986969 c72063d. |
Binary Size ReportAffected SDKs
Test Logs
NotesHead commit (39959e7d) is created by Prow via merging commits: 1986969 c72063d. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good. Just a few small comments.
Our current query pipeline is essentially as such:
I think the idea behind this was that the RemoteDocumentCache uses the Query to filter the document it reads, but this code now lives in IndexManager. This PR therefore removes the "Query" functionality from the RemoteDocumentCache and instead just returns all documents from the collection.