A healthcare technology enterprise processes nightly batch workloads for genomic sequence analysis and stores raw sequence reads for 7 years to satisfy regulatory compliance mandates. The batch processing jobs are stateless, fault-tolerant, and execute for 4 hours each night. The raw sequence files are accessed frequently during the first 30 days after generation, but subsequent access occurs less than once per year for compliance audits. Which TWO architectural choices should you recommend to minimize overall infrastructure costs while satisfying operational and compliance requirements?
- Provision Compute Engine Managed Instance Groups (MIGs) utilizing Spot VMs for the nightly batch processing pipeline.Answer
- Implement Cloud Storage Object Lifecycle Management rules to transition raw sequence files to Archive Storage after 30 days.Answer
- CDeploy a dedicated multi-zone Google Kubernetes Engine (GKE) cluster with always-on node pools to guarantee compute availability.
- DStore all raw genomic sequence files and metadata in Cloud Spanner to ensure multi-region consistency and low read latencies.
- EPurchase 3-year Resource-Based Committed Use Discounts (CUDs) sized for the peak CPU and memory footprint of the nightly batch job.
Answer
The correct recommendations are using Compute Engine Spot VMs in Managed Instance Groups for the batch processing workload and configuring Cloud Storage Object Lifecycle Management rules to transition raw data to Archive Storage after 30 days.
Using Spot VMs within Managed Instance Groups provides up to 80% compute cost savings for fault-tolerant, stateless batch workloads running for 4 hours daily. For storage, automating object transitions from Standard to Archive Storage after 30 days minimizes the total cost of ownership for 7-year compliance retention without impacting active processing performance.
Step-by-Step Solution
Key Concept
Designing infrastructure for cost optimization by pairing Spot instances for fault-tolerant batch compute with automated lifecycle tiering for long-term compliance storage.
Estimated Time:2m 0s