-
Notifications
You must be signed in to change notification settings - Fork 43
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
Database reader does not work for mmdb files larger than 2gb #154
Comments
Unfortunately, I don't think there is a quick fix to this. If I recall correctly, it is also a limitation of Java's memory mapping. We would probably need to store an array of |
Any change you would consider changing the internals to account for this limitation? Understandably this might not be something that can be fixed with just a snap of the fingers but just how large of a refactor are we talking about here? |
Given that all the MaxMind databases are well under this limit, it seems unlikely that we would implement this ourselves in the near future. The change will be at least somewhat invasive and I suspect it will harm the performance for smaller databases. We would consider merging a PR to address the problem if the impact on existing users was minimal. In terms of how large of a refactor this would be, I suspect you would need to modify |
Alright, thank you for the prompt answer. I don't think I currently have the resources to fix it myself given my general lack of knowledge considering the library's internals. If you are concerned for the performance, it would probably make sense to either have 2 different memory handling implementations or a whole separate reader class. |
Trying to create a new reader (with or without a cache) for a 2,5gb database:
Results in the following exception:
A quick search of the error message reveals that due to some old standards ByteBuffer size is limited to 2gb.
Is there any workaround or fix for this or is the reader simply unusable with a larger database?
The text was updated successfully, but these errors were encountered: