Question

Difficulty: MediumEstimating GCP Costs with the Pricing Calculator

A data engineering team needs to estimate the monthly GCP expenses for storing 50 TB of telemetry logs that are continuously read and analyzed multiple times per hour by real-time operational dashboards. When modeling this workload in the Google Cloud Pricing Calculator, which configuration strategy provides an accurate cost baseline while accounting for the workload access pattern?

  1. Select the Standard Storage class for the bucket estimation to account for frequent data retrieval without incurring data access penalties.Answer
  2. B
    Select the Archive Storage class in the calculator to minimize the per-gigabyte storage rate, assuming read operations will not affect overall costs.
  3. C
    Apply a 3-year Committed Use Discount (CUD) to the Cloud Storage capacity in the calculator to lower the monthly per-gigabyte rate.
  4. D
    Configure Spot VM pricing for the storage bucket to lower hourly rate estimates for the telemetry data.

Answer

The correct strategy is to select the Standard Storage class in the calculator because frequently retrieved data will incur heavy per-GB retrieval fees if placed in cold or archive storage tiers.
Selecting Standard Storage is correct because telemetry data accessed multiple times per hour requires zero-retrieval-cost storage. While colder storage classes offer lower baseline per-gigabyte pricing, their high data retrieval fees make them inappropriate for frequently queried active data.

Step-by-Step Solution

1
Analyze the access pattern specified in the scenario.
The telemetry log data is continuously read and analyzed multiple times per hour by live operational dashboards.
Storage class pricing in Google Cloud depends heavily on access frequency due to retrieval fees on colder tiers.
2
Evaluate Cloud Storage class cost structures in the Google Cloud Pricing Calculator.
Coldline and Archive classes offer lower storage rates per GB but impose per-GB retrieval costs when data is read. Standard Storage charges zero retrieval fees for data access.
Frequent retrieval renders colder storage tiers significantly more expensive due to operational access fees.
3
Determine valid discount mechanisms applicable to Cloud Storage.
Committed Use Discounts (CUDs) and Spot pricing models apply to compute infrastructure (vCPUs/RAM), not object storage capacity.
The pricing calculator correctly isolates compute discount mechanisms from standard storage tiering.

Key Concept

Selecting appropriate Cloud Storage classes in the Google Cloud Pricing Calculator based on access patterns and retrieval fees
Rate this question