node-dynamodb-stream
node-dynamodb-stream copied to clipboard
A wrapper around low level aws sdk that makes it easy to consume a dynamodb-stream
Bumps [simple-plist](https://github.com/wollardj/simple-plist) from 1.1.1 to 1.3.1. Release notes Sourced from simple-plist's releases. TypeScript This release is a rewrite of the JavaScript code into TypeScript code to add strong typing for...
Resolves https://github.com/ironSource/node-dynamodb-stream/issues/16. When the `getShardIterator` API call raises a `ResourceNotFoundException` we can simply skip the shard.
We persist the stream's shard state periodically. When the service restarts, it loads the last known shard state. Occasionally this throws an error if the saved state contains a shard,...
Resolves #14 by paginating the results of the `describeStream` API call.
The `AWS.DynamoDBStreams.describeStream()` function returns max. 100 shards. If the stream consists of more shards than that, the response contains a `LastEvaluatedShardId` value, which can be passed in a subsequent `describeStream()`...