This is an automated email from the ASF dual-hosted git repository.
lucasbru pushed a commit to branch 4.1
in repository https://gitbox.apache.org/repos/asf/kafka.git
The following commit(s) were added to refs/heads/4.1 by this push:
new 9c83c6d1f30 MINOR: Delete the redundant feature upgrade instruction
for running KIP-1071 EA (#20250)
9c83c6d1f30 is described below
commit 9c83c6d1f30445267fadb51e861db8c00224518f
Author: lucliu1108 <[email protected]>
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 <[email protected]>
---
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>