fix: ListResources failing for projects with large number of resources#9727
Merged
Conversation
k-anshul
commented
Jul 23, 2026
| string path = 3; | ||
| // Skip security checks | ||
| bool skip_security_checks = 4; | ||
| // Maximum number of resources to return. If zero, returns all resources. |
Member
Author
There was a problem hiding this comment.
If zero, returns all resources.
Kept it for compatibility in UI and older CLI.
k-anshul
marked this pull request as ready for review
July 23, 2026 05:18
begelundmuller
approved these changes
Jul 23, 2026
begelundmuller
left a comment
Contributor
There was a problem hiding this comment.
Looks good. Agree on just fixing the issue at the API level for now.
k-anshul
added a commit
that referenced
this pull request
Jul 23, 2026
#9727) * fix: ListResources failing for projects with large number of resources * fix: ListResources failing for projects with large number of resources * review * also sort the final result
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Issue:
Saw error,
failed to list resources: rpc error: code = ResourceExhausted desc = grpc: received message larger than max (5440191 vs. 4194304) (ResourceExhausted)when runningrill project status projectfor a project with huge number of resources(500+ explore dashboards and metrics views).Checklist: