You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by al...@apache.org on 2017/05/15 18:21:47 UTC

[1/3] beam-site git commit: Quick start should not default to java quickstart

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 <al...@google.com>
Authored: Fri May 12 14:31:12 2017 -0700
Committer: Ahmet Altay <al...@google.com>
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 
 


[3/3] beam-site git commit: This closes #242

Posted by al...@apache.org.
This closes #242


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

Branch: refs/heads/asf-site
Commit: 9cc5b2280143f8834d292ca7dfad68d46c32b2ab
Parents: 261e397 30a9303
Author: Ahmet Altay <al...@google.com>
Authored: Mon May 15 11:21:29 2017 -0700
Committer: Ahmet Altay <al...@google.com>
Committed: Mon May 15 11:21:29 2017 -0700

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



[2/3] beam-site git commit: Regenerate website

Posted by al...@apache.org.
Regenerate website


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

Branch: refs/heads/asf-site
Commit: 30a93035d450b23e45a64fb8d884b4d57e861707
Parents: 101e813
Author: Ahmet Altay <al...@google.com>
Authored: Mon May 15 11:21:28 2017 -0700
Committer: Ahmet Altay <al...@google.com>
Committed: Mon May 15 11:21:28 2017 -0700

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


http://git-wip-us.apache.org/repos/asf/beam-site/blob/30a93035/content/documentation/index.html
----------------------------------------------------------------------
diff --git a/content/documentation/index.html b/content/documentation/index.html
index 7d006b8..1399ac2 100644
--- a/content/documentation/index.html
+++ b/content/documentation/index.html
@@ -200,7 +200,7 @@
 
 <p>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 <a href="/documentation/runners/capability-matrix/">Capability Matrix</a> provides a detailed comparison of runner functionality.</p>
 
-<p>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 <code class="highlighter-rouge">PipelineOptions</code> for configuring it’s execution. You may also want to refer back to the <a href="/get-started/quickstart/">Quickstart</a> for instructions on executing the sample WordCount pipeline.</p>
+<p>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 <code class="highlighter-rouge">PipelineOptions</code> for configuring it’s execution. You may also want to refer back to the Quickstart for <a href="/get-started/quickstart-java">Java</a> or <a href="/get-started/quickstart-py">Python</a> for instructions on executing the sample WordCount pipeline.</p>
 
       </div>
 

http://git-wip-us.apache.org/repos/asf/beam-site/blob/30a93035/content/get-started/index.html
----------------------------------------------------------------------
diff --git a/content/get-started/index.html b/content/get-started/index.html
index b33241c..bfcd605 100644
--- a/content/get-started/index.html
+++ b/content/get-started/index.html
@@ -158,7 +158,7 @@
 
 <p>Learn about the Beam model, the currently available Beam SDKs and Runners, and Beam’s native I/O connectors.</p>
 
-<h4 id="quickstartget-startedquickstart"><a href="/get-started/quickstart/">Quickstart</a></h4>
+<h4 id="quickstart-for-javaget-startedquickstart-java-or-pythonget-startedquickstart-py">Quickstart for <a href="/get-started/quickstart-java">Java</a> or <a href="/get-started/quickstart-py">Python</a></h4>
 
 <p>Learn how to set up a Beam project and run a simple example Beam pipeline on your local machine.</p>
 

http://git-wip-us.apache.org/repos/asf/beam-site/blob/30a93035/content/get-started/wordcount-example/index.html
----------------------------------------------------------------------
diff --git a/content/get-started/wordcount-example/index.html b/content/get-started/wordcount-example/index.html
index 333cfb9..f0c027b 100644
--- a/content/get-started/wordcount-example/index.html
+++ b/content/get-started/wordcount-example/index.html
@@ -211,7 +211,7 @@
 
 <p>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.</p>
 
-<p>To run this example, follow the instructions in the Quickstart <a href="/get-started/quickstart-java">java</a> or <a href="/get-started/quickstart-py">python</a>. To view the full code, see <strong><a href="https://github.com/apache/beam/blob/master/examples/java/src/main/java/org/apache/beam/examples/MinimalWordCount.java">MinimalWordCount</a>.</strong></p>
+<p>To run this example, follow the instructions in the Quickstart for <a href="/get-started/quickstart-java">Java</a> or <a href="/get-started/quickstart-py">Python</a>. To view the full code, see <strong><a href="https://github.com/apache/beam/blob/master/examples/java/src/main/java/org/apache/beam/examples/MinimalWordCount.java">MinimalWordCount</a>.</strong></p>
 
 <p><strong>Key Concepts:</strong></p>
 
@@ -383,7 +383,7 @@ Figure 1: The pipeline data flow.</p>
 
 <p>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, <a href="#minimalwordcount">Minimal WordCount</a>.</p>
 
-<p>To run this example, follow the instructions in the Quickstart <a href="/get-started/quickstart-java">java</a> or <a href="/get-started/quickstart-py">python</a>. To view the full code, see <strong><a href="https://github.com/apache/beam/blob/master/examples/java/src/main/java/org/apache/beam/examples/WordCount.java">WordCount</a>.</strong></p>
+<p>To run this example, follow the instructions in the Quickstart for <a href="/get-started/quickstart-java">Java</a> or <a href="/get-started/quickstart-py">Python</a>. To view the full code, see <strong><a href="https://github.com/apache/beam/blob/master/examples/java/src/main/java/org/apache/beam/examples/WordCount.java">WordCount</a>.</strong></p>
 
 <p><strong>New Concepts:</strong></p>
 
@@ -514,7 +514,7 @@ Figure 1: The pipeline data flow.</p>
 
 <p>The Debugging WordCount example demonstrates some best practices for instrumenting your pipeline code.</p>
 
-<p>To run this example, follow the instructions in the Quickstart <a href="/get-started/quickstart-java">java</a> or <a href="/get-started/quickstart-py">python</a>. To view the full code, see <strong><a href="https://github.com/apache/beam/blob/master/examples/java/src/main/java/org/apache/beam/examples/DebuggingWordCount.java">DebuggingWordCount</a>.</strong></p>
+<p>To run this example, follow the instructions in the Quickstart for <a href="/get-started/quickstart-java">Java</a> or <a href="/get-started/quickstart-py">Python</a>. To view the full code, see <strong><a href="https://github.com/apache/beam/blob/master/examples/java/src/main/java/org/apache/beam/examples/DebuggingWordCount.java">DebuggingWordCount</a>.</strong></p>
 
 <p><strong>New Concepts:</strong></p>
 

http://git-wip-us.apache.org/repos/asf/beam-site/blob/30a93035/content/index.html
----------------------------------------------------------------------
diff --git a/content/index.html b/content/index.html
index 7f896cf..1ac56df 100644
--- a/content/index.html
+++ b/content/index.html
@@ -164,7 +164,7 @@
 
 <h2 id="get-started">Get Started</h2>
 
-<p>To use Beam for your data processing tasks, start by reading the <a href="/get-started/beam-overview">Beam Overview</a> and performing the steps in the <a href="/get-started/quickstart">Quickstart</a>. Then dive into the <a href="/documentation/">Documentation</a> section for in-depth concepts and reference materials for the Beam model, SDKs, and runners.</p>
+<p>To use Beam for your data processing tasks, start by reading the <a href="/get-started/beam-overview">Beam Overview</a> and performing the steps in the Quickstart for <a href="/get-started/quickstart-java">Java</a> or <a href="/get-started/quickstart-py">Python</a>. Then dive into the <a href="/documentation/">Documentation</a> section for in-depth concepts and reference materials for the Beam model, SDKs, and runners.</p>
 
 <h2 id="contribute">Contribute</h2>