Skip to content

Files

Latest commit

 

History

History

flink-connector-flume

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

Flink Flume Connector

This connector provides a sink that can send data to Apache Flume™. To use this connector, add the following dependency to your project:

<dependency>
  <groupId>org.apache.bahir</groupId>
  <artifactId>flink-connector-flume_2.11</artifactId>
  <version>1.1-SNAPSHOT</version>
</dependency>

Version Compatibility: This module is compatible with Flume 1.8.0.

Note that the streaming connectors are not part of the binary distribution of Flink. You need to link them into your job jar for cluster execution. See how to link with them for cluster execution here.

To create a FlumeSink instantiate the following constructor:

FlumeSink(String host, int port, SerializationSchema<IN> schema)