Question 67 of 499
Designing data processing systemshardMultiple ChoiceObjective-mapped

Quick Answer

The answer is that garbage collection runs only periodically, typically once per day, so expired data persists until the next scheduled cycle. Cloud Bigtable garbage collection frequency is not real-time; the max_age rule of 100 seconds defines when data becomes eligible for deletion, but the actual removal occurs during a background compaction process that executes on a daily schedule. This tests your understanding that Cloud Bigtable prioritizes write performance over immediate cleanup, a key distinction from databases with synchronous TTL enforcement. On the Google Professional Data Engineer exam, this appears as a common trap where candidates assume GC is instantaneous, but the correct interpretation is that the rule sets eligibility, not deletion timing. Remember the memory tip: “GC is a daily visitor, not a bouncer at the door”—it checks IDs once per day, not every second.

PDE Designing data processing systems Practice Question

This PDE practice question tests your understanding of designing data processing systems. This is a configuration task: choose the command set that satisfies every stated requirement. Small differences — like 'secret' vs 'password' or 'transport input ssh' vs 'all' — change whether the answer is correct. After answering, compare your reasoning against the explanation and wrong-answer breakdown below. Once you have made your selection, read the full explanation to reinforce the concept and understand why each distractor is designed to mislead on exam day.

Exhibit

Refer to the exhibit.
```
# bigtable.gcloud
{
  "gc_rules": [
    {
      "column_family": "cf1",
      "max_age": "100s"
    }
  ]
}
# apply using gcloud bigtable app profiles create ...
```

A team configured a garbage collection rule on a Cloud Bigtable column family with max_age of 100 seconds. After 2 minutes, they notice that data older than 100 seconds is still present. What is the most likely reason?

Clue words in this question

Noticing these words before you look at the options changes how you read each choice.

  • Clue: "most likely"

    Why it matters: Probability qualifier — the question wants the most probable cause or outcome, not a guaranteed one. Eliminate low-probability options.

Question 1hardmultiple choice
Full question →

Exhibit

Refer to the exhibit.
```
# bigtable.gcloud
{
  "gc_rules": [
    {
      "column_family": "cf1",
      "max_age": "100s"
    }
  ]
}
# apply using gcloud bigtable app profiles create ...
```

Answer choices

Why each option matters

Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.

Correct answer & explanation

Garbage collection runs only periodically (e.g., once per day)

Cloud Bigtable garbage collection (GC) is not applied in real time; it runs as a background process that typically executes once per day. Even though the max_age rule is set to 100 seconds, the actual deletion of expired data occurs only during the next scheduled GC cycle, which may not happen for up to 24 hours. Therefore, observing data older than 100 seconds after only 2 minutes is expected behavior.

Key principle: Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.

Answer analysis

Option-by-option breakdown

For each option: why learners choose it and why it is or isn't the right answer here.

  • They need to apply the rule using a different API

    Why it's wrong here

    The gcloud command is appropriate for applying GC rules.

  • Garbage collection runs only periodically (e.g., once per day)

    Why this is correct

    Bigtable GC runs in the background at intervals (by default once per day), so newly set rules may not take effect immediately.

    Clue confirmation

    The clue word "most likely" in the question point toward this answer.

    Related concept

    Read the scenario before looking for a memorised answer.

  • The max_age must be at least 1 hour

    Why it's wrong here

    Bigtable allows max_age values as low as milliseconds; no minimum of 1 hour.

  • The rule is applied only to new data, not existing data

    Why it's wrong here

    GC rules apply to existing data as well; they are not limited to new writes.

Common exam traps

Common exam trap: answer the scenario, not the keyword

The trap here is that candidates assume garbage collection is immediate or near-real-time, but Cloud Bigtable's GC is a batch process with a long interval (typically daily), so data persists until the next scheduled run.

Trap categories for this question

  • Command / output trap

    The gcloud command is appropriate for applying GC rules.

Detailed technical explanation

How to think about this question

Under the hood, Cloud Bigtable performs garbage collection as a distributed, low-priority background compaction process that scans SSTables and removes expired cells. The default GC interval is approximately once per day, but it can be influenced by the cluster's workload and compaction frequency. In real-world scenarios, if you need faster cleanup, you can trigger a manual compaction via the API, but this is not recommended for routine use due to performance impact.

KKey Concepts to Remember

  • Read the scenario before looking for a memorised answer.
  • Find the constraint that changes the correct option.
  • Eliminate answers that are true in general but not in this case.

TExam Day Tips

  • Watch for words such as best, first, most likely and least administrative effort.
  • Review why wrong options are wrong, not only why the correct option is correct.

Key takeaway

Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.

Real-world example

How this comes up in practice

A cloud solutions architect for a retail company is evaluating services for a new workload. The correct answer here reflects best practice for the specific scenario described — not a general cloud recommendation. Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option. Cloud exam questions reward reading the constraint carefully: the same technology can be right or wrong depending on the use case.

What to study next

Got this wrong? Here's your next step.

Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.

Related practice questions

Related PDE practice-question pages

Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.

Practice this exam

Start a free PDE practice session

Short sessions build daily habit. Longer sessions build exam-day stamina. Try a timed session to simulate real conditions.

FAQ

Questions learners often ask

What does this PDE question test?

Designing data processing systems — This question tests Designing data processing systems — Read the scenario before looking for a memorised answer..

What is the correct answer to this question?

The correct answer is: Garbage collection runs only periodically (e.g., once per day) — Cloud Bigtable garbage collection (GC) is not applied in real time; it runs as a background process that typically executes once per day. Even though the max_age rule is set to 100 seconds, the actual deletion of expired data occurs only during the next scheduled GC cycle, which may not happen for up to 24 hours. Therefore, observing data older than 100 seconds after only 2 minutes is expected behavior.

What should I do if I get this PDE question wrong?

Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.

Are there clue words in this question I should notice?

Yes — watch for: "most likely". Probability qualifier — the question wants the most probable cause or outcome, not a guaranteed one. Eliminate low-probability options.

What is the key concept behind this question?

Read the scenario before looking for a memorised answer.

About these practice questions

Courseiva creates original exam-style practice questions with explanations and wrong-answer analysis. It does not publish real exam questions, exam dumps, or protected exam content. Learn why practice questions differ from exam dumps →

How Courseiva writes practice questions · Editorial policy

Keep practising

More PDE practice questions

Last reviewed: Jun 24, 2026

Question Discussion

Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.

Loading comments…

Sign in to join the discussion.

This PDE practice question is part of Courseiva's free Google Cloud certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the PDE exam.