Skip to content

sayantacC/amazon-kinesis-client

 
 

Repository files navigation

Amazon Kinesis Client Library for Java

Build Status BuildStatus

The Amazon Kinesis Client Library for Java (Amazon KCL) enables Java developers to easily consume and process data from Amazon Kinesis.

Recommended Upgrade for All Users of the 2.x Amazon Kinesis Client

⚠️ It's highly recommended for users of version 2.0 of the Amazon Kinesis Client to upgrade to version 2.0.3 or later. A bug has been identified in versions prior to 2.0.3 that could cause records to be delivered to the wrong record processor.

ℹ️ Amazon Kinesis Client versions 1.x are not impacted.

Please open an issue if you have any questions.

Features

  • Provides an easy-to-use programming model for processing data using Amazon Kinesis
  • Helps with scale-out and fault-tolerant processing

Getting Started

  1. Sign up for AWS — Before you begin, you need an AWS account. For more information about creating an AWS account and retrieving your AWS credentials, see AWS Account and Credentials in the AWS SDK for Java Developer Guide.
  2. Sign up for Amazon Kinesis — Go to the Amazon Kinesis console to sign up for the service and create an Amazon Kinesis stream. For more information, see Create an Amazon Kinesis Stream in the Amazon Kinesis Developer Guide.
  3. Minimum requirements — To use the Amazon Kinesis Client Library, you'll need Java 1.8+. For more information about Amazon Kinesis Client Library requirements, see Before You Begin in the Amazon Kinesis Developer Guide.
  4. Using the Amazon Kinesis Client Library — The best way to get familiar with the Amazon Kinesis Client Library is to read Developing Record Consumer Applications in the Amazon Kinesis Developer Guide.

Building from Source

After you've downloaded the code from GitHub, you can build it using Maven. To disable GPG signing in the build, use this command: mvn clean install -Dgpg.skip=true

Integration with the Kinesis Producer Library

For producer-side developers using the Kinesis Producer Library (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.

Amazon KCL support for other languages

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. 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 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.

Using the KCL

The recommended way to use the KCL for Java is to consume it from Maven.

Version 2.x

<dependency>
    <groupId>software.amazon.kinesis</groupId>
    <artifactId>amazon-kinesis-client</artifactId>
    <version>2.2.4</version>
</dependency>

Version 1.x

Version 1.x tracking branch

<dependency>
    <groupId>com.amazonaws</groupId>
    <artifactId>amazon-kinesis-client</artifactId>
    <version>1.11.2</version>
</dependency>

Release Notes

Latest Release (2.2.6 - November 7, 2019)

Milestone#43

  • Updating the SDK version to 2.9.25.
  • Clearing the local cache on a subscription termination, to avoid noisy logs on new subscriptions.
  • Updating the SDK version to 2.10.0 in order to fix the premature H2 stream close issue.
    • PR#649
    • NOTE: SDK has a known connection teardown issue when multiple H2 streams are used within a connection. This might result in shard consumers sticking to a stale service host and not progressing. If your shard consumer gets stuck, use the following configuration as a workaround. This configuration might result in up to 5X increase in total connections.
    KinesisAsyncClient kinesisClient = KinesisAsyncClient.builder()
                                                         .region(region)
                                                         .httpClientBuilder(NettyNioAsyncHttpClient.builder().maxConcurrency(Integer.MAX_VALUE).maxHttp2Streams(1))
                                                         .build()
    

Related Prior Release (2.2.5 - October 23, 2019)

Milestone#40

  • Updating Sonatype to dedicated AWS endpoint.
  • Introducing a validation step to verify if ShardEnd is reached, to prevent shard consumer stuck scenarios in the event of malformed response from service.

Related Prior Release (2.2.4 - September 23, 2019)

Milestone#39

  • Making FanoutRecordsPublisher test cases resilient to delayed thread operations
  • Drain delivery queue in the FanoutRecordsPublisher to make slow consumers consume events at their pace
  • Fix to prevent the onNext event going to stale subscription when restart happens in PrefetchRecordsPublisher

Related Prior Release (2.2.3 - September 04, 2019)

Milestone#38

  • Fix to prevent data loss and stuck shards in the event of failed records delivery in Polling readers

Related Prior Release (2.2.2 - August 19, 2019)

Milestone#36

  • Fix to prevent invalid ShardConsumer state transitions due to rejected executor service executions.
  • Fixing a bug in which initial subscription failure caused a shard consumer to get stuck.
  • Making CW publish failures visible by executing the async publish calls in a blocking manner and logging on exception.
  • Update shard end checkpoint failure messaging.
  • A fix for resiliency and durability issues that occur in the reduced thread mode - Nonblocking approach.
  • Preventing duplicate delivery due to unacknowledged event, while completing the subscription.

For remaining release notes check CHANGELOG.md.

About

Client library for Amazon Kinesis

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 100.0%