mediummulti selectObjective-mapped

An internal rendering job runs on EC2 workers in an Auto Scaling group. Each job writes checkpoints every few minutes to S3 and can resume from the latest checkpoint after an interruption. The queue depth varies sharply, and the team wants the lowest possible compute cost. Which two changes should they make? Select two.

Question 1mediummulti select
Full question →

An internal rendering job runs on EC2 workers in an Auto Scaling group. Each job writes checkpoints every few minutes to S3 and can resume from the latest checkpoint after an interruption. The queue depth varies sharply, and the team wants the lowest possible compute cost. Which two changes should they make? Select two.

Answer choices

Why each option matters

Good practice is not just finding the correct option. The wrong answers often show the exact trap the exam wants you to fall into.

A

Best answer

Run the worker fleet on EC2 Spot Instances.

Spot Instances usually provide the lowest EC2 compute price and fit workloads that can tolerate interruption. Because the job checkpoints to S3, the application can resume after Spot interruptions without losing all progress.

B

Distractor review

Purchase Dedicated Hosts so the fleet keeps physical servers reserved for the workload.

Dedicated Hosts add isolation and license control, but they are typically far more expensive than flexible capacity options. They are not the best choice when the primary goal is minimizing cost.

C

Best answer

Use a Mixed Instances Policy with several compatible instance types and Spot capacity-optimized allocation.

Diversifying instance types improves the chance that Auto Scaling can obtain cheap Spot capacity. A mixed policy also reduces the risk of a single instance type shortage stopping the job fleet.

D

Distractor review

Run the entire fleet on On-Demand Instances to avoid any interruption risk.

On-Demand is simpler, but it costs more than Spot and does not address the requirement to minimize compute spend. The scenario already states the workload can recover from interruption.

E

Distractor review

Move the workers to AWS Outposts to keep compute close to the data.

Outposts is useful for hybrid locality or on-premises requirements, but it is not a cost-minimization choice for a cloud batch workload. It adds infrastructure commitment instead of lowering the bill.

Common exam trap

Common exam trap: NAT rules depend on direction and matching traffic

NAT is not only about the public address. The inside/outside interface roles and the ACL or rule that matches traffic are just as important.

Technical deep dive

How to think about this question

NAT questions usually test address translation, overload/PAT behaviour, static mappings and whether the right traffic is being translated. Read the interface direction and address terms carefully.

KKey Concepts to Remember

  • Static NAT maps one inside address to one outside address.
  • PAT allows many inside hosts to share one public address using ports.
  • Inside local and inside global describe the private and translated addresses.
  • NAT ACLs identify traffic for translation, not always security filtering.

TExam Day Tips

  • Identify inside and outside interfaces first.
  • Check whether the scenario needs static NAT, dynamic NAT or PAT.
  • Do not confuse NAT matching ACLs with normal packet-filtering intent.

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.

More questions from this exam

Keep practising from the same exam bank, or move into a focused topic page if this question exposed a weak area.

FAQ

Questions learners often ask

What does this SAA-C03 question test?

Static NAT maps one inside address to one outside address.

What is the correct answer to this question?

The correct answer is: Run the worker fleet on EC2 Spot Instances. — Spot Instances are the most cost-effective choice for interruption-tolerant EC2 workers, and the checkpoint design makes that practical. A Mixed Instances Policy with several instance types further improves availability of Spot capacity and helps the Auto Scaling group keep scaling during demand spikes. Together, these changes reduce compute cost while preserving job progress after interruptions. Why others are wrong: Dedicated Hosts and On-Demand Instances both increase cost relative to the interruption-tolerant design in the scenario. Outposts is a hybrid infrastructure choice, not a cost-optimization tactic for a cloud batch fleet. The job already tolerates interruption, so paying for guaranteed capacity is unnecessary.

What should I do if I get this SAA-C03 question wrong?

Then try more questions from the same exam bank and focus on understanding why the wrong options are tempting.

Discussion

Loading comments…

Sign in to join the discussion.