From 6ddd3452c48a90f39d055733a46c85c508dc861f Mon Sep 17 00:00:00 2001
From: Rajini Sivaram
- If you want to upgrade from 1.1.x to 1.2.0 and you have customized window store implementations on the
If you want to upgrade from 1.0.x to 1.1.0 and you have customized window store implementations on the Upgrade Guide and API Changes
- 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.
- 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.
Upgrade Guide and API Changes
See below 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.
- 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.