Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/martishin/flink-examples
Examples of Apache Flink jobs
https://github.com/martishin/flink-examples
flink gradle java
Last synced: about 1 month ago
JSON representation
Examples of Apache Flink jobs
- Host: GitHub
- URL: https://github.com/martishin/flink-examples
- Owner: martishin
- Created: 2024-09-10T20:39:45.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-09-11T23:33:50.000Z (5 months ago)
- Last Synced: 2024-11-02T03:23:51.755Z (3 months ago)
- Topics: flink, gradle, java
- Language: Java
- Homepage:
- Size: 64.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Flink Examples
## Running Batch Job Locally
* Build the job
``` shell
./gradlew :batch:build
```
* Start the Flink cluster:
``` shell
docker-compose up
```
* Sumit the job:
``` shell
docker exec -it flink_jobmanager flink run /jars/batch-1.0-SNAPSHOT.jar
```