Skip to content

Commit

Permalink
Add server to options (#102)
Browse files Browse the repository at this point in the history
  • Loading branch information
bmaidics authored Sep 17, 2023
1 parent daf9a1e commit 314b4f4
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion src/reference/config/bindings/binding-mqtt-kafka.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ mqtt_kafka_proxy:
type: mqtt-kafka
kind: proxy
options:
server: mqtt-1.example.com:1883
topics:
sessions: mqtt-sessions
messages: mqtt-messages
Expand Down Expand Up @@ -51,16 +52,24 @@ Behave as a `mqtt-kafka` `proxy`.

> `object`

`mqtt-kafka`-specific options for configuring the `kafka` topics that the proxy will use to route mqtt messages and session states
`mqtt-kafka`-specific options for configuring the `kafka` topics that the proxy will use to route mqtt messages and session states; and define server reference of the MQTT server in Zilla

```yaml
options:
server: mqtt-1.example.com:1883
topics:
sessions: mqtt-sessions
messages: mqtt-messages
retained: mqtt-retained
```

#### options.server

> `object`

The server reference used by the MQTT server in Zilla. This config enables scaling of the MQTT server when running multiple Zilla instances as it uses server redirection.
(TODO: how much should we explain here? Or a different section? https://docs.oasis-open.org/mqtt/mqtt/v5.0/os/mqtt-v5.0-os.html#_Toc3901255)

#### options.topics.sessions

> `object`
Expand Down

0 comments on commit 314b4f4

Please sign in to comment.