创建 DynamoDB 规则

  1. 搭建 DynamoDB 数据库,以 MacOS X 为例:

    1. $ brew install dynamodb-local
    2. $ dynamodb-local
  2. 创建 DynamoDB 表定义文件 mqtt_msg.json :

    1. {
    2. "TableName": "mqtt_msg",
    3. "KeySchema": [
    4. { "AttributeName": "msgid", "KeyType": "HASH" }
    5. ],
    6. "AttributeDefinitions": [
    7. { "AttributeName": "msgid", "AttributeType": "S" }
    8. ],
    9. "ProvisionedThroughput": {
    10. "ReadCapacityUnits": 5,
    11. "WriteCapacityUnits": 5
    12. }
    13. }
  3. 初始化 DynamoDB 表:

    1. $ aws dynamodb create-table --cli-input-json file://mqtt_msg.json --endpoint-url http://localhost:8000
  4. 创建规则:

打开 emqx dashboard 创建 DynamoDB 规则 - 图1 (opens new window) ,选择左侧的 “规则” 选项卡。

选择触发事件 “消息发布”,然后填写规则 SQL:

  1. SELECT
  2. msgid as id, topic, payload
  3. FROM
  4. "message.pubish"

image

  1. 关联动作:

在 “响应动作” 界面选择 “添加”,然后在 “动作” 下拉框里选择 “保存数据到 DynamoDB”。

image

  1. 填写动作参数:

“保存数据到 DynamoDB” 动作需要两个参数:

1). DynamoDB 表名。这个例子里我们设置的表名为 “mqtt_msg”

2). DynamoDB Hash Key。这个例子里我们设置的 Hash Key 要与表定义的一致

3). DynamoDB Range Key。由于我们表定义里没有设置 Range Key。这个例子里我们把 Range Key 设置为空。

image

4). 关联资源的 ID。现在资源下拉框为空,可以点击右上角的 “新建资源” 来创建一个 DynamoDB 资源:

image

选择 “DynamoDB 资源”。

  1. 填写资源配置:

区域名填写“us-west-2”

服务器地址填写“ http://localhost:8000 创建 DynamoDB 规则 - 图6 (opens new window)

连接访问 ID 填写“AKIAU5IM2XOC7AQWG7HK”

连接访问密钥填写“TZt7XoRi+vtCJYQ9YsAinh19jR1rngm/hxZMWR2P”

image

点击 “新建” 按钮。

  1. 返回响应动作界面,点击 “确认”。

image

  1. 返回规则创建界面,点击 “新建”。

image

  1. 规则已经创建完成,现在发一条数据:

Topic: “t/a”

QoS: 1

Payload: “hello”

然后检查 DynamoDB 的 mqtt_msg 表,新的 record 是否添加成功:

image

在规则列表里,可以看到刚才创建的规则的命中次数已经增加了 1:

image