diff --git a/docs/streams/upgrade-guide.html b/docs/streams/upgrade-guide.html index f5c16c08cd265..b9b4a4e48cfd5 100644 --- a/docs/streams/upgrade-guide.html +++ b/docs/streams/upgrade-guide.html @@ -33,18 +33,12 @@
- If you want to upgrade from 1.1.x to 1.2.0 and you have customized window store implementations on the ReadOnlyWindowStore interface
- you'd need to update your code to incorporate the newly added public APIs; otherwise you don't need to make any code changes.
- See below for a complete list of 1.2.0 API and semantic changes that allow you to advance your application and/or simplify your code base.
-
If you want to upgrade from 1.0.x to 1.1.0 and you have customized window store implementations on the ReadOnlyWindowStore interface
you'd need to update your code to incorporate the newly added public APIs.
Otherwise, if you are using Java 7 you don't need to make any code changes as the public API is fully backward compatible;
but if you are using Java 8 method references in your Kafka Streams code you might need to update your code to resolve method ambiguities.
- Hot-swaping the jar-file only might not work for this case.
+ Hot-swapping the jar-file only might not work for this case.
See below for a complete list of 1.1.0 API and semantic changes that allow you to advance your application and/or simplify your code base.
- We have added support for methods in ReadOnlyWindowStore which allows for querying a single window's key-value pair.
- For users who have customized window store implementations on the above interface, they'd need to update their code to implement the newly added method as well.
- For more details, see KIP-261.
-
We have added support for methods in ReadOnlyWindowStore which allows for querying WindowStores without the necessity of providing keys.