Connect
nanomsg
Send messages over a Nanomsg socket.
-
Common
-
Advanced
outputs:
label: ""
nanomsg:
urls: [] # No default (required)
bind: false
socket_type: PUSH
poll_timeout: 5s
max_in_flight: 64
outputs:
label: ""
nanomsg:
urls: [] # No default (required)
bind: false
socket_type: PUSH
poll_timeout: 5s
max_in_flight: 64
Currently only PUSH and PUB sockets are supported.
Performance
This output benefits from sending multiple messages in flight in parallel for improved performance. You can tune the max number of in flight messages (or message batches) with the field max_in_flight.
Fields
bind
Whether the URLs listed should be bind (otherwise they are connected to).
Type: bool
Default: false
max_in_flight
The maximum number of messages to have in flight at a given time. Increase this to improve throughput.
Type: int
Default: 64
Was this helpful?