|
|
@@ -17,10 +17,10 @@ WARNING:
|
|
|
# Quick reference
|
|
|
|
|
|
- **Maintained by**:
|
|
|
- [members of the Apache Flink community](https://github.com/docker-flink/docker-flink)
|
|
|
+ [Apache Flink](https://flink.apache.org/community.html#people)
|
|
|
|
|
|
- **Where to get help**:
|
|
|
- [Community & Project Info](https://flink.apache.org/community.html)
|
|
|
+ [Official Apache Flink Mailing lists](https://flink.apache.org/community.html#mailing-lists) and [StackOverflow (tag `apache-flink`)](https://stackoverflow.com/questions/tagged/apache-flink)
|
|
|
|
|
|
# Supported tags and respective `Dockerfile` links
|
|
|
|
|
|
@@ -34,7 +34,7 @@ WARNING:
|
|
|
# Quick reference (cont.)
|
|
|
|
|
|
- **Where to file issues**:
|
|
|
- [https://github.com/docker-flink/docker-flink/issues](https://github.com/docker-flink/docker-flink/issues)
|
|
|
+ https://issues.apache.org/jira/browse/FLINK
|
|
|
|
|
|
- **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64))
|
|
|
[`amd64`](https://hub.docker.com/r/amd64/flink/)
|
|
|
@@ -52,87 +52,13 @@ WARNING:
|
|
|
|
|
|
# What is Apache Flink?
|
|
|
|
|
|
-Apache Flink is an open source stream processing framework with powerful stream- and batch-processing capabilities.
|
|
|
-
|
|
|
-Learn more about Flink at [https://flink.apache.org/](https://flink.apache.org/)
|
|
|
-
|
|
|
-> [wikipedia.org/wiki/Apache_Flink](https://en.wikipedia.org/wiki/Apache_Flink)
|
|
|
+[Apache Flink](https://flink.apache.org/) is an open source stream processing framework with powerful stream- and batch-processing capabilities.
|
|
|
|
|
|

|
|
|
|
|
|
-# Flink Docker image tags
|
|
|
-
|
|
|
-Starting with Flink 1.5, images without "hadoop" in the tag are the "Hadoop-free" variant of Flink. If you require Hadoop support (such as its HDFS filesystem implementation), you should reference an image whose tag includes the Hadoop version you need.
|
|
|
-
|
|
|
-# How to use this Docker image
|
|
|
-
|
|
|
-## Running a JobManager or a TaskManager
|
|
|
-
|
|
|
-You can run a JobManager (master).
|
|
|
-
|
|
|
-```console
|
|
|
-$ docker run --name flink_jobmanager -d -t flink jobmanager
|
|
|
-```
|
|
|
-
|
|
|
-You can also run a TaskManager (worker). Notice that workers need to register with the JobManager directly or via ZooKeeper so the master starts to send them tasks to execute.
|
|
|
-
|
|
|
-```console
|
|
|
-$ docker run --name flink_taskmanager -d -t flink taskmanager
|
|
|
-```
|
|
|
-
|
|
|
-## Running a cluster using Docker Compose
|
|
|
-
|
|
|
-With Docker Compose you can create a Flink cluster:
|
|
|
-
|
|
|
-```yml
|
|
|
-version: "2.1"
|
|
|
-services:
|
|
|
- jobmanager:
|
|
|
- image: ${FLINK_DOCKER_IMAGE_NAME:-flink}
|
|
|
- expose:
|
|
|
- - "6123"
|
|
|
- ports:
|
|
|
- - "8081:8081"
|
|
|
- command: jobmanager
|
|
|
- environment:
|
|
|
- - JOB_MANAGER_RPC_ADDRESS=jobmanager
|
|
|
-
|
|
|
- taskmanager:
|
|
|
- image: ${FLINK_DOCKER_IMAGE_NAME:-flink}
|
|
|
- expose:
|
|
|
- - "6121"
|
|
|
- - "6122"
|
|
|
- depends_on:
|
|
|
- - jobmanager
|
|
|
- command: taskmanager
|
|
|
- links:
|
|
|
- - "jobmanager:jobmanager"
|
|
|
- environment:
|
|
|
- - JOB_MANAGER_RPC_ADDRESS=jobmanager
|
|
|
-```
|
|
|
-
|
|
|
-and just run `docker-compose up`.
|
|
|
-
|
|
|
-Scale the cluster up or down to *N* TaskManagers:
|
|
|
-
|
|
|
-```console
|
|
|
-docker-compose scale taskmanager=<N>
|
|
|
-```
|
|
|
-
|
|
|
-## Configuration
|
|
|
-
|
|
|
-These are the default ports used by the Flink image:
|
|
|
-
|
|
|
-- The Web Client is on port `8081`
|
|
|
-- JobManager RPC port `6123`
|
|
|
-- TaskManagers RPC port `6122`
|
|
|
-- TaskManagers Data port `6121`
|
|
|
-
|
|
|
-# About this repository
|
|
|
-
|
|
|
-This repository is available on [github.com/docker-flink/docker-flink](https://github.com/docker-flink/docker-flink), and the official build is on the [Docker Hub](https://hub.docker.com/_/flink/).
|
|
|
+# How to use Apache Flink with Docker?
|
|
|
|
|
|
-This repository is maintained by members of the Apache Flink community.
|
|
|
+Please refer to the official [Apache Flink documentation](https://ci.apache.org/projects/flink/flink-docs-master/) about [how to use Apache Flink with Docker](https://ci.apache.org/projects/flink/flink-docs-master/ops/deployment/docker.html).
|
|
|
|
|
|
# License
|
|
|
|
|
|
@@ -140,7 +66,7 @@ Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
|
|
|
|
|
https://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
-Apache Flink, Flink®, Apache®, the squirrel logo, and the Apache feather logo are either registered trademarks or trademarks of The Apache Software Foundation.
|
|
|
+Apache Flink, Flink®, Apache®, the squirrel logo, and the Apache feather logo are either registered trademarks or trademarks of [The Apache Software Foundation](https://apache.org/).
|
|
|
|
|
|
As with all Docker images, these likely also contain other software which may be under other licenses (such as Bash, etc from the base distribution, along with any direct or indirect dependencies of the primary software being contained).
|
|
|
|