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 4926ca9481293d5d9c7a2b77cdbc3ecd63b15dac Author: Etienne Chauchot <[email protected]> AuthorDate: Thu Mar 29 10:15:29 2018 +0200 Make gs paths coherent for runs on dataflow runner --- src/documentation/sdks/nexmark.md | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/src/documentation/sdks/nexmark.md b/src/documentation/sdks/nexmark.md index 1c4942a..5e86cd7 100644 --- a/src/documentation/sdks/nexmark.md +++ b/src/documentation/sdks/nexmark.md @@ -173,10 +173,9 @@ Available suites are: --project=<your project> \ --zone=<your zone> \ --workerMachineType=n1-highmem-8 \ - --stagingLocation=<a gs path for staging> \ + --stagingLocation=gs://<a gs path for staging> \ --runner=DataflowRunner \ - --tempLocation=gs://[your temp location] \ - --stagingLocation=gs://[your staging location] \ + --tempLocation=gs://<a gs path for temporary files> \ --filesToStage=target/beam-sdks-java-nexmark-{{ site.release_latest }}.jar ### Direct runner specific configuration @@ -476,7 +475,7 @@ java -cp sdks/java/nexmark/target/beam-sdks-java-nexmark-bundled-{{ site.release --project=<your project> \ --zone=<your zone> \ --workerMachineType=n1-highmem-8 \ - --stagingLocation=<a gs path for staging> \ + --stagingLocation=gs://<a gs path for staging> \ --streaming=true \ --sourceType=PUBSUB \ --pubSubMode=PUBLISH_ONLY \ @@ -510,7 +509,7 @@ java -cp sdks/java/nexmark/target/beam-sdks-java-nexmark-bundled-{{ site.release --project=<your project> \ --zone=<your zone> \ --workerMachineType=n1-highmem-8 \ - --stagingLocation=<a gs path for staging> \ + --stagingLocation=gs://<a gs path for staging> \ --streaming=true \ --sourceType=PUBSUB \ --pubSubMode=SUBSCRIBE_ONLY \ @@ -522,7 +521,7 @@ java -cp sdks/java/nexmark/target/beam-sdks-java-nexmark-bundled-{{ site.release --maxNumWorkers=64 \ --suite=SMOKE \ --usePubsubPublishTime=true \ - --outputPath=<a gs path under which log files will be written> \ + --outputPath=gs://<a gs path under which log files will be written> \ --windowSizeSec=600 \ --occasionalDelaySec=3600 \ --maxLogEvents=10000 \ -- To stop receiving notification emails like this one, please contact [email protected].
