This is an automated email from the ASF dual-hosted git repository. lucasbru pushed a commit to branch trunk in repository https://gitbox.apache.org/repos/asf/kafka.git
The following commit(s) were added to refs/heads/trunk by this push: new 4ff851a562c MINOR: Delete the redundant feature upgrade instruction for running KIP-1071 EA (#20250) 4ff851a562c is described below commit 4ff851a562ce49e241c22bb52ecd5e3dfd2e4048 Author: lucliu1108 <luc...@confluent.io> AuthorDate: Tue Jul 29 07:28:30 2025 -0500 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 <lucas...@apache.org> --- 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 <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>. - Upgrade the `streams.version` feature to 1. To do this, run - <code>kafka-features.sh --bootstrap-server localhost:9092 upgrade --feature streams.version=1</code> - to upgrade, or use Admin#updateFeatures API to update `streams.version`. After the feature is updated, check + After the new feature is configured, check <code>kafka-features.sh --bootstrap-server localhost:9092 describe</code> and `streams.version` should now have FinalizedVersionLevel 1. </p>