Skip to content

Commit

Permalink
How can I serve responses larger than 32MB with Cloud Run? (#111)
Browse files Browse the repository at this point in the history
  • Loading branch information
simonw authored Dec 4, 2020
1 parent ae011c6 commit 2e09af1
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@
* [Is HTTP/2 supported on Cloud Run?](#is-http2-supported-on-cloud-run)
* [Can my application server run on HTTP/2 protocol?](#can-my-application-server-run-on-http2-protocol)
* [Is gRPC supported on Cloud Run?](#is-grpc-supported-on-cloud-run)
* [How can I serve responses larger than 32MB with Cloud Run?](#how-can-i-serve-responses-larger-than-32mb-with-cloud-run)
* [Are WebSockets supported on Cloud Run?](#are-websockets-supported-on-cloud-run)
- [Microservices](#microservices)
* [How do two Cloud Run services connect each other privately?](#how-do-two-cloud-run-services-connect-each-other-privately)
Expand Down Expand Up @@ -813,6 +814,12 @@ natively on that platform.

[crogke]: https://cloud.google.com/run/docs/gke/setup

### How can I serve responses larger than 32MB with Cloud Run?

Cloud Run can stream responses that are larger than 32MB using HTTP chunked
encoding. Add the HTTP header `Transfer-Encoding: chunked` to your response
if you know it will be larger than 32MB.

### Are WebSockets supported on Cloud Run?

[WebSockets](https://en.wikipedia.org/wiki/WebSocket) are currently not
Expand Down

0 comments on commit 2e09af1

Please sign in to comment.