Skip to content

Commit ac019f1

Browse files
committed
Release 1.7.3 of the Amazon Kinesis Client
* Upgrade to the newest AWS Java SDK. * Issue awslabs/amazon-kinesis-client-python#27 * PR awslabs#126 * PR awslabs#125 * Added a direct dependency on commons-logging. * Issue awslabs#123 * PR awslabs#124 * Make ShardInfo public to allow for custom ShardPrioritization strategies. * Issue awslabs#120 * PR awslabs#127
1 parent 7acd0fb commit ac019f1

File tree

4 files changed

+17
-5
lines changed

4 files changed

+17
-5
lines changed

META-INF/MANIFEST.MF

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
22
Bundle-ManifestVersion: 2
33
Bundle-Name: Amazon Kinesis Client Library for Java
44
Bundle-SymbolicName: com.amazonaws.kinesisclientlibrary;singleton:=true
5-
Bundle-Version: 1.7.2
5+
Bundle-Version: 1.7.3
66
Bundle-Vendor: Amazon Technologies, Inc
77
Bundle-RequiredExecutionEnvironment: JavaSE-1.7
88
Require-Bundle: org.apache.commons.codec;bundle-version="1.6",

README.md

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,23 @@ For producer-side developers using the **[Kinesis Producer Library (KPL)][kinesi
2929
To make it easier for developers to write record processors in other languages, we have implemented a Java based daemon, called MultniLangDaemon that does all the heavy lifting. Our approach has the daemon spawn a sub-process, which in turn runs the record processor, which can be written in any language. The MultiLangDaemon process and the record processor sub-process communicate with each other over [STDIN and STDOUT using a defined protocol][multi-lang-protocol]. There will be a one to one correspondence amongst record processors, child processes, and shards. For Python developers specifically, we have abstracted these implementation details away and [expose an interface][kclpy] that enables you to focus on writing record processing logic in Python. This approach enables KCL to be language agnostic, while providing identical features and similar parallel processing model across all languages.
3030

3131
## Release Notes
32-
### Release 1.7.2 (November 07, 2016)
32+
### Release 1.7.3 (January 9, 2017)
33+
* Upgrade to the newest AWS Java SDK.
34+
* [Amazon Kinesis Client Issue #27](https://github.com/awslabs/amazon-kinesis-client-python/issues/27)
35+
* [PR #126](https://github.com/awslabs/amazon-kinesis-client/pull/126)
36+
* [PR #125](https://github.com/awslabs/amazon-kinesis-client/pull/125)
37+
* Added a direct dependency on commons-logging.
38+
* [Issue #123](https://github.com/awslabs/amazon-kinesis-client/issues/123)
39+
* [PR #124](https://github.com/awslabs/amazon-kinesis-client/pull/124)
40+
* Make ShardInfo public to allow for custom ShardPrioritization strategies.
41+
* [Issue #120](https://github.com/awslabs/amazon-kinesis-client/issues/120)
42+
* [PR #127](https://github.com/awslabs/amazon-kinesis-client/pull/127)
43+
44+
### Release 1.7.2 (November 7, 2016)
3345
* MultiLangDaemon Feature Updates
3446
The MultiLangDaemon has been upgraded to use the v2 interfaces, which allows access to enhanced checkpointing, and more information during record processor initialization. The MultiLangDaemon clients must be updated before they can take advantage of these new features.
3547

36-
### Release 1.7.1 (November 03, 2016)
48+
### Release 1.7.1 (November 3, 2016)
3749
* General
3850
* Allow disabling shard synchronization at startup.
3951
* Applications can disable shard synchronization at startup. Disabling shard synchronization can application startup times for very large streams.

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<artifactId>amazon-kinesis-client</artifactId>
77
<packaging>jar</packaging>
88
<name>Amazon Kinesis Client Library for Java</name>
9-
<version>1.7.3-SNAPSHOT</version>
9+
<version>1.7.3</version>
1010
<description>The Amazon Kinesis Client Library for Java enables Java developers to easily consume and process data
1111
from Amazon Kinesis.
1212
</description>

src/main/java/com/amazonaws/services/kinesis/clientlibrary/lib/worker/KinesisClientLibConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ public class KinesisClientLibConfiguration {
120120
/**
121121
* User agent set when Amazon Kinesis Client Library makes AWS requests.
122122
*/
123-
public static final String KINESIS_CLIENT_LIB_USER_AGENT = "amazon-kinesis-client-library-java-1.7.2";
123+
public static final String KINESIS_CLIENT_LIB_USER_AGENT = "amazon-kinesis-client-library-java-1.7.3";
124124

125125
/**
126126
* KCL will validate client provided sequence numbers with a call to Amazon Kinesis before checkpointing for calls

0 commit comments

Comments
 (0)