nerdexam
Amazon

DVA-C02 · Question #739

A developer is building a backend system for the long-term storage of information from an inventory management system. The information needs to be stored so that other teams can build tools to report

The correct answer is B. Create an AWS Lambda function that writes to Amazon S3 asynchronously. Configure a dead-. Writing to Amazon S3 asynchronously via an AWS Lambda function ensures low latency for the inventory system and allows for fast ingestion of data. By configuring a dead-letter queue (DLQ), the system gains fault tolerance without impacting performance. This pattern provides the f

Submitted by eva_at· Mar 5, 2026Development with AWS Services

Question

A developer is building a backend system for the long-term storage of information from an inventory management system. The information needs to be stored so that other teams can build tools to report and analyze the data. How should the developer implement this solution to achieve the FASTEST running time?

Options

  • ACreate an AWS Lambda function that writes to Amazon S3 synchronously Increase the function's
  • BCreate an AWS Lambda function that writes to Amazon S3 asynchronously. Configure a dead-
  • CCreate an AWS Lambda function that writes to Amazon S3 synchronously. Set the inventory
  • DCreate an AWS Lambda function that writes to an Amazon ElastiCache (Redis OSS) cluster

How the community answered

(44 responses)
  • A
    7% (3)
  • B
    77% (34)
  • C
    2% (1)
  • D
    14% (6)

Explanation

Writing to Amazon S3 asynchronously via an AWS Lambda function ensures low latency for the inventory system and allows for fast ingestion of data. By configuring a dead-letter queue (DLQ), the system gains fault tolerance without impacting performance. This pattern provides the fastest overall running time while maintaining reliability.

Community Discussion

No community discussion yet for this question.

Full DVA-C02 Practice