A healthcare software provider is designing a cloud-native SaaS platform on Google Cloud to host two distinct application components:
1. A stateless REST API backend that receives sporadic HTTP telemetry data from connected medical devices, experiences long idle periods, and must scale to zero instances to eliminate idle infrastructure costs.
2. An on-demand background data cleaning workflow that runs non-HTTP containerized scripts for up to 4 hours per execution cycle when triggered by batch ingestion events.
The enterprise architecture team mandates a solution that minimizes operational management overhead by avoiding virtual machine management, cluster provisioning, or control plane administration.
Which TWO Google Cloud compute platform configurations should the team select to fulfill these requirements? (Select TWO.)
- Deploy the stateless REST API backend to Cloud Run services configured with minimum instances set to zero.Answer
- Deploy the background data cleaning scripts to Cloud Run jobs configured to execute tasks on demand.Answer
- CDeploy the stateless REST API backend to a Google Kubernetes Engine (GKE) Autopilot cluster using a Horizontal Pod Autoscaler (HPA).
- DDeploy the background data cleaning scripts to App Engine Standard Environment using task queues with automatic scaling.
- EDeploy the stateless REST API backend to Compute Engine Managed Instance Groups (MIGs) behind an External HTTP(S) Load Balancer.