In GCF, each instance can only handle one request at a time, so it means
one concurrent request.  To see what this means in the context of your app,
you would have to try deploying it with --max-instances 1 and load testing,
as it very much depends on how long each request takes to service.

If you're planning on handling hundreds or thousands of concurrent
requests, you might want to try out App Engine or Cloud Run, both of which
can handle multiple concurrent requests inside an instance.  That said,
you're always going to run into the limits of a single instance if you
don't use a database.  I would recommend using something like Redis (with
persistence turned off), which you can provision via Cloud Memorystore or
on a Compute Engine instance, which will let you share data between as many
GCF / GAE / GCR instances as you need.

Cheers,
Phil

On Thu, Apr 9, 2020 at 6:34 AM MrGadget <[email protected]> wrote:

> Just to confirm, all these https posts and gets count toward the 2M /
> month in the free tier I linked originally?  We should be well under that.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google App Engine" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to [email protected].
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-appengine/998d9c93-2bac-44c1-8814-93a19317f6c5%40googlegroups.com
> <https://groups.google.com/d/msgid/google-appengine/998d9c93-2bac-44c1-8814-93a19317f6c5%40googlegroups.com?utm_medium=email&utm_source=footer>
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/CADCZVujke-%2B3rU-_1BerBFnBVTfLjm7UETZctByjg1DvqESDTQ%40mail.gmail.com.

Reply via email to