From 88d513a71bb027ea7934fc4dd4dce901724fec1a Mon Sep 17 00:00:00 2001 From: "Jeffrey Jonathan Jennings (J3)" Date: Fri, 25 Oct 2024 15:48:06 +0200 Subject: [PATCH] Resolved #411. --- java/README.md | 4 ++-- python/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/java/README.md b/java/README.md index e4ed37d..9c40d18 100644 --- a/java/README.md +++ b/java/README.md @@ -44,14 +44,14 @@ scripts/run-flink-locally.sh on --profile= To learn more about this script, click [here](../.blog/run-flink-locally-script-explanation.md). ## 2.0 Discover What You Can Do with These Flink Apps -To access the JobManager (`apache_flink-kickstarter-jobmanager-1`) container, open the interactive shell by running: +To access the Flink JobManager (`apache_flink-kickstarter-jobmanager-1`) container, open the interactive shell by running: ```bash docker exec -it -w /opt/flink/java_apps/app/build/libs apache_flink-kickstarter-jobmanager-1 /bin/bash ``` This command drops you right into the container, giving you full control to execute commands, explore the file system, or handle any tasks directly. -Finally, to launch one of the Flink applications, choose your app and use the corresponding Flink Run command listed below. Let’s have some fun with Flink! +Finally, to launch one of the **pre-complied** Flink applications, choose your app and use the corresponding [`flink run`](https://nightlies.apache.org/flink/flink-docs-master/docs/deployment/cli/) command listed below. Let’s have some fun with Flink! Flink App|Flink Run Command -|- diff --git a/python/README.md b/python/README.md index 48d9f75..3951fb0 100644 --- a/python/README.md +++ b/python/README.md @@ -51,7 +51,7 @@ scripts/run-flink-locally.sh on --profile= To learn more about this script, click [here](../.blog/run-flink-locally-script-explanation.md). ## 3.0 Discover What You Can Do with These Flink Apps -To access the JobManager (`apache_flink-kickstarter-jobmanager-1`) container, open the interactive shell by running: +To access the Flink JobManager (`apache_flink-kickstarter-jobmanager-1`) container, open the interactive shell by running: ```bash docker exec -it -u root -w /opt/flink/python_apps/src apache_flink-kickstarter-jobmanager-1 /bin/bash ```