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 2015/07/10 13:04:03 UTC

flink git commit: [docs] Fix wordcount example in YARN setup

Repository: flink
Updated Branches:
  refs/heads/master cbde2c2a3 -> 490076a97


[docs] Fix wordcount example in YARN setup

Fix wrong wget call

This closes #897


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

Branch: refs/heads/master
Commit: 490076a97e3a7a969fca46bdeb4007da4e3e6bfa
Parents: cbde2c2
Author: jkirsch <jk...@users.noreply.github.com>
Authored: Fri Jul 10 00:14:35 2015 +0200
Committer: Chiwan Park <ch...@apache.org>
Committed: Fri Jul 10 20:03:28 2015 +0900

----------------------------------------------------------------------
 docs/setup/yarn_setup.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flink/blob/490076a9/docs/setup/yarn_setup.md
----------------------------------------------------------------------
diff --git a/docs/setup/yarn_setup.md b/docs/setup/yarn_setup.md
index 9787179..3234b5e 100644
--- a/docs/setup/yarn_setup.md
+++ b/docs/setup/yarn_setup.md
@@ -177,10 +177,10 @@ Use the *run* action to submit a job to YARN. The client is able to determine th
 **Example**
 
 ~~~bash
-wget -O apache-license-v2.txt http://www.apache.org/licenses/LICENSE-2.0.txt
+wget -O LICENSE-2.0.txt http://www.apache.org/licenses/LICENSE-2.0.txt
 hadoop fs -copyFromLocal LICENSE-2.0.txt hdfs:/// ...
 ./bin/flink run ./examples/flink-java-examples-{{site.version }}-WordCount.jar \
-        hdfs:///..../apache-license-v2.txt hdfs:///.../wordcount-result.txt
+        hdfs:///..../LICENSE-2.0.txt hdfs:///.../wordcount-result.txt
 ~~~
 
 If there is the following error, make sure that all TaskManagers started: