I am trying to develop a Node.js function on Google Cloud Functions that reads a CSV file on Cloud Storage and encodes its character code, and writes an encoded CSV file on the storage. The function generates the file on the storage successfully when the target file size is small(15KB). However, if the file size is large(>100MB), the function generates nothing.
- Is there an upper limit to the file size when reading and writing files with Node js on Google Cloud Functions?
- If you know how to deal with this problem, I would appreciate it if you could let me know.