nerdexam
Amazon

DAS-C01 · Question #15

A mobile gaming company wants to capture data from its gaming app and make the data available for analysis immediately. The data record size will be approximately 20 KB. The company is concerned…

The correct answer is A. Have the app call the PutRecords API to send data to Amazon Kinesis Data Streams. Using the PutRecords API to send data to Amazon Kinesis Data Streams (Option A) is the correct solution. Kinesis Data Streams supports Enhanced Fan-Out (EFO), which provides each registered consumer with its own dedicated read throughput of 2 MB/s per shard - directly…

Collection

Question

A mobile gaming company wants to capture data from its gaming app and make the data available for analysis immediately. The data record size will be approximately 20 KB. The company is concerned about achieving optimal throughput from each device. Additionally, the company wants to develop a data stream processing application with dedicated throughput for each consumer. Which solution would achieve this goal?

Options

  • AHave the app call the PutRecords API to send data to Amazon Kinesis Data Streams.
  • BHave the app call the PutRecordBatch API to send data to Amazon Kinesis Data Firehose.
  • CHave the app use Amazon Kinesis Producer Library (KPL) to send data to Kinesis Data Firehose.
  • DHave the app call the PutRecords API to send data to Amazon Kinesis Data Streams.

How the community answered

(52 responses)
  • A
    69% (36)
  • B
    10% (5)
  • C
    17% (9)
  • D
    4% (2)

Explanation

Using the PutRecords API to send data to Amazon Kinesis Data Streams (Option A) is the correct solution. Kinesis Data Streams supports Enhanced Fan-Out (EFO), which provides each registered consumer with its own dedicated read throughput of 2 MB/s per shard - directly satisfying the requirement for 'dedicated throughput for each consumer.' PutRecords allows batch writes for efficiency, and at ~20 KB per record, this fits well within Kinesis shard limits (1 MB/s write, 1,000 records/s). Options B and C route data to Amazon Kinesis Data Firehose, which does not support Enhanced Fan-Out or dedicated per-consumer throughput - it is a delivery service, not a real-time streaming platform with multiple independent consumers. Option D appears identical to Option A in this question, but A is the intended correct answer pointing to Kinesis Data Streams with EFO.

Topics

#Kinesis Data Streams#Data Ingestion#Real-time Streaming#API Throughput

Community Discussion

No community discussion yet for this question.

Full DAS-C01 Practice