-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
25f75d1
commit 71aeac5
Showing
2 changed files
with
42 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# Flink原理与实践 | ||
|
||
## 简介 | ||
|
||
《Flink原理与实践》已上线各大电商平台,书配合代码,学习效率更高。 | ||
|
||
麻烦路过的朋友给点个星星(star),也算是对我分享的认可,谢谢了! | ||
|
||
![《Flink原理与实践》](./book.jpeg) | ||
|
||
本工程主要使用Java和Scala演示如何使用Flink。用户需要安装Intellij Idea和Maven。 | ||
|
||
我的网站[http://lulaoshi.info/](https://lulaoshi.info/flink/)有对Flink的详细图文教程。 | ||
|
||
大家也可以通过微信公众号找到我: | ||
|
||
![公众号](http://aixingqiu-1258949597.cos.ap-beijing.myqcloud.com/2019-11-20-021810.png) | ||
|
||
|
||
## Project Structure | ||
|
||
`chapter2_basics` gives some basic examples on overloading, types, functional programming. | ||
|
||
`chapter4_api` shows Flink transformation APIs without time or state. | ||
|
||
`chapter5_time` shows how to use time and window. | ||
|
||
`chapter6_state` gives example on state. | ||
|
||
`chapter7_connector` gives example on Connector (Source and Sink). | ||
|
||
`chapter7_sql` shows Table API & SQL. | ||
|