docker-compose up -d
Wait for a few minutes and check the healthiness of the job manager and task manager with docker-compose ps
. When the
components are healthy, open your browser and navigate to http://localhost:8081
, you can see the Flink page.
docker run -it --rm --network flink_local --name datasource alpine:3 nc -lk -p 9999
docker run -it --rm \
-v $(pwd):/app \
-v $(pwd)/config/flink-conf.yaml:/flink/conf/flink-conf.yaml \
--network flink_local \
-e FLINK_PROPERTIES="jobmanager.rpc.address: jobmanager" \
apache/seatunnel-flink --config /app/config/application.conf
You will find the running job in http://localhost:8081
.
Type some data in the datasource
container of the step.
docker-compose logs -f taskmanager