Skip to content

Commit

Permalink
dynamodb cdc
Browse files Browse the repository at this point in the history
  • Loading branch information
hdulay committed Nov 4, 2022
1 parent e4d34d6 commit 9a992cb
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions dynamodb_cdc/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,16 @@ DynamoDB provides CDC data to Kinesis following the instructions [here](https://

This example creates a Kinesis source connection to the stream you created. The data loader is implemented in NodeJS.

Below is a diagram of a use case. We will be implementing everything above `Cleanse`.
```mermaid
flowchart TD;
NodeJS-->ddb[DynamoDB]-->Kinesis-->dc[Decodable Kinesis Source]-->Cleanse-->Materialize-->pg[(Materialize in a Database)]
Other[Other Streaming Data]-->Enrichment
Materialize-->Enrichment
```


## Setup

Create a `.env` file to place your credentials. The Makefile will use this information to build the stream and Kinesis source connection.
Expand Down

0 comments on commit 9a992cb

Please sign in to comment.