Snapshot của apache/flink: 26.3k★ · Java · Data. Apache Flink
Tóm tắt dựng từ metadata GitHub của chính dự án — chưa có bài review TopGit. Trang sẽ tự động cập nhật khi bài review đầy đủ được xuất bản.
VÌ SAO CHƯA CÓ REVIEW
TopGit viết bài đầy đủ cho repo có nhiều sao nhất và được yêu cầu nhiều nhất. Trang này là snapshot trong thời gian chờ — xem README gốc ở tab READ ME.
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(wordWithCount -> wordWithCount.word)
.sum("count").returns(TypeInformation.of(WordWithCount.class));
windowCounts.print();
env.execute();
Building Apache Flink from Source
Prerequisites for building Flink:
Unix-like environment (we use Linux, Mac OS X, Cygwin, WSL)
Git
Maven (we require version 3.9.16)
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:
Check out our DEVELOPMENT.md guide for detailed IDE setup instructions.
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
Don’t 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:
flink-connector-aws
flink-connector-cassandra
flink-connector-elasticsearch
flink-connector-gcp-pubsub
flink-connector-hbase
flink-connector-hive
flink-connector-jdbc
flink-connector-kafka
flink-connector-mongodb
flink-connector-opensearch
flink-connector-prometheus
flink-connector-pulsar
flink-connector-rabbitmq
About
Apache Flink is an open source project of The Apache Software Foundation (ASF).
The Apache Flink project originated from the Stratosphere research project.
apache/flink có 26.3k sao GitHub — tải lại trang để xem số mới nhất, hoặc xem trực tiếp github.com/apache/flink. TopGit phản chiếu số sao của GitHub nhưng không cam kết đến từng phút.
apache/flink có những chủ đề gì?
GitHub topics của apache/flink: "big-data", "flink", "java", "python", "scala", "sql". TopGit xếp repo vào nhóm Data.
apache/flink có trang demo không?
Dự án có trang chủ ở https://flink.apache.org/. Tab "Readme" ở trang này thường có ảnh chụp và hướng dẫn bắt đầu nhanh.
apache/flink còn đang phát triển không?
Commit gần nhất trên apache/flink là 2 ngày trước (theo timestamp GitHub). Repo có 14.0k fork — một chỉ báo về mức độ quan tâm của cộng đồng.
apache/flink dùng license gì?
apache/flink phát hành theo license Apache-2.0. Nên mở file LICENSE trên GitHub để xác nhận — license metadata đôi khi lệch với thực tế dự án.
apache/flink viết bằng ngôn ngữ gì?
apache/flink chủ yếu viết bằng Java. Trường "language" của GitHub dựa trên phần lớn byte ở nhánh mặc định.
Đọc thêm về apache/flink ở đâu?
Trang TopGit này là một snapshot — tab "Readme" hiển thị nguyên văn README của repo (đã bỏ link, giữ ảnh). Repo GitHub ở github.com/apache/flink là nguồn chính thức.
Đọc đầy đủ README ở tab phía trên.
Vẫn đang phân vân về flink?
Một cú bấm sẽ gửi câu hỏi kèm trang này cho AI — xem AI nói gì về flink.