-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
CPP: Result Set size #18667
Comments
Unfortunately that limit is a hard one and is not configurable. After looking it up, it seems like the unit used in the log is actually misplaced: it's not that the result set is occupying more than 2GiB of memory or storate, it's that the total number of results is exceeding |
Right, that makes sense. Im working with a path-problem query to rebuild the call graph and the result set for that is massive since I'm working with the linux kernel src. I'll look into restricting my query more or try to build the call graph more iteratively. |
For the linux kernel you may also have some luck with disabling options in your |
@redsun82 would be interesting to see whether it's possible to port the result set to panama/ffi/off-heap arrays to use bigger arrays. |
@intrigus-lgtm interesting suggestion! I'll circulate it 🙂 |
I'm currently running a expensive custom query to recover the callgraph of a large c codebase.
However, it errors out with
Failed: Result set is larger than the limit of 2GiB
.What is this limit and is that something I can modify?
The text was updated successfully, but these errors were encountered: