You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by me...@apache.org on 2018/08/09 05:52:22 UTC

[beam-site] 01/02: fix job service startup instruction

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 3a5abf45bfbdac106e4eed540db95ed8bbb4a6df
Author: Thomas Weise <th...@apache.org>
AuthorDate: Wed Aug 8 19:25:50 2018 -0700

    fix job service startup instruction
---
 src/contribute/portability.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/contribute/portability.md b/src/contribute/portability.md
index 4e1df83..4e3be37 100644
--- a/src/contribute/portability.md
+++ b/src/contribute/portability.md
@@ -192,7 +192,7 @@ To run on a separate [Flink cluster](https://ci.apache.org/projects/flink/flink-
 
 1. Start local Flink cluster
 2. Create shaded JobService jar: `./gradlew :beam-runners-flink_2.11-job-server:installShadowDist`
-3. Start JobService with Flink web service endpoint: `java -jar ./runners/flink/job-server/build/install/beam-runners-flink_2.11-job-server-shadow/lib/beam-runners-flink_2.11-job-server-*.jar--job-host=localhost:8099" "--artifacts-dir=/tmp/flink-artifacts" "--flink-master-url=localhost:8081"`
+3. Start JobService with Flink web service endpoint: `java -jar ./runners/flink/job-server/build/install/beam-runners-flink_2.11-job-server-shadow/lib/beam-runners-flink_2.11-job-server-*.jar "--job-host=localhost:8099" "--artifacts-dir=/tmp/flink-artifacts" "--flink-master-url=localhost:8081"`
 4. Submit the pipeline.
 
 Note: A subset of the functionality is also supported in streaming mode; use `--streaming` in the command line to enable it.