You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by ch...@apache.org on 2017/10/25 10:48:51 UTC

flink git commit: [hotifx][docs][yarn] Add required option -yn to WordCount example command

Repository: flink
Updated Branches:
  refs/heads/master bdd34cc0c -> 9cd8f0595


[hotifx][docs][yarn] Add required option -yn to WordCount example command

This closes #4856.


Project: http://git-wip-us.apache.org/repos/asf/flink/repo
Commit: http://git-wip-us.apache.org/repos/asf/flink/commit/9cd8f059
Tree: http://git-wip-us.apache.org/repos/asf/flink/tree/9cd8f059
Diff: http://git-wip-us.apache.org/repos/asf/flink/diff/9cd8f059

Branch: refs/heads/master
Commit: 9cd8f05956b64b59ca24a75a98d47b9ef084951c
Parents: bdd34cc
Author: gyao <ga...@data-artisans.com>
Authored: Thu Oct 19 10:25:09 2017 +0200
Committer: zentol <ch...@apache.org>
Committed: Wed Oct 25 12:47:55 2017 +0200

----------------------------------------------------------------------
 docs/ops/deployment/aws.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flink/blob/9cd8f059/docs/ops/deployment/aws.md
----------------------------------------------------------------------
diff --git a/docs/ops/deployment/aws.md b/docs/ops/deployment/aws.md
index 165530d..dd9b6c4 100644
--- a/docs/ops/deployment/aws.md
+++ b/docs/ops/deployment/aws.md
@@ -59,7 +59,7 @@ After creating your cluster, you can [connect to the master node](http://docs.aw
 2. Extract the Flink distribution and you are ready to deploy [Flink jobs via YARN](yarn_setup.html) after **setting the Hadoop config directory**:
 
 ```bash
-HADOOP_CONF_DIR=/etc/hadoop/conf bin/flink run -m yarn-cluster examples/streaming/WordCount.jar
+HADOOP_CONF_DIR=/etc/hadoop/conf bin/flink run -m yarn-cluster -yn 1 examples/streaming/WordCount.jar
 ```
 
 {% top %}