Open fivetran-satvikpatil opened 1 year ago
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.
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?