From 9c83c6d1f30445267fadb51e861db8c00224518f Mon Sep 17 00:00:00 2001 From: lucliu1108 Date: Tue, 29 Jul 2025 07:28:30 -0500 Subject: [PATCH] MINOR: Delete the redundant feature upgrade instruction for running KIP-1071 EA (#20250) Follow up on https://github.com/apache/kafka/pull/20241. Delete the instruction that manually set `streams.version=1` for running Kafka 4.1 since it is already achieved in previous setup steps. Reviewers: Lucas Brutschy --- docs/streams/upgrade-guide.html | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/docs/streams/upgrade-guide.html b/docs/streams/upgrade-guide.html index 58938c9b347..2230ffb8aaa 100644 --- a/docs/streams/upgrade-guide.html +++ b/docs/streams/upgrade-guide.html @@ -213,9 +213,7 @@ Set unstable.feature.versions.enable=true for controllers and brokers, and set unstable.api.versions.enable=true on the brokers as well. In your Kafka Streams application configuration, set group.protocol=streams. - Upgrade the `streams.version` feature to 1. To do this, run - kafka-features.sh --bootstrap-server localhost:9092 upgrade --feature streams.version=1 - to upgrade, or use Admin#updateFeatures API to update `streams.version`. After the feature is updated, check + After the new feature is configured, check kafka-features.sh --bootstrap-server localhost:9092 describe and `streams.version` should now have FinalizedVersionLevel 1.