Questions tagged [amazon-dynamodb-streams]

Use this tag for questions related to DynamoDB Streams, which provides a time ordered sequence of item level changes in any DynamoDB table. The changes are de-duplicated and stored for 24 hours. This capability enables you to extend the power of DynamoDB with cross-region replication, continuous analytics with Redshift integration, change notifications, and many other scenarios.

Useful links:

  1. Documentation
  2. Use cases
393 questions
-1
votes
1 answer

Lambda coming back up after down time

If for some reason aws lambda goes down, how does it behave once it is back up? Let me explain what I am trying to achieve. I have a stream enabled dynamodb table and a lambda which keeps listening on dynamodb changes. If for some reason lambda goes…
-1
votes
1 answer

DynamoDB.putitem not adding paramaters to DynamoDB table?

My lambda function uses the method ddb.putItem(params, function(err, data) { if (err) console.log(err, err.stack); // an error occurred else console.log("SUBMITTED DATA"); // successful response }); with my params being correctly…
-2
votes
1 answer

Impact of On-Demand mode on Audit table data for Amazon DynamoDB

I am working on Amazon DynamoDB audit table. The read/write mode was set to "Provisioning". Now, the mode is changed to "On-Demand". I have an "Audit Table" (which captures the audit information like date and time of operation, user details, etc)…
1 2 3
26
27