amazon-kinesis-deaggregator

A library for performing in-memory deaggregation of Kinesis aggregated stream records.

License

License

Categories

Categories

AWS Container PaaS Providers
GroupId

GroupId

com.amazonaws
ArtifactId

ArtifactId

amazon-kinesis-deaggregator
Last Version

Last Version

1.0.3
Release Date

Release Date

Type

Type

jar
Description

Description

amazon-kinesis-deaggregator
A library for performing in-memory deaggregation of Kinesis aggregated stream records.
Project URL

Project URL

https://aws.amazon.com/kinesis
Source Code Management

Source Code Management

https://github.com/awslabs/kinesis-aggregation.git

Download amazon-kinesis-deaggregator

How to add to project

<!-- https://jarcasting.com/artifacts/com.amazonaws/amazon-kinesis-deaggregator/ -->
<dependency>
    <groupId>com.amazonaws</groupId>
    <artifactId>amazon-kinesis-deaggregator</artifactId>
    <version>1.0.3</version>
</dependency>
// https://jarcasting.com/artifacts/com.amazonaws/amazon-kinesis-deaggregator/
implementation 'com.amazonaws:amazon-kinesis-deaggregator:1.0.3'
// https://jarcasting.com/artifacts/com.amazonaws/amazon-kinesis-deaggregator/
implementation ("com.amazonaws:amazon-kinesis-deaggregator:1.0.3")
'com.amazonaws:amazon-kinesis-deaggregator:jar:1.0.3'
<dependency org="com.amazonaws" name="amazon-kinesis-deaggregator" rev="1.0.3">
  <artifact name="amazon-kinesis-deaggregator" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.amazonaws', module='amazon-kinesis-deaggregator', version='1.0.3')
)
libraryDependencies += "com.amazonaws" % "amazon-kinesis-deaggregator" % "1.0.3"
[com.amazonaws/amazon-kinesis-deaggregator "1.0.3"]

Dependencies

compile (2)

Group / Artifact Type Version
com.amazonaws : amazon-kinesis-client jar 1.8.8
com.amazonaws : aws-lambda-java-events jar 1.1.0

Project Modules

There are no modules declared in this project.

Kinesis Record Aggregation & Deaggregation Modules for AWS Lambda

The Amazon Kinesis Producer Library (KPL) gives you the ability to write data to Amazon Kinesis with a highly efficient, asyncronous delivery model that can improve performance. The KPL is extremely powerful, but is currently only available as a Java API wrapper around a C++ executable which may not be suitable for all deployment environments. Similarly, the Kinesis Client Library (KCL) provides automatic deaggregation of KPL aggregated records, but not all Kinesis consumer applications, such as those running on AWS Lambda, are currently capable of leveraging this deaggregation capability.

KPL Message Format How the Kinesis Producer Library Publishes Data

The components in this project give you the ability to process and create KPL compatible serialised data within AWS Lambda, in Java, Node.js and Python. These components can also be used as part of the Kinesis Client Library a multi-lang KCL application. However, this project has several limitations:

  • It only generates data, and doesn't perform delivery to the stream like the KPL. You still have to call PutRecord(s) to push data to Kinesis Data Streams
  • It doesn't manage data across multiple streams like KPL - the interface assumes that all data is sent to a single Stream

Aggregation

One of the main advantages of the KPL is its ability to use record aggregation to increase payload size and improve throughput. While this project is not a replacement for the full KPL, it does provide you the ability to easily aggregate multiple user records into larger aggregated records that make more efficient use of available bandwidth and reduce cost. This data is encoded using Google Protocol Buffers, and returned to the calling function for subsequent use. You can then publish to Kinesis and the data is compatible with consumers using the KCL or these Deaggregation modules.

Processing Model

Deaggregation

The components in this library allow you to efficiently deaggregate protocol buffer encoded aggregated records in any application, including AWS Lambda.

Processing Model

Language Specific Implementations

AWS Lambda supports Java, Node.js and Python as programming languages. We have included support for those languages so that you can create and process UserRecords via standalone modules. Documentation is provided for each language:

Language Location
Java java
Node.js Javascript node.js
Python python

Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

com.amazonaws

Amazon Web Services - Labs

AWS Labs

Versions

Version
1.0.3