DynamoDB 消息存储
EMQX 3.1 版本后推出强大的规则引擎用于替换插件,建议您前往使用保存数据到 DynamoDB规则引擎中创建 保存数据到 DynamoDB
配置文件: etc/plugins/emqx_backend_dynamo.conf
backend 消息存储规则包括:
DynamoDB 数据库创建表
mqtt_client 表定义(存储设备在线状态):
{
"TableName": "mqtt_client",
"KeySchema": [
{ "AttributeName": "clientid", "KeyType": "HASH" }
],
"AttributeDefinitions": [
{ "AttributeName": "clientid", "AttributeType": "S" }
],
"ProvisionedThroughput": {
"ReadCapacityUnits": 5,
"WriteCapacityUnits": 5
}
}
查询设备在线状态:
aws dynamodb scan --table-name mqtt_client --region us-west-2 --endpoint-url http://localhost:8000
{
"Items": [
{
"offline_at": { "N": "0" },
"node": { "S": "emqx@127.0.0.1" },
"clientid": { "S": "mqttjs_384b9c73a9" },
"connect_state": { "N": "1" },
"online_at": { "N": "1562224940" }
}
],
"Count": 1,
"ScannedCount": 1,
"ConsumedCapacity": null
}
DynamoDB 用户订阅主题(Subscription Table)
{
"TableName": "mqtt_sub",
"KeySchema": [
{ "AttributeName": "clientid", "KeyType": "HASH" },
{ "AttributeName": "topic", "KeyType": "RANGE" }
],
"AttributeDefinitions": [
{ "AttributeName": "clientid", "AttributeType": "S" },
{ "AttributeName": "topic", "AttributeType": "S" }
],
"ProvisionedThroughput": {
"WriteCapacityUnits": 5
}
}
查询 ClientId 为 “test-dynamo” 的客户端已订阅主题:
mqtt_msg 表定义(存储 MQTT 消息):
{
"KeySchema": [
{ "AttributeName": "msgid", "KeyType": "HASH" }
],
"AttributeDefinitions": [
{ "AttributeName": "msgid", "AttributeType": "S" }
],
"ProvisionedThroughput": {
"ReadCapacityUnits": 5,
"WriteCapacityUnits": 5
}
}
mqtt_topic_msg_map 表定义(存储主题和消息的映射关系):
{
"TableName": "mqtt_topic_msg_map",
"KeySchema": [
{ "AttributeName": "topic", "KeyType": "HASH" }
],
"AttributeDefinitions": [
{ "AttributeName": "topic", "AttributeType": "S" }
],
"ProvisionedThroughput": {
"ReadCapacityUnits": 5,
"WriteCapacityUnits": 5
}
}
某个客户端向主题 test 发布消息后,查询 mqtt_msg 表和 mqtt_topic_msg_map 表:
查询 mqtt_msg 表:
aws dynamodb scan --table-name mqtt_msg --region us-west-2 --endpoint-url http://localhost:8000
> - {
> - "Items": \[
> - {
> "arrived": { "N": "1562308553" }, "qos": { "N": "1" },
> "sender": { "S": "mqttjs_231b962d5c" }, "payload": { "S":
> "{ "msg": "Hello, World\!" }"}, "retain": { "N": "0" },
> "msgid": { "S":
> "Mjg4MTk1MDYwNTk0NjYwNzYzMTg4MDk3OTQ2MDU2Nzg1OTD" },
> "topic": { "S": "test" }
> }
> \], "Count": 1, "ScannedCount": 1, "ConsumedCapacity": null
> }
aws dynamodb scan --table-name mqtt_topic_msg_map --region us-west-2 --endpoint-url http://localhost:8000
> - {
> - "Items": \[
> "topic": { "S": "test" }, "MsgId": { "SS": \[
> }
> \], "Count": 1, "ScannedCount": 1, "ConsumedCapacity": null
> }
DynamoDB 保留消息(Retain Message Table)
mqtt_retain 表定义(存储 retain 消息):
某个客户端向主题 test 发布消息后,查询 mqtt_retain 表:
{
"Items": [
{
"arrived": { "N": "1562312113" },
"qos": { "N": "1" },
"sender": { "S": "mqttjs_d0513acfce" },
"payload": { "S": "test" },
"retain": { "N": "1" },
"msgid": { "S": "Mjg4MTk1NzE3MTY4MjYxMjA5MDExMDg0NTk5ODgzMjAyNTH" },
"topic": { "S": "testtopic" }
}
],
"Count": 1,
"ScannedCount": 1,
"ConsumedCapacity": null
}
mqtt_acked 表定义(存储确认的消息):
{
"TableName": "mqtt_acked",
"KeySchema": [
{ "AttributeName": "topic", "KeyType": "HASH" },
{ "AttributeName": "clientid", "KeyType": "RANGE" }
],
"AttributeDefinitions": [
{ "AttributeName": "topic", "AttributeType": "S" },
{ "AttributeName": "clientid", "AttributeType": "S" }
],
"ProvisionedThroughput": {
"ReadCapacityUnits": 5,
"WriteCapacityUnits": 5
}
}
某个客户端向主题 test 发布消息后,查询 mqtt_acked 表:
{
"Items": [
{
"topic": { "S": "test" },
"msgid": { "S": "Mjg4MTk1MDYwNTk0NjYwNzYzMTg4MDk3OTQ2MDU2Nzg1OTD" },
"clientid": { "S": "mqttjs_861e582a70" }
}
],
"Count": 1,
"ScannedCount": 1,
"ConsumedCapacity": null
启用 DynamoDB 消息存储: