# Zmq Sink
The sink will publish the result into a Zero Mq topic.
# Compile & deploy plugin
# cd $eKuiper_src
# go build -trimpath --buildmode=plugin -o plugins/sinks/Zmq.so extensions/sinks/zmq/zmq.go
# cp plugins/sinks/Zmq.so $eKuiper_install/plugins/sinks
1
2
3
2
3
Restart the eKuiper server to activate the plugin.
# Properties
| Property name | Optional | Description | 
|---|---|---|
| server | false | The url of the Zero Mq server | 
| topic | true | The topic to publish to | 
Other common sink properties are supported. Please refer to the sink common properties for more information.
# Sample usage
Below is a sample for selecting temperature great than 50 degree, and publish the result into Zero Mq topic "temp".
{
  "sql": "SELECT * from demo where temperature>50",
  "actions": [
    {
      "zmq": {
        "server": "tcp://127.0.0.1:5563",
        "topic": "temp"
      }
    }
  ]
}
1
2
3
4
5
6
7
8
9
10
11
2
3
4
5
6
7
8
9
10
11
← Image Sink Kafka Sink →
