You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Well-known libraries and APIs returns a stream rather than buffer array. fetch() API returns a ReadableStream. It is useful to pipe other process. Of course using streams enable to download into memory.
Package
Why
The FileClinet downloads blobs into memory. This occurs high memory allocation depends on file size.
I created kintone records which have 3 attachments, each attachment have 1GiB file size. The following code allocate over 6GiB memory size.
What
Well-known libraries and APIs returns a stream rather than buffer array.
fetch()
API returns a ReadableStream. It is useful to pipe other process. Of course using streams enable to download into memory.The text was updated successfully, but these errors were encountered: