Reputation: 51
I keep getting this error "client intended to send too large body: 34386203 bytes" every time I try to upload a batch of files through a nodejs web server hosted on App engine. The files upload successfully on a local server, but fails on the remote server. Each file is about 9mb max, and there are 4 of them making it about 34mb approximately. The app engine is also on a flex environment.
Upvotes: 1
Views: 719
Reputation: 3607
For larger uploads the recommended way is to use the
Upvotes: 2
Reputation: 195
Cloud Run has a limit on response and request size of 32MB. This contains usage quota and limits that apply when using Cloud Run.
Upvotes: 0
Reputation: 156
The App Engine frontend has some limitaions, listed on its documentation.
The total size of the request is limited to ~32MB.
It might be a hard limitaion.
If it is suitable, consider:
Upvotes: 2