From 9d6faf028346e1c46867241d2d75307946530b00 Mon Sep 17 00:00:00 2001 From: Ming-Yen Chung Date: Mon, 3 Feb 2025 13:57:32 +0800 Subject: [PATCH] KAFKA-18674 Document the incompatible changes in parsing --bootstrap-server (#18751) Reviewers: Chia-Ping Tsai --- docs/upgrade.html | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/upgrade.html b/docs/upgrade.html index b45e25c400cda..1ff685c95cd80 100644 --- a/docs/upgrade.html +++ b/docs/upgrade.html @@ -85,6 +85,9 @@
Notable changes in 4
  • The default properties files for KRaft mode are no longer stored in the separate config/kraft directory since Zookeeper has been removed. These files have been consolidated with other configuration files. Now all configuration files are in config directory.
  • +
  • The valid format for --bootstrap-server only supports comma-separated value, such as host1:port1,host2:port2,.... + Providing other formats, like space-separated bootstrap servers (e.g., host1:port1 host2:port2 host3:port3), will result in an exception, even though this was allowed in Apache Kafka versions prior to 4.0. +
  • Broker