Repository: beam-site
Updated Branches:
  refs/heads/asf-site 261e39777 -> 9cc5b2280


Quick start should not default to java quickstart


Project: http://git-wip-us.apache.org/repos/asf/beam-site/repo
Commit: http://git-wip-us.apache.org/repos/asf/beam-site/commit/101e8134
Tree: http://git-wip-us.apache.org/repos/asf/beam-site/tree/101e8134
Diff: http://git-wip-us.apache.org/repos/asf/beam-site/diff/101e8134

Branch: refs/heads/asf-site
Commit: 101e81349945f4c9675373f51bab962ebdcce75f
Parents: 261e397
Author: Ahmet Altay <[email protected]>
Authored: Fri May 12 14:31:12 2017 -0700
Committer: Ahmet Altay <[email protected]>
Committed: Mon May 15 11:18:23 2017 -0700

----------------------------------------------------------------------
 src/documentation/index.md           | 2 +-
 src/get-started/index.md             | 2 +-
 src/get-started/wordcount-example.md | 6 +++---
 src/index.md                         | 2 +-
 4 files changed, 6 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/beam-site/blob/101e8134/src/documentation/index.md
----------------------------------------------------------------------
diff --git a/src/documentation/index.md b/src/documentation/index.md
index 03fb43b..9cdd547 100644
--- a/src/documentation/index.md
+++ b/src/documentation/index.md
@@ -48,4 +48,4 @@ A Beam Runner runs a Beam pipeline on a specific (often 
distributed) data proces
 
 Beam is designed to enable pipelines to be portable across different runners. 
However, given every runner has different capabilities, they also have 
different abilities to implement the core concepts in the Beam model. The 
[Capability Matrix]({{ site.baseurl 
}}/documentation/runners/capability-matrix/) provides a detailed comparison of 
runner functionality.
 
-Once you have chosen which runner to use, see that runner's page for more 
information about any initial runner-specific setup as well as any required or 
optional `PipelineOptions` for configuring it's execution. You may also want to 
refer back to the [Quickstart]({{ site.baseurl }}/get-started/quickstart/) for 
instructions on executing the sample WordCount pipeline.
+Once you have chosen which runner to use, see that runner's page for more 
information about any initial runner-specific setup as well as any required or 
optional `PipelineOptions` for configuring it's execution. You may also want to 
refer back to the Quickstart for [Java]({{ site.baseurl 
}}/get-started/quickstart-java) or [Python]({{ site.baseurl 
}}/get-started/quickstart-py) for instructions on executing the sample 
WordCount pipeline.

http://git-wip-us.apache.org/repos/asf/beam-site/blob/101e8134/src/get-started/index.md
----------------------------------------------------------------------
diff --git a/src/get-started/index.md b/src/get-started/index.md
index 69831ed..4748536 100644
--- a/src/get-started/index.md
+++ b/src/get-started/index.md
@@ -14,7 +14,7 @@ Learn to use Beam to create data processing pipelines that 
run on supported proc
 
 Learn about the Beam model, the currently available Beam SDKs and Runners, and 
Beam's native I/O connectors.
 
-#### [Quickstart]({{ site.baseurl }}/get-started/quickstart/)
+#### Quickstart for [Java]({{ site.baseurl }}/get-started/quickstart-java) or 
[Python]({{ site.baseurl }}/get-started/quickstart-py)
 
 Learn how to set up a Beam project and run a simple example Beam pipeline on 
your local machine.
 

http://git-wip-us.apache.org/repos/asf/beam-site/blob/101e8134/src/get-started/wordcount-example.md
----------------------------------------------------------------------
diff --git a/src/get-started/wordcount-example.md 
b/src/get-started/wordcount-example.md
index 19a82d7..503f930 100644
--- a/src/get-started/wordcount-example.md
+++ b/src/get-started/wordcount-example.md
@@ -31,7 +31,7 @@ Each WordCount example introduces different concepts in the 
Beam programming mod
 
 Minimal WordCount demonstrates a simple pipeline that can read from a text 
file, apply transforms to tokenize and count the words, and write the data to 
an output text file. This example hard-codes the locations for its input and 
output files and doesn't perform any error checking; it is intended to only 
show you the "bare bones" of creating a Beam pipeline. This lack of 
parameterization makes this particular pipeline less portable across different 
runners than standard Beam pipelines. In later examples, we will parameterize 
the pipeline's input and output sources and show other best practices.
 
-To run this example, follow the instructions in the Quickstart [java]({{ 
site.baseurl }}/get-started/quickstart-java) or [python]({{ site.baseurl 
}}/get-started/quickstart-py). To view the full code, see 
**[MinimalWordCount](https://github.com/apache/beam/blob/master/examples/java/src/main/java/org/apache/beam/examples/MinimalWordCount.java).**
+To run this example, follow the instructions in the Quickstart for [Java]({{ 
site.baseurl }}/get-started/quickstart-java) or [Python]({{ site.baseurl 
}}/get-started/quickstart-py). To view the full code, see 
**[MinimalWordCount](https://github.com/apache/beam/blob/master/examples/java/src/main/java/org/apache/beam/examples/MinimalWordCount.java).**
 
 **Key Concepts:**
 
@@ -186,7 +186,7 @@ This WordCount example introduces a few recommended 
programming practices that c
 
 This section assumes that you have a good understanding of the basic concepts 
in building a pipeline. If you feel that you aren't at that point yet, read the 
above section, [Minimal WordCount](#minimalwordcount).
 
-To run this example, follow the instructions in the Quickstart [java]({{ 
site.baseurl }}/get-started/quickstart-java) or [python]({{ site.baseurl 
}}/get-started/quickstart-py). To view the full code, see 
**[WordCount](https://github.com/apache/beam/blob/master/examples/java/src/main/java/org/apache/beam/examples/WordCount.java).**
+To run this example, follow the instructions in the Quickstart for [Java]({{ 
site.baseurl }}/get-started/quickstart-java) or [Python]({{ site.baseurl 
}}/get-started/quickstart-py). To view the full code, see 
**[WordCount](https://github.com/apache/beam/blob/master/examples/java/src/main/java/org/apache/beam/examples/WordCount.java).**
 
 **New Concepts:**
 
@@ -289,7 +289,7 @@ public static void main(String[] args) {
 
 The Debugging WordCount example demonstrates some best practices for 
instrumenting your pipeline code.
 
-To run this example, follow the instructions in the Quickstart [java]({{ 
site.baseurl }}/get-started/quickstart-java) or [python]({{ site.baseurl 
}}/get-started/quickstart-py). To view the full code, see 
**[DebuggingWordCount](https://github.com/apache/beam/blob/master/examples/java/src/main/java/org/apache/beam/examples/DebuggingWordCount.java).**
+To run this example, follow the instructions in the Quickstart for [Java]({{ 
site.baseurl }}/get-started/quickstart-java) or [Python]({{ site.baseurl 
}}/get-started/quickstart-py). To view the full code, see 
**[DebuggingWordCount](https://github.com/apache/beam/blob/master/examples/java/src/main/java/org/apache/beam/examples/DebuggingWordCount.java).**
 
 **New Concepts:**
 

http://git-wip-us.apache.org/repos/asf/beam-site/blob/101e8134/src/index.md
----------------------------------------------------------------------
diff --git a/src/index.md b/src/index.md
index 535051f..be09975 100644
--- a/src/index.md
+++ b/src/index.md
@@ -13,7 +13,7 @@ Apache Beam is:
 
 ## Get Started
 
-To use Beam for your data processing tasks, start by reading the [Beam 
Overview]({{ site.baseurl }}/get-started/beam-overview) and performing the 
steps in the [Quickstart]({{ site.baseurl }}/get-started/quickstart). Then dive 
into the [Documentation]({{ site.baseurl }}/documentation/) section for 
in-depth concepts and reference materials for the Beam model, SDKs, and 
runners.                                    
+To use Beam for your data processing tasks, start by reading the [Beam 
Overview]({{ site.baseurl }}/get-started/beam-overview) and performing the 
steps in the Quickstart for [Java]({{ site.baseurl 
}}/get-started/quickstart-java) or [Python]({{ site.baseurl 
}}/get-started/quickstart-py). Then dive into the [Documentation]({{ 
site.baseurl }}/documentation/) section for in-depth concepts and reference 
materials for the Beam model, SDKs, and runners.                                
    
 
 ## Contribute 
 

Reply via email to