Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Merged
merged 2 commits into from
Dec 4, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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