Version 1.6.5 of the Amazon Kinesis Client Library
This commit is contained in:
parent
53754ae567
commit
41832de928
4 changed files with 19 additions and 4 deletions
|
|
@ -2,7 +2,7 @@ Manifest-Version: 1.0
|
|||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: Amazon Kinesis Client Library for Java
|
||||
Bundle-SymbolicName: com.amazonaws.kinesisclientlibrary;singleton:=true
|
||||
Bundle-Version: 1.6.4
|
||||
Bundle-Version: 1.6.5
|
||||
Bundle-Vendor: Amazon Technologies, Inc
|
||||
Bundle-RequiredExecutionEnvironment: JavaSE-1.7
|
||||
Require-Bundle: org.apache.commons.codec;bundle-version="1.6",
|
||||
|
|
@ -12,7 +12,7 @@ Require-Bundle: org.apache.commons.codec;bundle-version="1.6",
|
|||
com.fasterxml.jackson.core.jackson-annotations;bundle-version="2.5.0",
|
||||
org.apache.httpcomponents.httpcore;bundle-version="4.3.3",
|
||||
org.apache.httpcomponents.httpclient;bundle-version="4.3.6"
|
||||
com.amazonaws.sdk;bundle-version="1.10.61",
|
||||
com.amazonaws.sdk;bundle-version="1.11.14",
|
||||
Export-Package: com.amazonaws.services.kinesis,
|
||||
com.amazonaws.services.kinesis.clientlibrary,
|
||||
com.amazonaws.services.kinesis.clientlibrary.config,
|
||||
|
|
|
|||
15
README.md
15
README.md
|
|
@ -29,6 +29,21 @@ For producer-side developers using the **[Kinesis Producer Library (KPL)][kinesi
|
|||
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.
|
||||
|
||||
## Release Notes
|
||||
### Release 1.6.5 (July 25, 2016)
|
||||
* Change LeaseManager to call DescribeTable before attempting to create the lease table.
|
||||
* [Issue #36](https://github.com/awslabs/amazon-kinesis-client/issues/36)
|
||||
* [PR #41](https://github.com/awslabs/amazon-kinesis-client/pull/41)
|
||||
* [PR #67](https://github.com/awslabs/amazon-kinesis-client/pull/67)
|
||||
* Allow DynamoDB lease table name to be specified
|
||||
* [PR #61](https://github.com/awslabs/amazon-kinesis-client/pull/61)
|
||||
* Add approximateArrivalTimestamp for JsonFriendlyRecord
|
||||
* [PR #86](https://github.com/awslabs/amazon-kinesis-client/pull/86)
|
||||
* Shutdown lease renewal thread pool on exit.
|
||||
* [PR #84](https://github.com/awslabs/amazon-kinesis-client/pull/84)
|
||||
* Wait for CloudWatch publishing thread to finish before exiting.
|
||||
* [PR #82](https://github.com/awslabs/amazon-kinesis-client/pull/82)
|
||||
* Added unit, and integration tests for the library.
|
||||
|
||||
### Release 1.6.4 (July 6, 2016)
|
||||
* Upgrade to AWS SDK for Java 1.11.14
|
||||
* [Issue #74](https://github.com/awslabs/amazon-kinesis-client/issues/74)
|
||||
|
|
|
|||
2
pom.xml
2
pom.xml
|
|
@ -6,7 +6,7 @@
|
|||
<artifactId>amazon-kinesis-client</artifactId>
|
||||
<packaging>jar</packaging>
|
||||
<name>Amazon Kinesis Client Library for Java</name>
|
||||
<version>1.6.4</version>
|
||||
<version>1.6.5</version>
|
||||
<description>The Amazon Kinesis Client Library for Java enables Java developers to easily consume and process data
|
||||
from Amazon Kinesis.
|
||||
</description>
|
||||
|
|
|
|||
|
|
@ -119,7 +119,7 @@ public class KinesisClientLibConfiguration {
|
|||
/**
|
||||
* User agent set when Amazon Kinesis Client Library makes AWS requests.
|
||||
*/
|
||||
public static final String KINESIS_CLIENT_LIB_USER_AGENT = "amazon-kinesis-client-library-java-1.6.4";
|
||||
public static final String KINESIS_CLIENT_LIB_USER_AGENT = "amazon-kinesis-client-library-java-1.6.5";
|
||||
|
||||
/**
|
||||
* KCL will validate client provided sequence numbers with a call to Amazon Kinesis before checkpointing for calls
|
||||
|
|
|
|||
Loading…
Reference in a new issue