I can't seem to get the stream support working in local local dynamo, are they supported? The only sign that I was able to detect is the last point at http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Tools.DynamoDBLocal.html#Tools.DynamoDBLocal.Differences
When using local dynamic scrap, it seems that StreamSpecification is ignored, so when you call createTable or describeTable
The following code returns LastStreamArn with the dynamodb managed service, but not locally dynamically:
ddb.createTable({ TableName: 'streaming_test', AttributeDefinitions: [ { AttributeName: 'id', AttributeType: 'S' } ], KeySchema: [ { AttributeName: 'id', KeyType: 'HASH' } ], ProvisionedThroughput: { ReadCapacityUnits: 5, WriteCapacityUnits: 5 }, StreamSpecification: { StreamEnabled: true, StreamViewType: 'NEW_AND_OLD_IMAGES' } }, function (err, data) { if (err) { console.log(err, err.stack) } else {
amazon-web-services amazon-dynamodb dynamo-local
jschr
source share