mirror of https://github.com/apache/kafka.git
MINOR: Added changes in 0.10.2.1
Author: Eno Thereska <eno@confluent.io>
Reviewers: Gwen Shapira
Closes #2824 from enothereska/minor-docs-0.10.2.1
(cherry picked from commit 5a68fa7e4e
)
Signed-off-by: Gwen Shapira <cshapi@gmail.com>
This commit is contained in:
parent
1d25369d22
commit
a74f035844
|
@ -813,6 +813,13 @@ $ java -cp path-to-app-fatjar.jar com.example.MyStreamsApp
|
|||
See <a href="#streams_api_changes_0101">below</a> a complete list of 0.10.1 API changes that allow you to advance your application and/or simplify your code base, including the usage of new features.
|
||||
</p>
|
||||
|
||||
<h3><a id="streams_api_changes_01021" href="#streams_api_changes_0102">Notable changes in 0.10.2.1</a></h3>
|
||||
<p>
|
||||
Parameter updates in <code>StreamsConfig</code>:
|
||||
</p>
|
||||
<ul>
|
||||
<li> of particular importance to improve the resiliency of a Kafka Streams application are two changes to default parameters of producer <code>retries</code> and consumer <code>max.poll.interval.ms</code> </li>
|
||||
</ul>
|
||||
<h3><a id="streams_api_changes_0102" href="#streams_api_changes_0102">Streams API changes in 0.10.2.0</a></h3>
|
||||
|
||||
<p>
|
||||
|
|
|
@ -113,6 +113,14 @@ Kafka cluster before upgrading your clients. Version 0.10.2 brokers support 0.8.
|
|||
<li> See <a href="/{{version}}/documentation/streams#streams_api_changes_0102">Streams API changes in 0.10.2</a> for more details. </li>
|
||||
</ul>
|
||||
|
||||
<h5><a id="upgrade_10201_notable" href="#upgrade_10201_notable">Notable changes in 0.10.2.1</a></h5>
|
||||
<ul>
|
||||
<li> The default values for two configurations of the StreamsConfig class were changed to improve the resiliency of Kafka Streams applications. The internal Kafka Streams producer <code>retries</code> default value was changed from 0 to 10. The internal Kafka Streams consumer <code>max.poll.interval.ms</code> default value was changed from 300000 to <code>Integer.MAX_VALUE<code>.
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
|
||||
|
||||
<h5><a id="upgrade_1020_notable" href="#upgrade_1020_notable">Notable changes in 0.10.2.0</a></h5>
|
||||
<ul>
|
||||
<li>The Java clients (producer and consumer) have acquired the ability to communicate with older brokers. Version 0.10.2 clients
|
||||
|
@ -397,4 +405,4 @@ Release 0.7 is incompatible with newer releases. Major changes were made to the
|
|||
|
||||
</script>
|
||||
|
||||
<div class="p-upgrade"></div>
|
||||
<div class="p-upgrade"></div>
|
||||
|
|
Loading…
Reference in New Issue