This is an automated email from the ASF dual-hosted git repository. mergebot-role pushed a commit to branch mergebot in repository https://gitbox.apache.org/repos/asf/beam-site.git
commit 3ef7f25211c48aa8ac2c3276dd8b0e25c40b357f Author: Ed Hartwell Goose <[email protected]> AuthorDate: Sat Aug 26 12:21:35 2017 +0100 Don't pass the pom.xml as an input --- src/get-started/wordcount-example.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/get-started/wordcount-example.md b/src/get-started/wordcount-example.md index 9947330..e24fa07 100644 --- a/src/get-started/wordcount-example.md +++ b/src/get-started/wordcount-example.md @@ -509,26 +509,26 @@ instrumenting your pipeline code. {:.runner-direct} ``` $ mvn compile exec:java -Dexec.mainClass=org.apache.beam.examples.DebuggingWordCount \ - -Dexec.args="--inputFile=pom.xml --output=counts" -Pdirect-runner + -Dexec.args="--output=counts" -Pdirect-runner ``` {:.runner-apex} ``` $ mvn compile exec:java -Dexec.mainClass=org.apache.beam.examples.DebuggingWordCount \ - -Dexec.args="--inputFile=pom.xml --output=counts --runner=ApexRunner" -Papex-runner + -Dexec.args="--output=counts --runner=ApexRunner" -Papex-runner ``` {:.runner-flink-local} ``` $ mvn compile exec:java -Dexec.mainClass=org.apache.beam.examples.DebuggingWordCount \ - -Dexec.args="--runner=FlinkRunner --inputFile=pom.xml --output=counts" -Pflink-runner + -Dexec.args="--runner=FlinkRunner --output=counts" -Pflink-runner ``` {:.runner-flink-cluster} ``` $ mvn package exec:java -Dexec.mainClass=org.apache.beam.examples.DebuggingWordCount \ -Dexec.args="--runner=FlinkRunner --flinkMaster=<flink master> --filesToStage=target/word-count-beam-bundled-0.1.jar \ - --inputFile=/path/to/quickstart/pom.xml --output=/tmp/counts" -Pflink-runner + --output=/tmp/counts" -Pflink-runner You can monitor the running job by visiting the Flink dashboard at http://<flink master>:8081 ``` @@ -536,7 +536,7 @@ You can monitor the running job by visiting the Flink dashboard at http://<flink {:.runner-spark} ``` $ mvn compile exec:java -Dexec.mainClass=org.apache.beam.examples.DebuggingWordCount \ - -Dexec.args="--runner=SparkRunner --inputFile=pom.xml --output=counts" -Pspark-runner + -Dexec.args="--runner=SparkRunner --output=counts" -Pspark-runner ``` {:.runner-dataflow} -- To stop receiving notification emails like this one, please contact [email protected].
