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

https://github.com/kczulko/apache-flink-standalone-docker-cluster

Apache Flink standalone cluster based on docker containers
https://github.com/kczulko/apache-flink-standalone-docker-cluster

apache-flink docker

Last synced: about 2 months ago
JSON representation

Apache Flink standalone cluster based on docker containers

Awesome Lists containing this project

README

          

# Docker cluster for Apache Flink

## Scaling the cluster

To add more slaves, please add one in `./docker-compose.yml` and put its name in `./slaves` file. Please bear in mind that newly added slave needs to mount `./flink-conf.yaml` configuration (due to `jobmanager.rpc.address: master` entry).

## Running cluster

Simply execute

```bash
docker-compose up
```

from the project root dir and visit jobmanager gui under `localhost:8081`.

## High availability mode for JobManager

Branch `ha` contains a setup for [HA standalone](https://ci.apache.org/projects/flink/flink-docs-release-1.3/setup/jobmanager_high_availability.html) cluster mode. I still don't know how to run Dashboard GUI...