An IoT smart city energy utility enterprise is designing its cloud solution architecture on Google Cloud to handle device management and telemetry processing. The architecture comprises two distinct workloads:
1. A stateless HTTP ingestion endpoint receiving intermittent spikes of JSON payloads from smart meters. The service must scale rapidly during peak hours, scale down to zero instances when idle to reduce costs, and require minimal infrastructure management.
2. A specialized network protocol parser running a long-lived daemon that requires custom OS kernel sysctl modifications for low-level socket buffer tuning and high-speed local NVMe scratch disk access.
Which TWO architectural choices should you select to meet these requirements with optimal operational efficiency? (Select TWO.)
- Deploy the stateless HTTP ingestion endpoint on Cloud Run with container concurrency and auto-scaling configured.Answer
- Deploy the specialized network protocol parser on Google Kubernetes Engine (GKE) nodes configured with local SSD storage and custom node system configurations for sysctl tuning.Answer
- CDeploy the stateless HTTP ingestion endpoint on a dedicated Google Kubernetes Engine (GKE) Standard cluster configured with Horizontal Pod Autoscaler.
- DDeploy the specialized network protocol parser on Cloud Run by packaging the custom sysctl parameters into the container build manifest.
- EDeploy the stateless HTTP ingestion endpoint on a Compute Engine Managed Instance Group (MIG) behind an External HTTP(S) Load Balancer.