KCL 2.2.2 release (#598)
* KCL 2.2.2 release * Addressing release notes feedback
This commit is contained in:
parent
a17d14527a
commit
b8331f76e3
6 changed files with 37 additions and 11 deletions
17
CHANGELOG.md
17
CHANGELOG.md
|
|
@ -1,4 +1,21 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
### Release 2.2.2 (August 19, 2019)
|
||||||
|
|
||||||
|
[Milestone#36](https://github.com/awslabs/amazon-kinesis-client/milestone/36)
|
||||||
|
* Fix to prevent invalid ShardConsumer state transitions due to rejected executor service executions.
|
||||||
|
* [PR#560](https://github.com/awslabs/amazon-kinesis-client/pull/560)
|
||||||
|
* Fixing a bug in which initial subscription failure caused a shard consumer to get stuck.
|
||||||
|
* [PR#562](https://github.com/awslabs/amazon-kinesis-client/pull/562)
|
||||||
|
* Making CW publish failures visible by executing the async publish calls in a blocking manner and logging on exception.
|
||||||
|
* [PR#584](https://github.com/awslabs/amazon-kinesis-client/pull/584)
|
||||||
|
* Update shard end checkpoint failure messaging.
|
||||||
|
* [PR#591](https://github.com/awslabs/amazon-kinesis-client/pull/591)
|
||||||
|
* A fix for resiliency and durability issues that occur in the reduced thread mode - Nonblocking approach.
|
||||||
|
* [PR#573](https://github.com/awslabs/amazon-kinesis-client/pull/573)
|
||||||
|
* Preventing duplicate delivery due to unacknowledged event, while completing the subscription.
|
||||||
|
* [PR#596](https://github.com/awslabs/amazon-kinesis-client/pull/596)
|
||||||
|
|
||||||
### Release 2.2.1 (July 1, 2019)
|
### Release 2.2.1 (July 1, 2019)
|
||||||
[Milestone#32](https://github.com/awslabs/amazon-kinesis-client/milestone/32)
|
[Milestone#32](https://github.com/awslabs/amazon-kinesis-client/milestone/32)
|
||||||
* Add periodic logging for the state of the thread pool executor service. This service executes the async tasks submitted to and by the ShardConsumer.
|
* Add periodic logging for the state of the thread pool executor service. This service executes the async tasks submitted to and by the ShardConsumer.
|
||||||
|
|
|
||||||
23
README.md
23
README.md
|
|
@ -44,7 +44,7 @@ The recommended way to use the KCL for Java is to consume it from Maven.
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>software.amazon.kinesis</groupId>
|
<groupId>software.amazon.kinesis</groupId>
|
||||||
<artifactId>amazon-kinesis-client</artifactId>
|
<artifactId>amazon-kinesis-client</artifactId>
|
||||||
<version>2.2.1</version>
|
<version>2.2.2</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
@ -54,17 +54,26 @@ The recommended way to use the KCL for Java is to consume it from Maven.
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.amazonaws</groupId>
|
<groupId>com.amazonaws</groupId>
|
||||||
<artifactId>amazon-kinesis-client</artifactId>
|
<artifactId>amazon-kinesis-client</artifactId>
|
||||||
<version>1.10.0</version>
|
<version>1.11.2</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
```
|
```
|
||||||
|
|
||||||
## Release Notes
|
## Release Notes
|
||||||
|
|
||||||
### Latest Release (2.2.1 - July 1, 2019)
|
### Latest Release (2.2.2 - August 19, 2019)
|
||||||
[Milestone#32](https://github.com/awslabs/amazon-kinesis-client/milestone/32)
|
[Milestone#36](https://github.com/awslabs/amazon-kinesis-client/milestone/36)
|
||||||
* Add periodic logging for the state of the thread pool executor service. This service executes the async tasks submitted to and by the ShardConsumer.
|
* Fix to prevent invalid ShardConsumer state transitions due to rejected executor service executions.
|
||||||
* Add logging of failures from RxJava layer.
|
* [PR#560](https://github.com/awslabs/amazon-kinesis-client/pull/560)
|
||||||
* [PR#559](https://github.com/awslabs/amazon-kinesis-client/pull/559)
|
* Fixing a bug in which initial subscription failure caused a shard consumer to get stuck.
|
||||||
|
* [PR#562](https://github.com/awslabs/amazon-kinesis-client/pull/562)
|
||||||
|
* Making CW publish failures visible by executing the async publish calls in a blocking manner and logging on exception.
|
||||||
|
* [PR#584](https://github.com/awslabs/amazon-kinesis-client/pull/584)
|
||||||
|
* Update shard end checkpoint failure messaging.
|
||||||
|
* [PR#591](https://github.com/awslabs/amazon-kinesis-client/pull/591)
|
||||||
|
* A fix for resiliency and durability issues that occur in the reduced thread mode - Nonblocking approach.
|
||||||
|
* [PR#573](https://github.com/awslabs/amazon-kinesis-client/pull/573)
|
||||||
|
* Preventing duplicate delivery due to unacknowledged event, while completing the subscription.
|
||||||
|
* [PR#596](https://github.com/awslabs/amazon-kinesis-client/pull/596)
|
||||||
|
|
||||||
|
|
||||||
### For remaining release notes check **[CHANGELOG.md][changelog-md]**.
|
### For remaining release notes check **[CHANGELOG.md][changelog-md]**.
|
||||||
|
|
|
||||||
|
|
@ -21,7 +21,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>amazon-kinesis-client-pom</artifactId>
|
<artifactId>amazon-kinesis-client-pom</artifactId>
|
||||||
<groupId>software.amazon.kinesis</groupId>
|
<groupId>software.amazon.kinesis</groupId>
|
||||||
<version>2.2.2-SNAPSHOT</version>
|
<version>2.2.2</version>
|
||||||
</parent>
|
</parent>
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -22,7 +22,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>software.amazon.kinesis</groupId>
|
<groupId>software.amazon.kinesis</groupId>
|
||||||
<artifactId>amazon-kinesis-client-pom</artifactId>
|
<artifactId>amazon-kinesis-client-pom</artifactId>
|
||||||
<version>2.2.2-SNAPSHOT</version>
|
<version>2.2.2</version>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>amazon-kinesis-client</artifactId>
|
<artifactId>amazon-kinesis-client</artifactId>
|
||||||
|
|
|
||||||
|
|
@ -34,7 +34,7 @@ public class RetrievalConfig {
|
||||||
*/
|
*/
|
||||||
public static final String KINESIS_CLIENT_LIB_USER_AGENT = "amazon-kinesis-client-library-java";
|
public static final String KINESIS_CLIENT_LIB_USER_AGENT = "amazon-kinesis-client-library-java";
|
||||||
|
|
||||||
public static final String KINESIS_CLIENT_LIB_USER_AGENT_VERSION = "2.2.2-SNAPSHOT";
|
public static final String KINESIS_CLIENT_LIB_USER_AGENT_VERSION = "2.2.2";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Client used to make calls to Kinesis for records retrieval
|
* Client used to make calls to Kinesis for records retrieval
|
||||||
|
|
|
||||||
2
pom.xml
2
pom.xml
|
|
@ -22,7 +22,7 @@
|
||||||
<artifactId>amazon-kinesis-client-pom</artifactId>
|
<artifactId>amazon-kinesis-client-pom</artifactId>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
<name>Amazon Kinesis Client Library</name>
|
<name>Amazon Kinesis Client Library</name>
|
||||||
<version>2.2.2-SNAPSHOT</version>
|
<version>2.2.2</version>
|
||||||
<description>The Amazon Kinesis Client Library for Java enables Java developers to easily consume and process data
|
<description>The Amazon Kinesis Client Library for Java enables Java developers to easily consume and process data
|
||||||
from Amazon Kinesis.
|
from Amazon Kinesis.
|
||||||
</description>
|
</description>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue