0 votes
in AWS by

An application needs to make use of a messaging system. The messages need to be processed in the order they are received, and also no duplicates should be allowed.

Which of the following would you use for this purpose?

1 Answer

0 votes
by

Answer - D.

This is also mentioned in the AWS Documentation.

FIFO (First-In-First-Out) queues are designed to enhance messaging between applications when the order of operations and events is critical or where duplicates can't be tolerated, for example:

Ensure that user-entered commands are executed in the right order.

Display the correct product price by sending price modifications in the right order.

Prevent a student from enrolling in a course before registering for an account.

Options A and B are incorrect since an existing Standard queue can't be changed to FIFO.

...