-
Notifications
You must be signed in to change notification settings - Fork 345
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
Unable to read large excel files #266
Comments
This project is unmaintained as far as I can see. I have a fork and have some docs about some POI settings that can further reduce memory usage. https://github.com/pjfanning/excel-streaming-reader#reading-very-large-excel-files There is also https://github.com/dhatim/fastexcel |
Is your version sufficiently maintained that I should be using yours instead of forking this project myself? (I've got my own fork where I fixed a bunch of issues.) And if not, is it possible to take over the maintenance of this project? I need this for a project, and I might be in a position to take over if necessary. |
@mcv have you looked at my fork? https://github.com/pjfanning/excel-streaming-reader |
Looking at it now. You've got a lot more work in it than I have. Does this mean your fork is meant to be the official branch now? I'll switch over. That does make my life a lot easier. |
It's not the official fork but I am not aware of any forks that have as many changes as mine. PRs on my fork are welcome. |
Unfortunately I can't use your version because of dependency conflicts. I'll stick with my own for now. Hopefully I can switch to yours later. |
Hi guys,
I am unable to read large Excel files.
I am using the below code to fetch the workbook:
It is failing with below error :
The memory assigned is 8GB, but it is still failing with this error. By observing the stack trace and also the heap dump, I noticed that we are creating a byte array with the total size of around 2.1GB.
How can we fix this issue?
The text was updated successfully, but these errors were encountered: