Looks like the File definition in the zipfs package would like to 'fillBuffer' from 0 to current offset before read operation responds. It seems necessary to do so for the random file access scenarios but for sequential accessing large files(which is my use case) it will cause out of memory issue.
Hi. I am trying to read large file(original size ~41G) inside a zip file but got the following issue:
Looks like the File definition in the zipfs package would like to 'fillBuffer' from 0 to current offset before read operation responds. It seems necessary to do so for the random file access scenarios but for sequential accessing large files(which is my use case) it will cause out of memory issue.