Skip to content

Commit

Permalink
[docs] Fix wordcount example in YARN setup
Browse files Browse the repository at this point in the history
Fix wrong wget call

This closes apache#897
  • Loading branch information
jkirsch authored and chiwanpark committed Jul 10, 2015
1 parent cbde2c2 commit 490076a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/setup/yarn_setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 490076a

Please sign in to comment.