zmq_socket.txt 13.5 KB
Newer Older
1 2 3 4 5 6
zmq_socket(3)
=============


NAME
----
Martin Lucina's avatar
Martin Lucina committed
7
zmq_socket - create 0MQ socket
8 9 10 11


SYNOPSIS
--------
Martin Lucina's avatar
Martin Lucina committed
12
*void *zmq_socket (void '*context', int 'type');*
13 14 15 16


DESCRIPTION
-----------
Martin Lucina's avatar
Martin Lucina committed
17 18
The 'zmq_socket()' function shall create a 0MQ socket within the specified
'context' and return an opaque handle to the newly created socket. The 'type'
Martin Lucina's avatar
Martin Lucina committed
19
argument specifies the socket type, which determines the semantics of
Martin Lucina's avatar
Martin Lucina committed
20 21
communication over the socket.

22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
The newly created socket is initially unbound, and not associated with any
endpoints. In order to establish a message flow a socket must first be
connected to at least one endpoint with linkzmq:zmq_connect[3], or at least one
endpoint must be created for accepting incoming connections with
linkzmq:zmq_bind[3].

.Key differences to conventional sockets
Generally speaking, conventional sockets present a _synchronous_ interface to
either connection-oriented reliable byte streams (SOCK_STREAM), or
connection-less unreliable datagrams (SOCK_DGRAM). In comparison, 0MQ sockets
present an abstraction of an asynchronous _message queue_, with the exact
queueing semantics depending on the socket type in use. Where conventional
sockets transfer streams of bytes or discrete datagrams, 0MQ sockets transfer
discrete _messages_.

0MQ sockets being _asynchronous_ means that the timings of the physical
38
connection setup and tear down, reconnect and effective delivery are transparent
39 40 41 42 43 44 45 46 47 48
to the user and organized by 0MQ itself. Further, messages may be _queued_ in
the event that a peer is unavailable to receive them.

Conventional sockets allow only strict one-to-one (two peers), many-to-one
(many clients, one server), or in some cases one-to-many (multicast)
relationships. With the exception of 'ZMQ_PAIR', 0MQ sockets may be connected
*to multiple endpoints* using _zmq_connect()_, while simultaneously accepting
incoming connections *from multiple endpoints* bound to the socket using
_zmq_bind()_, thus allowing many-to-many relationships.

49
.Thread safety
50 51 52
0MQ 'sockets' are _not_ thread safe. Applications MUST NOT use a socket
from multiple threads except after migrating a socket from one thread to 
another with a "full fence" memory barrier.
53

54
.Socket types
55 56
The following sections present the socket types defined by 0MQ, grouped by the
general _messaging pattern_ which is built from related socket types.
57 58 59 60


Request-reply pattern
~~~~~~~~~~~~~~~~~~~~~
Pieter Hintjens's avatar
Pieter Hintjens committed
61 62
The request-reply pattern is used for sending requests from a ZMQ_REQ _client_
to one or more ZMQ_REP _services_, and receiving subsequent replies to each
63
request sent.
64 65


66 67
ZMQ_REQ
^^^^^^^
68 69 70
A socket of type 'ZMQ_REQ' is used by a _client_ to send requests to and
receive replies from a _service_. This socket type allows only an alternating
sequence of _zmq_send(request)_ and subsequent _zmq_recv(reply)_ calls. Each
71
request sent is round-robined among all _services_, and each reply received is
72
matched with the last issued request.
73

Pieter Hintjens's avatar
Pieter Hintjens committed
74
When a 'ZMQ_REQ' socket enters the 'mute' state due to having reached the
75 76
high water mark for all _services_, or if there are no _services_ at all, then
any linkzmq:zmq_send[3] operations on the socket shall block until the
Pieter Hintjens's avatar
Pieter Hintjens committed
77
'mute' state ends or at least one _service_ becomes available for sending;
78 79 80 81
messages are not discarded.

[horizontal]
.Summary of ZMQ_REQ characteristics
82
Compatible peer sockets:: 'ZMQ_REP', 'ZMQ_ROUTER'
83
Direction:: Bidirectional
84
Send/receive pattern:: Send, Receive, Send, Receive, ...
85
Outgoing routing strategy:: Round-robin
86
Incoming routing strategy:: Last peer
Pieter Hintjens's avatar
Pieter Hintjens committed
87
Action in mute state:: Block
88

89 90 91

ZMQ_REP
^^^^^^^
92
A socket of type 'ZMQ_REP' is used by a _service_ to receive requests from and
93
send replies to a _client_. This socket type allows only an alternating
94
sequence of _zmq_recv(request)_ and subsequent _zmq_send(reply)_ calls. Each
95
request received is fair-queued from among all _clients_, and each reply sent
96 97
is routed to the _client_ that issued the last request. If the original
requester doesn't exist any more the reply is silently discarded.
98

Pieter Hintjens's avatar
Pieter Hintjens committed
99
When a 'ZMQ_REP' socket enters the 'mute' state due to having reached the
100
high water mark for a _client_, then any replies sent to the _client_ in
Pieter Hintjens's avatar
Pieter Hintjens committed
101
question shall be dropped until the mute state ends.
102 103 104

[horizontal]
.Summary of ZMQ_REP characteristics
105
Compatible peer sockets:: 'ZMQ_REQ', 'ZMQ_DEALER'
106
Direction:: Bidirectional
107 108
Send/receive pattern:: Receive, Send, Receive, Send, ...
Incoming routing strategy:: Fair-queued
109
Outgoing routing strategy:: Last peer
Pieter Hintjens's avatar
Pieter Hintjens committed
110
Action in mute state:: Drop
111

Martin Lucina's avatar
Martin Lucina committed
112

113 114 115 116
ZMQ_DEALER
^^^^^^^^^^
A socket of type 'ZMQ_DEALER' is an advanced pattern used for extending
request/reply sockets. Each message sent is round-robined among all connected
117 118
peers, and each message received is fair-queued from all connected peers.

Pieter Hintjens's avatar
Pieter Hintjens committed
119
When a 'ZMQ_DEALER' socket enters the 'mute' state due to having reached the
120
high water mark for all peers, or if there are no peers at all, then any
Pieter Hintjens's avatar
Pieter Hintjens committed
121
linkzmq:zmq_send[3] operations on the socket shall block until the mute
122 123 124
state ends or at least one peer becomes available for sending; messages are not
discarded.

125 126 127 128 129 130
When a 'ZMQ_DEALER' socket is connected to a 'ZMQ_REP' socket each message sent
must consist of an empty message part, the _delimiter_, followed by one or more
_body parts_.

Deprecated alias: 'ZMQ_XREQ'.

131
[horizontal]
132
.Summary of ZMQ_DEALER characteristics
133
Compatible peer sockets:: 'ZMQ_ROUTER', 'ZMQ_REP', 'ZMQ_DEALER'
134
Direction:: Bidirectional
135
Send/receive pattern:: Unrestricted
136
Outgoing routing strategy:: Round-robin
137
Incoming routing strategy:: Fair-queued
Pieter Hintjens's avatar
Pieter Hintjens committed
138
Action in mute state:: Block
139 140


141 142 143 144 145 146 147 148 149
ZMQ_ROUTER
^^^^^^^^^^
A socket of type 'ZMQ_ROUTER' is an advanced socket type used for extending
request/reply sockets. When receiving messages a 'ZMQ_ROUTER' socket shall
prepend a message part containing the _identity_ of the originating peer to the
message before passing it to the application. Messages received are fair-queued
from among all connected peers. When sending messages a 'ZMQ_ROUTER' socket shall
remove the first part of the message and use it to determine the _identity_ of
the peer the message shall be routed to. If the peer does not exist anymore
150 151
the message shall be silently discarded by default, unless 'ZMQ_ROUTER_BEHAVIOR'
socket option is set to '1'.
152

Pieter Hintjens's avatar
Pieter Hintjens committed
153
When a 'ZMQ_ROUTER' socket enters the 'mute' state due to having reached the
154
high water mark for all peers, then any messages sent to the socket shall be dropped
Pieter Hintjens's avatar
Pieter Hintjens committed
155
until the mute state ends. Likewise, any messages routed to a peer for which
156
the individual high water mark has been reached shall also be dropped.
157 158 159 160 161 162 163 164 165

When a 'ZMQ_REQ' socket is connected to a 'ZMQ_ROUTER' socket, in addition to the
_identity_ of the originating peer each message received shall contain an empty
_delimiter_ message part. Hence, the entire structure of each received message
as seen by the application becomes: one or more _identity_ parts, _delimiter_
part, one or more _body parts_. When sending replies to a 'ZMQ_REQ' socket the
application must include the _delimiter_ part.

Deprecated alias: 'ZMQ_XREP'.
166

167
[horizontal]
168
.Summary of ZMQ_ROUTER characteristics
169
Compatible peer sockets:: 'ZMQ_DEALER', 'ZMQ_REQ', 'ZMQ_ROUTER'
170
Direction:: Bidirectional
171 172 173
Send/receive pattern:: Unrestricted
Outgoing routing strategy:: See text
Incoming routing strategy:: Fair-queued
Pieter Hintjens's avatar
Pieter Hintjens committed
174
Action in mute state:: Drop
175 176


Martin Lucina's avatar
Martin Lucina committed
177 178 179
Publish-subscribe pattern
~~~~~~~~~~~~~~~~~~~~~~~~~
The publish-subscribe pattern is used for one-to-many distribution of data from
180
a single _publisher_ to multiple _subscribers_ in a fan out fashion.
Martin Lucina's avatar
Martin Lucina committed
181 182


183 184
ZMQ_PUB
^^^^^^^
Martin Lucina's avatar
Martin Lucina committed
185
A socket of type 'ZMQ_PUB' is used by a _publisher_ to distribute data.
186
Messages sent are distributed in a fan out fashion to all connected peers.
187
The linkzmq:zmq_recv[3] function is not implemented for this socket type.
Martin Lucina's avatar
Martin Lucina committed
188

Pieter Hintjens's avatar
Pieter Hintjens committed
189
When a 'ZMQ_PUB' socket enters the 'mute' state due to having reached the
190
high water mark for a _subscriber_, then any messages that would be sent to the
Pieter Hintjens's avatar
Pieter Hintjens committed
191
_subscriber_ in question shall instead be dropped until the mute state
192
ends. The _zmq_send()_ function shall never block for this socket type.
Martin Lucina's avatar
Martin Lucina committed
193

194 195
[horizontal]
.Summary of ZMQ_PUB characteristics
196
Compatible peer sockets:: 'ZMQ_SUB', 'ZMQ_XSUB'
197
Direction:: Unidirectional
198 199
Send/receive pattern:: Send only
Incoming routing strategy:: N/A
200
Outgoing routing strategy:: Fan out
Pieter Hintjens's avatar
Pieter Hintjens committed
201
Action in mute state:: Drop
202 203 204 205


ZMQ_SUB
^^^^^^^
Martin Lucina's avatar
Martin Lucina committed
206 207
A socket of type 'ZMQ_SUB' is used by a _subscriber_ to subscribe to data
distributed by a _publisher_. Initially a 'ZMQ_SUB' socket is not subscribed to
208 209 210 211 212 213
any messages, use the 'ZMQ_SUBSCRIBE' option of linkzmq:zmq_setsockopt[3] to
specify which messages to subscribe to. The _zmq_send()_ function is not
implemented for this socket type.

[horizontal]
.Summary of ZMQ_SUB characteristics
214
Compatible peer sockets:: 'ZMQ_PUB', 'ZMQ_XPUB'
215
Direction:: Unidirectional
216 217 218
Send/receive pattern:: Receive only
Incoming routing strategy:: Fair-queued
Outgoing routing strategy:: N/A
Pieter Hintjens's avatar
Pieter Hintjens committed
219
Action in mute state:: Drop
Martin Lucina's avatar
Martin Lucina committed
220 221


222 223 224 225 226
ZMQ_XPUB
^^^^^^^^
Same as ZMQ_PUB except that you can receive subscriptions from the peers
in form of incoming messages. Subscription message is a byte 1 (for
subscriptions) or byte 0 (for unsubscriptions) followed by the subscription
227 228
body. Messages without a sub/unsub prefix are also received, but have no
effect on subscription status.
229 230 231 232

[horizontal]
.Summary of ZMQ_XPUB characteristics
Compatible peer sockets:: 'ZMQ_SUB', 'ZMQ_XSUB'
233
Direction:: Unidirectional
234 235 236
Send/receive pattern:: Send messages, receive subscriptions
Incoming routing strategy:: N/A
Outgoing routing strategy:: Fan out
Pieter Hintjens's avatar
Pieter Hintjens committed
237
Action in mute state:: Drop
238 239


240 241
ZMQ_XSUB
^^^^^^^^
242 243
Same as ZMQ_SUB except that you subscribe by sending subscription messages to
the socket. Subscription message is a byte 1 (for subscriptions) or byte 0
244 245
(for unsubscriptions) followed by the subscription body. Messages without a
sub/unsub prefix may also be sent, but have no effect on subscription status.
246 247 248 249

[horizontal]
.Summary of ZMQ_XSUB characteristics
Compatible peer sockets:: 'ZMQ_PUB', 'ZMQ_XPUB'
250
Direction:: Unidirectional
251 252 253
Send/receive pattern:: Receive messages, send subscriptions
Incoming routing strategy:: Fair-queued
Outgoing routing strategy:: N/A
Pieter Hintjens's avatar
Pieter Hintjens committed
254
Action in mute state:: Drop
255 256


257 258 259
Pipeline pattern
~~~~~~~~~~~~~~~~
The pipeline pattern is used for distributing data to _nodes_ arranged in
Martin Lucina's avatar
Martin Lucina committed
260 261
a pipeline. Data always flows down the pipeline, and each stage of the pipeline
is connected to at least one _node_. When a pipeline stage is connected to
262
multiple _nodes_ data is round-robined among all connected _nodes_.
Martin Lucina's avatar
Martin Lucina committed
263 264


265 266 267
ZMQ_PUSH
^^^^^^^^
A socket of type 'ZMQ_PUSH' is used by a pipeline _node_ to send messages
268
to downstream pipeline _nodes_. Messages are round-robined to all connected
269 270
downstream _nodes_. The _zmq_recv()_ function is not implemented for this
socket type.
Martin Lucina's avatar
Martin Lucina committed
271

Pieter Hintjens's avatar
Pieter Hintjens committed
272
When a 'ZMQ_PUSH' socket enters the 'mute' state due to having reached the
273 274
high water mark for all downstream _nodes_, or if there are no downstream
_nodes_ at all, then any linkzmq:zmq_send[3] operations on the socket shall
Pieter Hintjens's avatar
Pieter Hintjens committed
275
block until the mute state ends or at least one downstream _node_
276 277
becomes available for sending; messages are not discarded.

278
[horizontal]
279 280
.Summary of ZMQ_PUSH characteristics
Compatible peer sockets:: 'ZMQ_PULL'
281 282 283
Direction:: Unidirectional
Send/receive pattern:: Send only
Incoming routing strategy:: N/A
284
Outgoing routing strategy:: Round-robin
Pieter Hintjens's avatar
Pieter Hintjens committed
285
Action in mute state:: Block
286

Martin Lucina's avatar
Martin Lucina committed
287

288 289 290 291 292 293 294
ZMQ_PULL
^^^^^^^^
A socket of type 'ZMQ_PULL' is used by a pipeline _node_ to receive messages
from upstream pipeline _nodes_. Messages are fair-queued from among all
connected upstream _nodes_. The _zmq_send()_ function is not implemented for
this socket type.

295
[horizontal]
296 297
.Summary of ZMQ_PULL characteristics
Compatible peer sockets:: 'ZMQ_PUSH'
298 299 300 301
Direction:: Unidirectional
Send/receive pattern:: Receive only
Incoming routing strategy:: Fair-queued
Outgoing routing strategy:: N/A
Pieter Hintjens's avatar
Pieter Hintjens committed
302
Action in mute state:: Block
303

Martin Lucina's avatar
Martin Lucina committed
304

305 306
Exclusive pair pattern
~~~~~~~~~~~~~~~~~~~~~~
307 308 309
The exclusive pair pattern is used to connect a peer to precisely one other
peer. This pattern is used for inter-thread communication across the inproc
transport.
Martin Lucina's avatar
Martin Lucina committed
310 311


312 313
ZMQ_PAIR
^^^^^^^^
314 315 316
A socket of type 'ZMQ_PAIR' can only be connected to a single peer at any one
time.  No message routing or filtering is performed on messages sent over a
'ZMQ_PAIR' socket.
Martin Lucina's avatar
Martin Lucina committed
317

Pieter Hintjens's avatar
Pieter Hintjens committed
318
When a 'ZMQ_PAIR' socket enters the 'mute' state due to having reached the
319 320 321 322
high water mark for the connected peer, or if no peer is connected, then
any linkzmq:zmq_send[3] operations on the socket shall block until the peer
becomes available for sending; messages are not discarded.

323 324 325 326
NOTE: 'ZMQ_PAIR' sockets are designed for inter-thread communication across
the linkzmq:zmq_inproc[7] transport and do not implement functionality such
as auto-reconnection. 'ZMQ_PAIR' sockets are considered experimental and may
have other missing or broken aspects.
327

328 329 330 331 332 333 334
[horizontal]
.Summary of ZMQ_PAIR characteristics
Compatible peer sockets:: 'ZMQ_PAIR'
Direction:: Bidirectional
Send/receive pattern:: Unrestricted
Incoming routing strategy:: N/A
Outgoing routing strategy:: N/A
Pieter Hintjens's avatar
Pieter Hintjens committed
335
Action in mute state:: Block
336

337 338 339

RETURN VALUE
------------
Martin Lucina's avatar
Martin Lucina committed
340 341 342
The _zmq_socket()_ function shall return an opaque handle to the newly created
socket if successful. Otherwise, it shall return NULL and set 'errno' to one of
the values defined below.
343 344 345 346 347


ERRORS
------
*EINVAL*::
Martin Lucina's avatar
Martin Lucina committed
348
The requested socket 'type' is invalid.
349
*EFAULT*::
350
The provided 'context' is invalid.
351 352
*EMFILE*::
The limit on the total number of open 0MQ sockets has been reached.
353 354
*ETERM*::
The context specified was terminated.
355 356 357 358 359 360 361 362 363

SEE ALSO
--------
linkzmq:zmq_init[3]
linkzmq:zmq_setsockopt[3]
linkzmq:zmq_bind[3]
linkzmq:zmq_connect[3]
linkzmq:zmq_send[3]
linkzmq:zmq_recv[3]
364
linkzmq:zmq_inproc[7]
365
linkzmq:zmq[7]
366

367 368 369

AUTHORS
-------
370 371
This 0MQ manual page was written by Martin Sustrik <sustrik@250bpm.com>,
Martin Lucina <mato@kotelna.sk>, and Pieter Hintjens <ph@imatix.com>.