Question 726 of 1,040
Design High-Performing ArchitecturesmediumMultiple ChoiceObjective-mapped

Quick Answer

The answer is to use a cluster placement group, as it is the only placement group type that places all 80 EC2 instances in close physical proximity within a single Availability Zone, providing the low-latency, high-bandwidth networking and minimal jitter required for tightly coupled, latency-sensitive distributed training. This works because a cluster placement group leverages non-blocking, high-throughput interconnects between instances, making it ideal for workloads that exchange small messages frequently. On the SAA-C03 exam, this scenario tests your ability to distinguish between placement group types: cluster for low latency within one AZ, spread for fault isolation, and partition for large distributed systems. A common trap is confusing a spread group with a cluster group, but remember that only a cluster group maximizes intra-cluster network performance. Memory tip: “Cluster for Closeness, Spread for Separation.”

SAA-C03 Design High-Performing Architectures Practice Question

This SAA-C03 practice question tests your understanding of design high-performing architectures. 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.

A research team runs a latency-sensitive distributed training job on Amazon EC2. They deploy 80 identical nodes that exchange small messages frequently and need low network jitter. The job must run entirely within one Availability Zone. Which placement group strategy should a solutions architect use to maximize intra-cluster network performance?

Question 1mediummultiple choice
Full question →

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

Use a cluster placement group to keep all instances in close proximity within the same Availability Zone.

A cluster placement group is the correct choice because it places all 80 EC2 instances in close physical proximity within a single Availability Zone, ensuring low-latency, high-bandwidth network connections with minimal jitter. This placement group type is specifically designed for tightly coupled, latency-sensitive workloads like distributed training that require frequent, small message exchanges, as it leverages non-blocking, high-throughput networking between instances.

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 cluster placement group to keep all instances in close proximity within the same Availability Zone.

    Why this is correct

    A cluster placement group is optimized to place instances close together (for example, within the same rack/cluster) to reduce latency and jitter for traffic between the instances. Because the workload runs in a single Availability Zone, the cluster placement group aligns with the requirement for strong locality and low-jitter communication.

    Related concept

    Read the scenario before looking for a memorised answer.

  • Use a spread placement group to distribute instances across distinct hardware to reduce jitter.

    Why it's wrong here

    Spread placement groups are designed primarily for fault isolation by placing instances across distinct underlying hardware. They do not prioritize the tight placement needed to maximize low-jitter, low-latency networking between all nodes.

  • Use a partition placement group and place each node into its own partition for uniform latency.

    Why it's wrong here

    Partition placement groups provide isolation between partitions for very large deployments, limiting blast radius. They are not the best choice for maximizing low-jitter network performance among every node that must communicate constantly within a single AZ.

  • Do not use a placement group; rely on the default EC2 scheduling to balance latency and availability.

    Why it's wrong here

    Without a placement group, instance placement is left to default scheduling, which can vary across different underlying hardware. That unpredictability makes it harder to achieve consistently low network jitter for tightly coupled, frequent-message communication.

Common exam traps

Common exam trap: answer the scenario, not the keyword

The trap here is that candidates often confuse spread placement groups (which reduce jitter by isolating hardware failures) with cluster placement groups (which reduce jitter by minimizing physical distance), not realizing that jitter in this context is caused by network hops, not hardware faults.

Detailed technical explanation

How to think about this question

Cluster placement groups use a single 10 Gbps or 25 Gbps network path with enhanced networking (e.g., Elastic Network Adapter or Intel 82599 VF) to achieve sub-millisecond latency between instances. In distributed training jobs like those using NCCL or MPI, the all-reduce algorithm benefits from this low jitter because synchronization steps are sensitive to variance in network round-trip times. AWS recommends using a cluster placement group with instances that support ENA and SR-IOV to maximize performance for HPC workloads.

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

An e-commerce site experiences heavy traffic on Black Friday and near-zero traffic during off-peak weeks. Rather than provisioning permanent large VMs, the team uses auto-scaling groups that add capacity automatically under load and reduce it overnight. Questions like this test whether you understand elasticity, availability zones, and cloud compute scaling patterns.

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 SAA-C03 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 SAA-C03 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 SAA-C03 question test?

Design High-Performing Architectures — This question tests Design High-Performing Architectures — Read the scenario before looking for a memorised answer..

What is the correct answer to this question?

The correct answer is: Use a cluster placement group to keep all instances in close proximity within the same Availability Zone. — A cluster placement group is the correct choice because it places all 80 EC2 instances in close physical proximity within a single Availability Zone, ensuring low-latency, high-bandwidth network connections with minimal jitter. This placement group type is specifically designed for tightly coupled, latency-sensitive workloads like distributed training that require frequent, small message exchanges, as it leverages non-blocking, high-throughput networking between instances.

What should I do if I get this SAA-C03 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

Same concept, more angles

4 more ways this is tested on SAA-C03

These questions test the same concept from different angles. Work through them to make sure you can recognise it however the exam phrases it.

Variation 1. Based on the exhibit, a distributed analytics workload runs on 12 EC2 instances in one Availability Zone. The nodes exchange thousands of small messages per second and require the lowest possible intra-cluster latency and jitter. Which EC2 placement strategy is the best fit?

hard
  • A.Spread placement group, because it places each instance on distinct underlying hardware.
  • B.Partition placement group, because it isolates nodes across rack partitions.
  • C.Cluster placement group, because it places instances physically close together in one Availability Zone.
  • D.Move the workload behind an Application Load Balancer so node-to-node traffic is balanced more efficiently.

Why C: A cluster placement group is the best choice because it places all 12 EC2 instances in a single Availability Zone within the same high-bandwidth, low-latency logical segment of the network. This minimizes the physical distance and network hops between nodes, achieving the lowest possible intra-cluster latency and jitter required for the thousands of small messages exchanged per second.

Variation 2. A distributed analytics engine runs 12 EC2 instances in one Availability Zone. The nodes exchange thousands of tiny messages per second and must keep jitter as low as possible. The current design launches the instances across multiple placement groups and uses general-purpose burstable instances. Which two changes will most directly lower east-west network latency and variability? Select two.

hard
  • A.Move all instances into a cluster placement group.
  • B.Use instance families that provide high network bandwidth and support enhanced networking.
  • C.Spread the instances across three Availability Zones for better fault tolerance.
  • D.Front the nodes with an Application Load Balancer to balance the internal messages.
  • E.Store the messages on EBS volumes so the nodes avoid network communication.

Why A: A cluster placement group provides a low-latency, high-bandwidth network connection by placing instances in a single Availability Zone within the same logical rack or cluster. This minimizes the physical distance and network hops between instances, directly reducing east-west latency and jitter for the thousands of tiny messages per second.

Variation 3. A distributed analytics platform runs on 12 EC2 instances in one Availability Zone. The nodes exchange a very high volume of east-west messages and the team wants the lowest possible network latency between instances. Which two changes should the architect make first? Select two.

medium
  • A.Place the instances in a cluster placement group so AWS keeps them physically close together.
  • B.Use instance types that support enhanced networking with the Elastic Network Adapter (ENA).
  • C.Spread the instances across multiple Availability Zones to reduce the chance of correlated failure.
  • D.Use a spread placement group so each instance lands on different underlying hardware.
  • E.Move the workload to burstable T-series instances to absorb short traffic spikes economically.

Why A: A cluster placement group is the correct choice because it ensures EC2 instances are placed in a single Availability Zone and are physically close together, which minimizes network latency and maximizes throughput for high-volume east-west traffic. This is the lowest-latency placement group option available, as it groups instances within a single rack or cluster of racks, reducing the number of network hops.

Variation 4. Based on the exhibit, a low-latency analytics platform runs 10 EC2 instances in the same Availability Zone. The nodes exchange a very high volume of east-west messages and must experience the lowest possible network latency and jitter. A separate operations team also wants to reduce the risk that all nodes land on the same physical hardware rack. Which placement strategy should the solutions architect use?

hard
  • A.Cluster placement group
  • B.Spread placement group
  • C.Partition placement group
  • D.Auto Scaling group with a mixed instances policy

Why A: A cluster placement group is the correct choice because it provides the lowest possible network latency and jitter by ensuring all 10 EC2 instances are placed in close proximity within a single Availability Zone, enabling non-blocking, high-bandwidth communication. This is ideal for high-volume east-west traffic, as it maximizes network performance for tightly coupled workloads like analytics platforms.

Keep practising

More SAA-C03 practice questions

Last reviewed: Jun 11, 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 SAA-C03 practice question is part of Courseiva's free Amazon Web Services 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 SAA-C03 exam.