This is an automated email from the ASF dual-hosted git repository. lucasbru pushed a commit to branch kip1071_docs in repository https://gitbox.apache.org/repos/asf/kafka.git
commit 417412a546721264f13306dad6420a471bc4823f Author: Lucas Brutschy <lbruts...@confluent.io> AuthorDate: Thu Jun 26 13:14:37 2025 +0200 fixup --- docs/streams/developer-guide/config-streams.html | 2 +- docs/streams/upgrade-guide.html | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/streams/developer-guide/config-streams.html b/docs/streams/developer-guide/config-streams.html index 4ccbd671a48..6a555ae3ccf 100644 --- a/docs/streams/developer-guide/config-streams.html +++ b/docs/streams/developer-guide/config-streams.html @@ -784,7 +784,7 @@ streamsConfiguration.put(StreamsConfig.DEFAULT_TIMESTAMP_EXTRACTOR_CLASS_CONFIG, The group protocol used by the Kafka Streams client used for coordination. It determines how the client will communicate with the Kafka brokers and other clients in the same group. The default value is <code class="docutils literal"><span class="pre">"classic"</span></code>, which is the classic consumer group protocol. - Can be set to <code class="docutils literal"><span class="pre">"streams"</span></code> (requires broker side enablement) to enable the new Kafka Streams group protocol. + Can be set to <code class="docutils literal"><span class="pre">"streams"</span></code> (requires broker-side enablement) to enable the new Kafka Streams group protocol. Note that the "streams" rebalance protocol is an Early Access feature and should not be used in production. </p> </div> diff --git a/docs/streams/upgrade-guide.html b/docs/streams/upgrade-guide.html index e93301dcd5d..8237030ad49 100644 --- a/docs/streams/upgrade-guide.html +++ b/docs/streams/upgrade-guide.html @@ -208,7 +208,8 @@ </ul> <p> - Enabling the protocol requires the brokers and clients are running Apache Kafka 4.1. + Enabling the protocol requires the brokers and clients are running Apache Kafka 4.1. It should be enabled + only on new clusters for testing purposes. Set <code>unstable.feature.versions.enable=true</code> for controllers and brokers, and set <code>unstable.api.versions.enable=true</code> on the brokers as well. In your Kafka Streams application configuration, set <code>group.protocol=streams</code>.