Loading data from Amazon dynamoDB to redshift

后端 未结 2 417
我寻月下人不归
我寻月下人不归 2021-01-06 04:23

We have a DynamoDB table in production that is being continuously updated,we want to load all the records from dynamoDB to redshift.

we tried using the copy command,

2条回答
  •  灰色年华
    2021-01-06 04:51

    Consider looking into a DynamoDB Streams based solution. Streams provides an ordered log of the data plane events transpiring on each DynamoDB partition (so events for each primary key are absolutely ordered). You can use Kinesis Client Library and DynamoDB Streams Kinesis Adapter to process the Stream to Redshift.

    DynamoDB Streams is currently in preview, but should be generally available soon.

提交回复
热议问题