'How to send large data (<100mb) as response from cloud function to client?
In cloud function I have a code which connect with bigquery using service account, execute the query and send the response to local client machine. But the response data is very large (<300mb) which is 'csv' data.
currently, I am getting only 10MB data that is 14k rows in my response 'csv' file.
Solution 1:[1]
This error started coming today in our deployment servers but our local was working fine. Issues is with node-forge latest version v1. We need to copy our package-lock.json file in docker to install stable 0.10.0 version and after that the build was successful. Link to Github isssue - https://github.com/digitalbazaar/forge/issues/942
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Sumit Ganjave |
