Question 91 of 1,000
Ensuring solution qualityhardMultiple ChoiceObjective-mapped

First Optimization Step for BigQuery Queries: Partition Pruning

This PDE practice question tests your understanding of ensuring solution quality. Read the scenario carefully and evaluate each option against the stated constraints before committing to an answer. 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

bq query --use_legacy_sql=false 'SELECT COUNT(*) FROM mydataset.mytable WHERE date >= "2024-01-01" AND date < "2024-02-01"' returned: 'Error: Query exceeded resource limits. For best practices, see https://cloud.google.com/bigquery/docs/best-practices-performance-compute'

Refer to the exhibit. A team received this error when running a query. Which optimization should they apply first?

Clue words in this question

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

  • Clue: "first"

    Why it matters: Order matters here. You are being tested on which action comes before the others — not which action is generally useful.

Exhibit

bq query --use_legacy_sql=false 'SELECT COUNT(*) FROM mydataset.mytable WHERE date >= "2024-01-01" AND date < "2024-02-01"' returned: 'Error: Query exceeded resource limits. For best practices, see https://cloud.google.com/bigquery/docs/best-practices-performance-compute'

Quick Answer

The answer is to add a WHERE clause on a partitioning column. This is the first optimization step because it enables partition pruning, where BigQuery reads only the relevant partitions instead of scanning the entire table, dramatically reducing the data processed and lowering query costs. On the Google Professional Data Engineer exam, this scenario tests your understanding of cost-based optimization; a common trap is to immediately suggest clustering, but while clustering sorts data within partitions, it does not eliminate entire storage blocks like partition pruning does for date-range queries. Remember that clustering organizes, but partitioning eliminates—so when you see an error about excessive bytes billed, always check if you can filter on a partitioned column first. A simple memory tip: “Prune the partitions before you cluster the data.”

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

Add a WHERE clause on a partitioning column.

The error shown in the exhibit is a common BigQuery error indicating that the query is scanning too many partitions. Adding a WHERE clause on a partitioning column (e.g., a date column used for table partitioning) prunes the partitions scanned, drastically reducing I/O and avoiding the error. This is the most direct and impactful optimization because it leverages the table's physical storage layout.

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.

  • Use clustering on the date column.

    Why it's wrong here

    Clustering improves performance for filter queries but does not reduce data scanned as much as partitioning.

  • Reduce the number of rows by aggregating in a subquery.

    Why it's wrong here

    Reducing rows early can help, but partition pruning is the most effective first step.

  • Run the query as a batch job.

    Why it's wrong here

    Batch jobs have lower priority but still consume resources; they don't reduce the total data scanned.

  • Add a WHERE clause on a partitioning column.

    Why this is correct

    If the table is partitioned by date, this prunes partitions and reduces data scanned, directly addressing the resource limit.

    Clue confirmation

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

    Related concept

    Read the scenario before looking for a memorised answer.

Common exam traps

Common exam trap: answer the scenario, not the keyword

Google often tests the distinction between clustering (which improves compression and scan efficiency within partitions) and partition pruning (which reduces the number of partitions scanned), leading candidates to mistakenly choose clustering when the real fix is a WHERE clause on a partitioning column.

Detailed technical explanation

How to think about this question

In Snowflake, tables are automatically partitioned into micro-partitions, and metadata tracks the min/max values of each column per micro-partition. A WHERE clause on a partitioning column allows the query optimizer to perform partition pruning by comparing the filter predicate against the metadata, skipping entire micro-partitions that contain no matching data. Without such pruning, the query must scan all micro-partitions, which can exceed the maximum allowed scan size (e.g., 10 TB per query) and trigger the 'too many partitions' error.

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 media company stores terabytes of video archives that are accessed once a year for audit purposes. Moving these objects to a cold storage tier (Azure Archive, S3 Glacier, or Google Nearline) costs a fraction of hot storage. Questions like this test whether you understand storage tiers, access frequency tradeoffs, and retrieval latency requirements.

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?

Ensuring solution quality — This question tests Ensuring solution quality — Read the scenario before looking for a memorised answer..

What is the correct answer to this question?

The correct answer is: Add a WHERE clause on a partitioning column. — The error shown in the exhibit is a common BigQuery error indicating that the query is scanning too many partitions. Adding a WHERE clause on a partitioning column (e.g., a date column used for table partitioning) prunes the partitions scanned, drastically reducing I/O and avoiding the error. This is the most direct and impactful optimization because it leverages the table's physical storage layout.

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: "first". Order matters here. You are being tested on which action comes before the others — not which action is generally useful.

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: Jul 4, 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.