Y
Hacker News
new
|
ask
|
show
|
jobs
by
CraftThatBlock
2355 days ago
Cloud Functions isn't 1:1 IIRC, once a Function is booted it keeps serving more requests once warm.
1 comments
yegle
2355 days ago
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.
link
CraftThatBlock
2355 days ago
You're right, thanks for letting me know
Link for reference:
https://cloud.google.com/functions/docs/max-instances
link