Skip to content

Ingest Data into DynamoDB

Start DynamoDB Database and Create Table

Set up a DynamoDB database, taking Mac OSX for instance:

bash
$ brew install dynamodb-local

$ dynamodb-local -sharedDb

For details about how to deploy DynamoDB and AWS CLI locally, please see Deploying DynamoDB Locally

Initiate the DynamoDB table:

1). Create table definition file "mqtt_msg.json" for DynamoDB:

json
{
    "TableName": "mqtt_msg",
    "KeySchema": [
        { "AttributeName": "msgid", "KeyType": "HASH" }
    ],
    "AttributeDefinitions": [
        { "AttributeName": "msgid", "AttributeType": "S" }
    ],
    "ProvisionedThroughput": {
        "ReadCapacityUnits": 5,
        "WriteCapacityUnits": 5
    }
}

2). Create the DynamoDB table:

bash
$aws dynamodb create-table --cli-input-json file://mqtt_msg.json --endpoint-url http://localhost:8000

Create a Rule

Go to EMQX Dashboard, select the "rule" tab on the menu to the left.

Select "message.publish", then type in the following SQL:

sql
SELECT id as msgid, topic, payload FROM "#"

Add an Action

Click on the "+ Add" button under "Action Handler", and then select "Data to DynamoDB" in the pop-up dialog window.

image

Fill in the parameters required by the action:

Four parameters is required by action "Data to DynamoDB":

1). DynamoDB Table. Here set it to "mqtt_msg".

2). Hash Key. Here set it to "msgid".

3). DynamoDB Range Key. Leave it empty as we didn't define a range key in the dynamodb definition file.

image

4). Bind a resource to the action. Since the dropdown list "Resource" is empty for now, we create a new resource by clicking on the "New Resource" to the top right, and then select "DynamoDB":

image

Fill in the configs as follows:

  • DynamoDB Region: us-west-2
  • DynamoDB Server: http://localhost:8000
  • AWS Access Key Id: "AKIAU5IM2XOC7AQWG7HK"
  • AWS Secret Access Key: "TZt7XoRi+vtCJYQ9YsAinh19jR1rngm/hxZMWR2P"

And then click on the "Create" button.

image

Back to the "Actions" dialog, and then click on the "Confirm" button.

image

Back to the creating rule page, then click on "Create" button. The rule we created will be show in the rule list:

image

Test the Rule

We have finished creating the rule, test the rule by sending an MQTT message to EMQX:

bash
> Topic: "t/a"
>
> QoS: 1
>
> Payload: "hello"

Then inspect the DynamoDB table, and verify if a new record is inserted:

image

And from the rule list, verify that the "Matched" column has increased to 1:

image