Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wcygan/flink-quickstart
https://github.com/wcygan/flink-quickstart
Last synced: 2 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/wcygan/flink-quickstart
- Owner: wcygan
- Created: 2024-11-11T06:44:21.000Z (4 days ago)
- Default Branch: main
- Last Pushed: 2024-11-11T07:56:18.000Z (4 days ago)
- Last Synced: 2024-11-11T08:35:59.638Z (4 days ago)
- Language: Java
- Size: 19.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# [Flink Quickstart](https://nightlies.apache.org/flink/flink-kubernetes-operator-docs-main/docs/try-flink-kubernetes-operator/quick-start/a)
Start Minikube:
```bash
minikube start --cpus=8 --memory=10240 --disk-size=50g
minikube status
skaffold config set --global local-cluster true
eval $(minikube -p custom docker-env)
skaffold run -p bootstrap
```
## Run State Machine```bash
skaffold dev --module state-machine
```## Run Word Count
```bash
DOCKER_BUILDKIT=1 docker build -f word-count/Dockerfile -t flink-beam-example:latest word-count && skaffold dev --module word-count
```It's a bit annoying that you have to build the docker image like this, but I haven't found a way around it yet...