Question 380 of 499
Designing data processing systemshardMultiple ChoiceObjective-mapped

Quick Answer

The answer is to add `--properties spark.executor.memory=8g` to the submission command. This is correct because the out-of-memory error in Spark on Dataproc directly indicates that the executor processes lack sufficient heap space to hold the data partitions during shuffle or aggregation operations. By increasing `spark.executor.memory`, you allocate more JVM memory per executor, which reduces spill-to-disk and prevents the `java.lang.OutOfMemoryError` that halts the job. On the Google Professional Data Engineer exam, this scenario tests your ability to diagnose resource contention in Dataproc clusters—a common trap is mistakenly increasing driver memory or adding more executors, which does not fix the per-executor memory ceiling. Remember that executor memory governs the storage and execution memory pool within each worker; a quick memory tip is to think "executor memory is the bucket size, not the number of buckets." When you see an OOM error in a Spark job on Dataproc, always first check and raise `spark.executor.memory` before scaling out horizontally.

PDE Designing data processing systems Practice Question

This PDE practice question tests your understanding of designing data processing systems. The scenario asks you to isolate a root cause — eliminate options that address a different problem before choosing. 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.

Network Topology
cluster=my-clusterregion=us-central1 \class=org.apache.spark.examples.SparkPijars=file:///usr/lib/spark/examples/jars/spark-examples.jar \Refer to the exhibit.```Job [job-id] submitted.

The exhibit shows a Spark job submitted to Dataproc that fails with an out-of-memory error. Which change should be made to the submission command to resolve the issue?

Question 1hardmultiple choice
Full question →
Network Topology
cluster=my-clusterregion=us-central1 \class=org.apache.spark.examples.SparkPijars=file:///usr/lib/spark/examples/jars/spark-examples.jar \Refer to the exhibit.```Job [job-id] submitted.

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 --properties spark.executor.memory=8g to the command.

The out-of-memory error indicates that the Spark executors do not have enough memory to process the data. Adding `--properties spark.executor.memory=8g` increases the memory allocated to each executor, directly addressing the root cause. This property overrides the default executor memory (typically 1g or 4g depending on the cluster configuration) and is the standard way to tune executor memory in Spark on Dataproc.

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 a different Spark example class.

    Why it's wrong here

    Class is not the cause.

  • Increase the number of worker nodes in the cluster.

    Why it's wrong here

    Doesn't increase per-executor memory.

  • Add --properties spark.executor.memory=8g to the command.

    Why this is correct

    Increases executor heap space.

    Related concept

    Read the scenario before looking for a memorised answer.

  • Add --driver-memory 8g to the command.

    Why it's wrong here

    Driver memory is not the issue.

Common exam traps

Common exam trap: answer the scenario, not the keyword

Google Cloud often tests the distinction between driver memory and executor memory, and candidates mistakenly choose `--driver-memory` because they confuse the driver's role with the executors' memory needs, or they assume that increasing cluster size (more nodes) automatically increases per-executor memory.

Detailed technical explanation

How to think about this question

Spark executor memory is divided into regions: storage memory (for cached data), execution memory (for shuffle, joins, aggregations), and user memory (for user code). The `spark.executor.memory` property sets the total JVM heap for each executor, and if this is too low, tasks may fail with `java.lang.OutOfMemoryError: Java heap space` or `GC overhead limit exceeded`. In Dataproc, the default executor memory is often set to 4g for standard machine types, but data-intensive jobs may require tuning based on the `spark.memory.fraction` (default 0.6) and `spark.memory.storageFraction` (default 0.5) to avoid spilling to disk or OOM errors.

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: Add --properties spark.executor.memory=8g to the command. — The out-of-memory error indicates that the Spark executors do not have enough memory to process the data. Adding `--properties spark.executor.memory=8g` increases the memory allocated to each executor, directly addressing the root cause. This property overrides the default executor memory (typically 1g or 4g depending on the cluster configuration) and is the standard way to tune executor memory in Spark on Dataproc.

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.

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

Last reviewed: Jun 30, 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.