itinance / react-native-fs

Native filesystem access for react-native
MIT License
4.97k stars 986 forks source link

Reading chunks from a large file fails #1233

Open 7adidaz opened 7 months ago

7adidaz commented 7 months ago

I'm trying to read a chunk of size 50 MB from a ~130 MB file, I'm using RNFS.read, according to docs this reads a specific length starting from an offset, but this 50MB chunk tries to allocate memory equal to the whole file size and this fails due to ram size.

Tried with 15 MB, and it worked like a charm. Tried with 30 MB, but it tried to allocate 80 MB of RAM which failed.

Am I missing something here? why it does try to allocate more memory than it need?

sagark1510 commented 4 months ago

Same problem. @7adidaz did you find any solution?

7adidaz commented 4 months ago

@sagark1510 nope, if I remember correctly, there was a memory leak related to this function, check out: 785