Pulsar 桥接

    EMQX 3.1 版本后推出强大的规则引擎用于替换插件,建议您前往使用Pulsar 桥接规则引擎中创建 Pulsar 桥接

    EMQX 桥接转发 MQTT 消息到 Pulsar 集群:

    配置 Pulsar 桥接规则

    1. ## ${topic}: the pulsar topics to which the messages will be published.
    2. ## ${filter}: the mqtt topic (may contain wildcard) on which the action will be performed .
    3. ## Client Connected Record Hook
    4. bridge.pulsar.hook.client.connected.1 = {"topic": "client_connected"}
    5. ## Client Disconnected Record Hook
    6. bridge.pulsar.hook.client.disconnected.1 = {"topic": "client_disconnected"}
    7. ## Session Subscribed Record Hook
    8. bridge.pulsar.hook.session.subscribed.1 = {"filter": "#", "topic": "session_subscribed"}
    9. ## Session Unsubscribed Record Hook
    10. bridge.pulsar.hook.session.unsubscribed.1 = {"filter": "#", "topic": "session_unsubscribed"}
    11. ## Message Publish Record Hook
    12. bridge.pulsar.hook.message.publish.1 = {"filter": "#", "topic": "message_publish"}
    13. ## Message Delivered Record Hook
    14. bridge.pulsar.hook.message.delivered.1 = {"filter": "#", "topic": "message_delivered"}
    15. bridge.pulsar.hook.message.acked.1 = {"filter": "#", "topic": "message_acked"}
    16. ## More Configures
    17. ## partitioner strategy:
    18. ## Option: random | roundrobin | first_key_dispatch
    19. ## Example: bridge.pulsar.hook.message.publish.1 = {"filter":"#", "topic":"message_publish", "strategy":"random"}
    20. ## Option: ${clientid} | ${username}
    21. ## Example: bridge.pulsar.hook.message.publish.1 = {"filter":"#", "topic":"message_publish", "key":"${clientid}"}
    22. ## format:
    23. ## Option: json | json
    24. ## Example: bridge.pulsar.hook.message.publish.1 = {"filter":"#", "topic":"message_publish", "format":"json"}

    Pulsar 桥接规则说明

    设备上线 EMQX 转发上线事件消息到 Pulsar:

    1. topic = "client_connected",
    2. value = {
    3. "client_id": ${clientid},
    4. "username": ${username},
    5. "node": ${node},
    6. "ts": ${ts}
    7. }

    设备下线 EMQX 转发下线事件消息到 Pulsar:

    1. topic = "client_disconnected",
    2. value = {
    3. "client_id": ${clientid},
    4. "username": ${username},
    5. "reason": ${reason},
    6. "node": ${node},
    7. "ts": ${ts}
    8. }

    客户端订阅主题事件转发 Pulsar

    客户端取消订阅主题事件转发 Pulsar

    1. topic = session_unsubscribed
    2. value = {
    3. "client_id": ${clientid},
    4. "qos": ${qos},
    5. "node": ${node},
    6. "ts": ${timestamp}
    1. topic = message_publish
    2. value = {
    3. "client_id": ${clientid},
    4. "username": ${username},
    5. "topic": ${topic},
    6. "payload": ${payload},
    7. "qos": ${qos},
    8. "node": ${node},
    9. "ts": ${timestamp}
    10. }

    MQTT 消息派发 (Deliver) 事件转发 Pulsar

    1. topic = message_delivered
    2. value = {
    3. "client_id": ${clientid},
    4. "username": ${username},
    5. "from": ${fromClientId},
    6. "topic": ${topic},
    7. "payload": ${payload},
    8. "qos": ${qos},
    9. "node": ${node},
    10. "ts": ${timestamp}
    11. }

    MQTT 消息确认 (Ack) 事件转发 Pulsar

    Pulsar 读取 MQTT 客户端上下线事件消息:

    1. pulsar-client consume client_connected -s "client_connected" -n 1000
    2. pulsar-client consume client_disconnected -s "client_disconnected" -n 1000
    1. pulsar-client consume session_subscribed -s "session_subscribed" -n 1000
    2. pulsar-client consume session_unsubscribed -s "session_unsubscribed" -n 1000

    Pulsar 读取 MQTT 发布消息:

      Pulsar 读取 MQTT 消息发布 (Deliver)、确认 (Ack)事件:

      提示

      启用 Pulsar 桥接插件

      1. ./bin/emqx_ctl plugins load emqx_bridge_pulsar