Skip to content

Commit 0954ed8

Browse files
committed
Release 1.7.2 of the Amazon Kinesis Client Library
MultiLangDaemon Feature Updates 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.
1 parent 5d04552 commit 0954ed8

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

META-INF/MANIFEST.MF

+1-1
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.1
5+
Bundle-Version: 1.7.2
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

+5-1
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,13 @@ After you've downloaded the code from GitHub, you can build it using Maven. To d
2626
For producer-side developers using the **[Kinesis Producer Library (KPL)][kinesis-guide-kpl]**, the KCL integrates without additional effort.  When the KCL retrieves an aggregated Amazon Kinesis record consisting of multiple KPL user records, it will automatically invoke the KPL to extract the individual user records before returning them to the user.
2727

2828
## Amazon KCL support for other languages
29-
To make it easier for developers to write record processors in other languages, we have implemented a Java based daemon, called MultiLangDaemon 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.
29+
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)
33+
* MultiLangDaemon Feature Updates
34+
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.
35+
3236
### Release 1.7.1 (November 03, 2016)
3337
* General
3438
* Allow disabling shard synchronization at startup.

pom.xml

+1-1
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.2-SNAPSHOT</version>
9+
<version>1.7.2</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>

0 commit comments

Comments
 (0)