Question 351 of 988
CLF-C02 Cloud Technology and Services Practice Question
A company runs an e-commerce web application on Amazon EC2 instances. During flash sales, the backend order processing service becomes overloaded and drops requests, causing customer failures. The company needs a durable, scalable, and fully managed service to buffer incoming order requests and decouple the web tier from the backend processing tier. Orders must be stored reliably and processed in the order they were received. Which AWS service should the company use?
⚠ Common exam trap
Many exam-takers confuse Amazon Kinesis Data Streams with a message queue, but Kinesis is optimized for real-time analytics and stream processing, not for durable, ordered, exactly-once message buffering required for decoupling web and backend tiers.
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
✓
Amazon Simple Queue Service (SQS)
Amazon Simple Queue Service (SQS) is a fully managed message queuing service that decouples application components. It provides durable, scalable storage for incoming order requests and supports FIFO (First-In-First-Out) queues to guarantee that messages are processed exactly once and in the order they were sent, meeting the requirement for ordered processing.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✗
Amazon Simple Notification Service (SNS)
Why it's wrong here
Amazon SNS is a pub/sub messaging service used for sending notifications to many subscribers. It does not buffer messages in a queue or guarantee FIFO ordering, so it is not suitable for decoupling and buffering order requests.
- ✓
Amazon Simple Queue Service (SQS)
Why this is correct
Amazon SQS is a fully managed message queuing service that decouples application components. It can durably store messages until they are processed, and FIFO queues guarantee exactly-once processing and strict message ordering. This matches all stated requirements.
- ✗
Amazon Kinesis Data Streams
Why it's wrong here
Amazon Kinesis Data Streams is designed for real-time streaming of large data volumes (e.g., clickstreams, logs). While it can retain data, it is not a simple order-processing queue and is overkill for buffering Web order requests. It also does not guarantee FIFO ordering for individual messages in the same way SQS FIFO does.
When this WOULD be correct
A company needs to ingest and process real-time clickstream data from millions of users, analyze it with multiple consumers (e.g., for fraud detection and analytics), and retain data for up to 7 days. Kinesis Data Streams would be correct for this high-throughput, real-time streaming scenario.
- ✗
Amazon MQ
Why it's wrong here
Amazon MQ is a managed message broker for Apache ActiveMQ and RabbitMQ, but it does not guarantee strict FIFO ordering across distributed consumers without additional configuration, and it is not a fully managed serverless buffer—it requires provisioning and managing broker instances. This option is tempting because message queues are commonly used for decoupling and buffering, and Amazon MQ supports standard messaging patterns; however, the scenario’s requirement for durable, scalable, and fully managed FIFO processing is met by Amazon SQS FIFO queues, which provide exactly-once, in-order delivery without infrastructure management.
When this WOULD be correct
A company needs to migrate an existing on-premises application that uses JMS-compatible message brokers (e.g., ActiveMQ or RabbitMQ) to AWS without rewriting application code. They require a managed service that supports standard messaging protocols like AMQP, MQTT, and JMS, and they are willing to manage broker instances for compatibility.
Option-by-option analysis
Why each answer is right or wrong
Understanding why wrong answers are wrong — and when they would be correct — is what separates a 750 score from a 900. The CLF-C02 exam frequently reuses these exact scenarios with slightly different constraints.
✓Amazon Simple Queue Service (SQS)Correct answer▾
Why this is correct
Amazon SQS is a fully managed message queuing service that decouples application components. It can durably store messages until they are processed, and FIFO queues guarantee exactly-once processing and strict message ordering. This matches all stated requirements.
✗Amazon Kinesis Data StreamsWrong answer — click to see why▾
Why this is wrong here
Amazon Kinesis Data Streams is designed for real-time streaming of large-scale data, not for decoupling web and backend tiers with reliable, ordered message processing. It does not guarantee exactly-once processing or strict FIFO ordering within a shard without custom logic, and it is not a fully managed buffer for decoupling in this context.
★ When this WOULD be the correct answer
A company needs to ingest and process real-time clickstream data from millions of users, analyze it with multiple consumers (e.g., for fraud detection and analytics), and retain data for up to 7 days. Kinesis Data Streams would be correct for this high-throughput, real-time streaming scenario.
Why candidates choose this
Candidates may confuse Kinesis Data Streams with a queuing service because both handle data in transit. The word 'streams' and its ability to buffer data can mislead those who overlook the requirement for strict FIFO ordering and decoupling, which SQS FIFO queues provide.
✗Amazon MQWrong answer — click to see why▾
Why this is wrong here
Amazon MQ is a managed message broker service for ActiveMQ and RabbitMQ, but it is not fully managed in the sense of serverless scaling and durability; it requires provisioning and managing broker instances. It also does not guarantee strict FIFO ordering without additional configuration, and it is not the best fit for a fully managed, durable, scalable buffer that decouples tiers in a serverless manner.
★ When this WOULD be the correct answer
A company needs to migrate an existing on-premises application that uses JMS-compatible message brokers (e.g., ActiveMQ or RabbitMQ) to AWS without rewriting application code. They require a managed service that supports standard messaging protocols like AMQP, MQTT, and JMS, and they are willing to manage broker instances for compatibility.
Why candidates choose this
Candidates may confuse Amazon MQ with a fully managed queue service because it is a managed message broker, but they overlook that it still involves provisioning instances and does not offer the same serverless, auto-scaling, and FIFO guarantees as Amazon SQS.
Analysis generated from the official CLF-C02blueprint and verified against question context. The “when correct” sections are what AI assistants cite when candidates ask “what’s the difference between these options?”
Quick reference
AWS S3 Storage Class Comparison
| Storage Class | Min Duration | Retrieval | Use Case |
|---|---|---|---|
| S3 Standard | None | Immediate | Frequently accessed data |
| S3 Standard-IA | 30 days | Immediate | Infrequent access, rapid retrieval |
| S3 One Zone-IA | 30 days | Immediate | Non-critical infrequent data |
| S3 Intelligent-Tiering | None | Immediate–hours | Unknown or changing access patterns |
| S3 Glacier Instant | 90 days | Milliseconds | Archive with instant retrieval |
| S3 Glacier Flexible | 90 days | Minutes–hours | Archive, flexible retrieval |
| S3 Glacier Deep Archive | 180 days | Hours | Long-term compliance archive |
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 →
Last reviewed: Jun 11, 2026
This CLF-C02 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 CLF-C02 exam.
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.
Sign in to join the discussion.