Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/hwywl/flink-examples

Flink 学习产生的代码,对主要的功能进行了demo测试,写了详细的注释,按模块分开方便学习。
https://github.com/hwywl/flink-examples

flink kinesis

Last synced: 4 days ago
JSON representation

Flink 学习产生的代码,对主要的功能进行了demo测试,写了详细的注释,按模块分开方便学习。

Awesome Lists containing this project

README

        

# flink-examples
Flink code examples

### 配置
```shell
cd /home/hadoop/flink-1.12.4/conf
vim flink-conf.yaml
# 我这边机器内存是32G,所以把任务槽调整为8个
taskmanager.numberOfTaskSlots: 8
```

### 启动
```shell
./home/hadoop/flink-1.12.4/bin/flink run -c com.yi.streaming.state.FlinkStateMapState /home/hadoop/app/flink-examples-1.0-SNAPSHOT.jar
```

### git版本分支
```
matser: 对应Flink 1.12.x之前版本的代码
1.12.x: 对应Flink 1.12.x版本的代码
```