Apache Flink
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Go to file
Joery 52d6691d2e
[FLINK-37183][clients] Fix symbolic links not being followed in "usrlib"
Co-authored-by: Joery van den Hoff <joery.vandenhoff@imc.com>
20 hours ago
.github [FLINK-37035][release] Build doc for release-2.0 branch 20 hours ago
.idea [hotfix] Revert accidentally committed change to `.idea/vcx.xml` as part of f6d09c5c01 2 years ago
.mvn [FLINK-33607][build] Updates Maven wrapper version and enables checksum verification for Maven wrapper 5 months ago
docs [FLINK-37176][docs] Support mac binary for setup_hugo 3 days ago
flink-annotations [FLINK-37035][release] Add new version 2.1 and update GHA nightly build versions 20 hours ago
flink-architecture-tests Update version to 2.1-SNAPSHOT 3 days ago
flink-clients [FLINK-37183][clients] Fix symbolic links not being followed in "usrlib" 20 hours ago
flink-connectors Update version to 2.1-SNAPSHOT 3 days ago
flink-container Update version to 2.1-SNAPSHOT 3 days ago
flink-core Update version to 2.1-SNAPSHOT 3 days ago
flink-core-api Update version to 2.1-SNAPSHOT 3 days ago
flink-datastream Update version to 2.1-SNAPSHOT 3 days ago
flink-datastream-api Update version to 2.1-SNAPSHOT 3 days ago
flink-dist Update version to 2.1-SNAPSHOT 3 days ago
flink-dist-scala Update version to 2.1-SNAPSHOT 3 days ago
flink-docs Update version to 2.1-SNAPSHOT 3 days ago
flink-dstl Update version to 2.1-SNAPSHOT 3 days ago
flink-end-to-end-tests Update version to 2.1-SNAPSHOT 3 days ago
flink-examples Update version to 2.1-SNAPSHOT 3 days ago
flink-external-resources Update version to 2.1-SNAPSHOT 3 days ago
flink-filesystems Update version to 2.1-SNAPSHOT 3 days ago
flink-formats Revert "[FLINK-36652][Formats/ORC] Upgrade Apache ORC Version to 1.9.4 (#25711)" 2 days ago
flink-fs-tests Update version to 2.1-SNAPSHOT 3 days ago
flink-kubernetes Update version to 2.1-SNAPSHOT 3 days ago
flink-libraries Update version to 2.1-SNAPSHOT 3 days ago
flink-metrics Update version to 2.1-SNAPSHOT 3 days ago
flink-python Update version to 2.1-SNAPSHOT 3 days ago
flink-queryable-state Update version to 2.1-SNAPSHOT 3 days ago
flink-quickstart Update version to 2.1-SNAPSHOT 3 days ago
flink-rpc [FLINK-37173][build] Fix license check issue in JDK11 build 2 days ago
flink-runtime [FLINK-37182][tests] Save partitionedFile as a class member in the PartitionedFileWriteReadTest. 1 day ago
flink-runtime-web Update version to 2.1-SNAPSHOT 3 days ago
flink-state-backends Update version to 2.1-SNAPSHOT 3 days ago
flink-streaming-java Update version to 2.1-SNAPSHOT 3 days ago
flink-table [FLINK-37076][table-planner] Support PTFs until ExecNode level 2 days ago
flink-test-utils-parent Update version to 2.1-SNAPSHOT 3 days ago
flink-tests Update version to 2.1-SNAPSHOT 3 days ago
flink-tests-java17 Update version to 2.1-SNAPSHOT 3 days ago
flink-walkthroughs Update version to 2.1-SNAPSHOT 3 days ago
flink-yarn Update version to 2.1-SNAPSHOT 3 days ago
flink-yarn-tests Update version to 2.1-SNAPSHOT 3 days ago
licenses
tools Update version to 2.1-SNAPSHOT 3 days ago
.asf.yaml [hotfix] Add homepage link to .asf.yaml 6 days ago
.editorconfig [FLINK-36026][table] Options from `OPTIONS` hint should be present in compiled plan 5 months ago
.git-blame-ignore-revs
.gitignore [hotfix] ignore vscode folder in .gitignore (#25774) 1 month ago
.gitmodules
.scalafmt.conf
LICENSE
NOTICE [hotfix] Update copyright NOTICE year to 2024 1 year ago
README.md [FLINK-36181] Use Java 17 by default (#25898) 1 week ago
azure-pipelines.yml [FLINK-36181] Use Java 17 by default (#25898) 1 week ago
mvnw [FLINK-33607][build] Updates Maven wrapper version and enables checksum verification for Maven wrapper 5 months ago
mvnw.cmd [FLINK-33607][build] Updates Maven wrapper version and enables checksum verification for Maven wrapper 5 months ago
pom.xml Revert "[FLINK-36652][Formats/ORC] Upgrade Apache ORC Version to 1.9.4 (#25711)" 2 days ago

README.md

Apache Flink

Apache Flink is an open source stream processing framework with powerful stream- and batch-processing capabilities.

Learn more about Flink at https://flink.apache.org/

Features

  • A streaming-first runtime that supports both batch processing and data streaming programs

  • Elegant and fluent APIs in Java

  • A runtime that supports very high throughput and low event latency at the same time

  • Support for event time and out-of-order processing in the DataStream API, based on the Dataflow Model

  • Flexible windowing (time, count, sessions, custom triggers) across different time semantics (event time, processing time)

  • Fault-tolerance with exactly-once processing guarantees

  • Natural back-pressure in streaming programs

  • Libraries for Graph processing (batch), Machine Learning (batch), and Complex Event Processing (streaming)

  • Custom memory management for efficient and robust switching between in-memory and out-of-core data processing algorithms

  • Compatibility layers for Apache Hadoop MapReduce

  • Integration with YARN, HDFS, HBase, and other components of the Apache Hadoop ecosystem

Streaming Example

// pojo class WordWithCount
public class WordWithCount {
    public String word;
    public int count;

    public WordWithCount() {}
    
    public WordWithCount(String word, int count) {
        this.word = word;
        this.count = count;
    }
}

// main method
StreamExecutionEnvironment env = StreamExecutionEnvironment.getExecutionEnvironment();
DataStreamSource<String> text = env.socketTextStream(host, port);
DataStream<WordWithCount> windowCounts = text
    .flatMap(
        (FlatMapFunction<String, String>) (line, collector) 
            -> Arrays.stream(line.split("\\s")).forEach(collector::collect)
    ).returns(String.class)
    .map(word -> new WordWithCount(word, 1)).returns(TypeInformation.of(WordWithCount.class))
    .keyBy(wordWithCnt -> wordWithCnt.word)
    .window(TumblingProcessingTimeWindows.of(Duration.ofSeconds(5)))
    .sum("count").returns(TypeInformation.of(WordWithCount.class));

windowCounts.print();
env.execute();
}

Batch Example

// pojo class WordWithCount
public class WordWithCount {
    public String word;
    public int count;

    public WordWithCount() {}

    public WordWithCount(String word, int count) {
        this.word = word;
        this.count = count;
    }
}

// main method
StreamExecutionEnvironment env = StreamExecutionEnvironment.getExecutionEnvironment();
env.setRuntimeMode(RuntimeExecutionMode.BATCH);
FileSource<String> source = FileSource.forRecordStreamFormat(new TextLineInputFormat(), new Path("MyInput.txt")).build();
DataStreamSource<String> text = env.fromSource(source, WatermarkStrategy.noWatermarks(), "MySource");
DataStream<WordWithCount> windowCounts = text
        .flatMap((FlatMapFunction<String, String>) (line, collector) -> Arrays
                .stream(line.split("\\s"))
                .forEach(collector::collect)).returns(String.class)
        .map(word -> new WordWithCount(word, 1)).returns(TypeInformation.of(WordWithCount.class))
        .keyBy(wordWintCount -> wordWintCount.word)
        .sum("count").returns(TypeInformation.of(WordWithCount.class));

windowCounts.print();
env.execute();

Prerequisites for building Flink:

  • Unix-like environment (we use Linux, Mac OS X, Cygwin, WSL)
  • Git
  • Maven (we require version 3.8.6)
  • Java (version 11, 17, or 21)

Basic Build Instructions

First, clone the repository:

git clone https://github.com/apache/flink.git
cd flink

Then, choose one of the following commands based on your preferred Java version:

For Java 11

./mvnw clean package -DskipTests -Djdk11 -Pjava11-target

For Java 17 (Default)

./mvnw clean package -DskipTests -Djdk17 -Pjava17-target

For Java 21

./mvnw clean package -DskipTests -Djdk21 -Pjava21-target

The build process will take approximately 10 minutes to complete. Flink will be installed in build-target.

Notes

  • Make sure your JAVA_HOME environment variable points to the correct JDK version
  • The build command uses Maven wrapper (mvnw) which ensures the correct Maven version is used
  • The -DskipTests flag skips running tests to speed up the build process
  • Each Java version requires its corresponding profile (-Pjava-target) and JDK flag (-Djdk)

The Flink committers use IntelliJ IDEA to develop the Flink codebase. We recommend IntelliJ IDEA for developing projects that involve Scala code.

Minimal requirements for an IDE are:

  • Support for Java and Scala (also mixed projects)
  • Support for Maven with Java and Scala

IntelliJ IDEA

The IntelliJ IDE supports Maven out of the box and offers a plugin for Scala development.

Check out our Setting up IntelliJ guide for details.

Eclipse Scala IDE

NOTE: From our experience, this setup does not work with Flink due to deficiencies of the old Eclipse version bundled with Scala IDE 3.0.3 or due to version incompatibilities with the bundled Scala version in Scala IDE 4.4.1.

We recommend to use IntelliJ instead (see above)

Support

Dont hesitate to ask!

Contact the developers and community on the mailing lists if you need any help.

Open an issue if you find a bug in Flink.

Documentation

The documentation of Apache Flink is located on the website: https://flink.apache.org or in the docs/ directory of the source code.

Fork and Contribute

This is an active open-source project. We are always open to people who want to use the system or contribute to it. Contact us if you are looking for implementation tasks that fit your skills. This article describes how to contribute to Apache Flink.

Externalized Connectors

Most Flink connectors have been externalized to individual repos under the Apache Software Foundation:

About

Apache Flink is an open source project of The Apache Software Foundation (ASF). The Apache Flink project originated from the Stratosphere research project.