Skip to content

Latest commit

 

History

History
56 lines (44 loc) · 2.25 KB

File metadata and controls

56 lines (44 loc) · 2.25 KB

Amazon Kinesis Flink Connectors

This repository contains various Apache Flink connectors to connect to AWS Kinesis data sources and sinks.

Amazon Kinesis Data Firehose Producer for Apache Flink

This Producer allows Flink applications to push directly to Kinesis Firehose.

Quickstart

Configure and instantiate a FlinkKinesisFirehoseProducer:

Properties config = new Properties();
outputProperties.setProperty(ConsumerConfigConstants.AWS_REGION, region);

FlinkKinesisFirehoseProducer<String> sink = new FlinkKinesisFirehoseProducer<>(streamName, new SimpleStringSchema(), config);

Getting Started

Follow the example instructions to create an end to end application:

Building from Source

  1. You will need to install Java 1.8+ and Maven
  2. Clone the repository from Github
  3. Build using Maven from the project root directory:
    1. $ mvn clean install

Flink Version Matrix

Flink maintain backwards compatibility for the Sink interface used by the Firehose Producer. This project is compatible with Flink 1.x, there is no guarantee it will support Flink 2.x should it release in the future.

Connector Version Flink Version Release Date
2.1.0 1.x Feb, 2023
2.0.0 1.x Jul, 2020
1.1.0 1.x Dec, 2019
1.0.1 1.x Dec, 2018
1.0.0 1.x Dec, 2018

License

This library is licensed under the Apache 2.0 License.