Serverless Containers with Google Cloud Run
thecloud.christmas
Serverless Containers with Google Cloud Run
1–10 of 15 posts
Re: Serverless Containers with Google Cloud Run
#2Re: Serverless Containers with Google Cloud Run
#3> In some sense you can compare it to AWS Fargate and Azure Container Instances. But the difference here is that Cloud Run will actually automatically scale to zero, and you only pay for resources during a request.
This seems really cool.
On the one hand, I appreciate the simplicity of serverless "Cloud CGI" as it were. But on the other hand, I have been confused why these always tie to a particular language and runtime.
Why can't I just run a binary in response to requests. I.e., real cloud CGI?
This seems made for me.
Re: Serverless Containers with Google Cloud Run
#4Re: Serverless Containers with Google Cloud Run
#5Re: Serverless Containers with Google Cloud Run
#6I hope they address this soon!
Re: Serverless Containers with Google Cloud Run
#7It would depend on the time to get a service to respond when scaled to zero. Otherwise it seems to be twice the cost of fargate with AWS, if you need to have it running all the time to get reasonable response times.
Disclosure: I work for GCP
Re: Serverless Containers with Google Cloud Run
#8The biggest issue I saw when evaluating Google Cloud Run *(for containers) is that a container needs to have an external IP address in order to access a managed database. I hope they address this soon!
Re: Serverless Containers with Google Cloud Run
#9What about permanent storage? A separate managed database is needed i guess? (Just like the rest of the serverless solutions)
Depending on the kind of permanent storage needed, you could use one or more of the managed databases offered by Google Cloud. Here is an overview: https://cloud.google.com/products/databases/. You could also provision another open source database yourself either in Compute Engine or Kubernetes Engine, e.g. MongoDB. There is a lot of these on Marketplace, again for example MongoDB: https://console.cloud.google.com/marketplace/details/click-t....
Re: Serverless Containers with Google Cloud Run
#10For those like me looking for a comparison point: > In some sense you can compare it to AWS Fargate and Azure Container Instances. But the difference here is that Cloud Run will actually automatically scale to zero, and you only pay for resources during a request. This seems really cool. On the one hand, I appreciate the simplicity of serverless "Cloud CGI" as it were. But on the other hand, I have been confused why…