itinance / react-native-fs

Native filesystem access for react-native
MIT License
4.89k stars 954 forks source link

Reading chunks from a large file fails #1233

Open 7adidaz opened 1 month ago

7adidaz commented 1 month 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?