Hacker News new | ask | show | jobs
by alex-olivier 2355 days ago
Definitely something I look out for, but the advantage over something like Cloud Functions, which would be an alternative, is that a Cloud Run service handles multiple requests per instance so it isn't 1:1 with request rate.
1 comments

Cloud Functions isn't 1:1 IIRC, once a Function is booted it keeps serving more requests once warm.
No, the concurrency of GCF is always 1. If the latency of your code handling request is 1s, to handle 100 requests per second you'll need to have 100 instances running.
You're right, thanks for letting me know

Link for reference: https://cloud.google.com/functions/docs/max-instances