Home > Back-end >  Unable to upload video size more than 50 Mb in GCP clourd un and loadbalancer
Unable to upload video size more than 50 Mb in GCP clourd un and loadbalancer

Time:10-06

I have connected the backend(cloud run) and frontend(cloud run) with a GCP load balancer, when I try to update a video file of size > 50Mb via backend API to google cloud storage, I am below getting, is there a way to increase the payload size??

Error: Request Entity Too Large
Your client issued a request that was too large.

when we had the same issue with the Nginx setup instead of the load balancer I used the client_max_body_size parameter to increase the size. Is there any parameter to increase client_max_body_size in GCP load balancer or cloud run

CodePudding user response:

The maximum HTTP payload size is 32 MB which includes HTTP headers. That limit cannot be increased.

CodePudding user response:

Based on the documentation the limit is 64 KB. Request url and header

https://cloud.google.com/load-balancing/docs/quotas#https-lb-header-limits

  • Related