From 12edd403681f8f48267577e292f332cfef290a14 Mon Sep 17 00:00:00 2001 From: badaverse Date: Thu, 9 Apr 2026 09:30:57 +0900 Subject: [PATCH] Add multiple broker addresses example to Kafka endpoint docs --- docs/commands/sethook.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/commands/sethook.md b/docs/commands/sethook.md index f17ef79..db5d558 100644 --- a/docs/commands/sethook.md +++ b/docs/commands/sethook.md @@ -105,6 +105,12 @@ SETHOOK warehouse kafka://10.0.20.78:9092/warehouse ... All webhook messages will be sent to the Kafka server at `10.0.20.78:9092` to a [topic](https://kafka.apache.org/documentation/#intro_topics) called warehouse. The port number is optional and will default to 9092. +Multiple broker addresses can be specified using commas, so the client can bootstrap through any available broker in the cluster: + +```tile38-cli +SETHOOK warehouse kafka://10.0.20.78:9092,10.0.20.79:9092,10.0.20.80:9092/warehouse ... +``` + #### Options - `auth` - `sasl`, `tls`, `none`