Home > OS >  What is the different between Amazon Kinesis data stream and DynamoDB stream details
What is the different between Amazon Kinesis data stream and DynamoDB stream details

Time:11-02

I am using dynamodb and I'd like to enable dynamodb stream to process any data change in the dynamodb table. By looking at the stream options, there are two streams Amazon Kinesis data stream and DynamoDB stream. From the doc of these two streams, both are handling the data change from dynamodb table but I am not sure what the main different between using these two.

CodePudding user response:

There are quite a few of the differences, which are listed in:

Few notable ones are that DynamoDB Streams, unlike Kinesis Data Streams for DynamoDB, guarantees no duplicates, the record retention time is only 24 hours, and the are throughout capacity limits.

  • Related