PROFESSIONAL-CLOUD-ARCHITECT · Question #73
Case Study: 4 - Dress4Win case study Company Overview Dress4win is a web-based company that helps their users organize and manage their personal wardrobe using a website and mobile application. The…
The correct answer is C. Create a Cloud Storage Transfer Service Job to copy the files to a Coldline Storage bucket. Option C is correct because Cloud Storage Transfer Service is the purpose-built managed service for scheduled, reliable data transfers from on-premises or external sources into GCS - aligning with Dress4Win's requirement to "use managed services whenever possible." Coldline…
Question
Options
- ACreate a cron script using gsutil to copy the files to a Coldline Storage bucket.
- BCreate a cron script using gsutil to copy the files to a Regional Storage bucket.
- CCreate a Cloud Storage Transfer Service Job to copy the files to a Coldline Storage bucket.
- DCreate a Cloud Storage Transfer Service job to copy the files to a Regional Storage bucket.
How the community answered
(21 responses)- A5% (1)
- B10% (2)
- C81% (17)
- D5% (1)
Explanation
Option C is correct because Cloud Storage Transfer Service is the purpose-built managed service for scheduled, reliable data transfers from on-premises or external sources into GCS - aligning with Dress4Win's requirement to "use managed services whenever possible." Coldline storage is the right class here because it offers the lowest per-GB storage cost for data accessed less than once per year, which is exactly what long-term database backup archives represent.
Why the distractors fail:
- A uses Coldline (correct storage class) but relies on a cron script with gsutil - a manual, unmanaged approach that lacks built-in scheduling, monitoring, and retry logic, violating the managed-services principle.
- B and D both specify Regional storage, which is a general-purpose class priced for frequently-accessed data - significantly more expensive than Coldline for archival backups that are rarely (if ever) retrieved.
Memory tip: Map access frequency to storage class: rarely touched = Coldline. Then ask yourself whether you're scripting something a managed service already does better - if GCP has a dedicated transfer service, prefer it over a cron script for reliability and observability.
Topics
Community Discussion
No community discussion yet for this question.