From a8dffff8c75a7aa78e9346d1a6748e4db649310a Mon Sep 17 00:00:00 2001 From: Michael Fong Date: Tue, 5 Sep 2017 15:32:00 +0800 Subject: [PATCH] [hotfix] [docs] Fix log file name in quick start guide Program output is written to TaskManager logs. This closes #4641 --- docs/quickstart/setup_quickstart.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/quickstart/setup_quickstart.md b/docs/quickstart/setup_quickstart.md index 1b5a1e9b28f..0e4f3d8b316 100644 --- a/docs/quickstart/setup_quickstart.md +++ b/docs/quickstart/setup_quickstart.md @@ -269,7 +269,7 @@ window of processing time, as long as words are floating in. * Words are counted in time windows of 5 seconds (processing time, tumbling - windows) and are printed to `stdout`. Monitor the JobManager's output file + windows) and are printed to `stdout`. Monitor the TaskManager's output file and write some text in `nc` (input is sent to Flink line by line after hitting ): @@ -284,7 +284,7 @@ window of processing time, as long as words are floating in. as words are floating in, e.g.: ~~~bash - $ tail -f log/flink-*-jobmanager-*.out + $ tail -f log/flink-*-taskmanager-*.out lorem : 1 bye : 1 ipsum : 4 -- GitLab