MINOR: Improve Kafka Streams Protocol Upgrade Doc (#20241)
CI / build (push) Has been cancelled Details

As a follow-up minor addition to PR for
[KSTREAMS-7735](https://confluentinc.atlassian.net/browse/KSTREAMS-7735
) (https://github.com/apache/kafka/pull/20029) , add the instructions
for upgrading `streams.version` parameter for KIP-1071 EA.

Reviewers: Andrew Schofield <aschofield@confluent.io>
This commit is contained in:
lucliu1108 2025-07-25 12:22:09 -05:00 committed by Andrew Schofield
parent d5a3acda89
commit 1d4b22bc3e
1 changed files with 5 additions and 0 deletions

View File

@ -213,6 +213,11 @@
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
<code>kafka-features.sh --bootstrap-server localhost:9092 describe</code>
and `streams.version` should now have FinalizedVersionLevel 1.
</p>
<p>