A cloud architecture team is evaluating Google Cloud serverless compute options for a web microservice application. Which TWO requirements make Cloud Run a more suitable choice than Cloud Functions? (Select TWO.)
- The application is packaged as a custom container image listening on an HTTP port.Cevap
- Each instance must process multiple concurrent HTTP requests simultaneously.Cevap
- CThe workload consists of simple Python event snippets executed directly in response to Pub/Sub messages.
- DThe microservice requires persistent state storage on local disk across instance auto-scaling events.
Cevap
Cloud Run is selected over Cloud Functions when deploying custom container images listening on an HTTP port and when requiring multiple concurrent requests to be processed per instance.
Cloud Run is optimized for executing stateless custom containers that listen on an HTTP port and can handle multiple concurrent requests per instance, reducing total instance footprint and cost.
Adım Adım Çözüm
Anahtar Kavram
Selecting serverless compute options based on container packaging, concurrency settings, and stateless design