You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by da...@apache.org on 2016/12/28 00:41:55 UTC

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

http://git-wip-us.apache.org/repos/asf/beam-site/blob/1e4e170f/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 5132240..ab8723f 100644
--- a/content/get-started/wordcount-example/index.html
+++ b/content/get-started/wordcount-example/index.html
@@ -15,8 +15,8 @@
   <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js"></script>
   <script src="/js/bootstrap.min.js"></script>
   <script src="/js/language-switch.js"></script>
-  <link rel="canonical" href="http://beam.incubator.apache.org/get-started/wordcount-example/" data-proofer-ignore>
-  <link rel="alternate" type="application/rss+xml" title="Apache Beam (incubating)" href="http://beam.incubator.apache.org/feed.xml">
+  <link rel="canonical" href="http://beam.apache.org/get-started/wordcount-example/" data-proofer-ignore>
+  <link rel="alternate" type="application/rss+xml" title="Apache Beam" href="http://beam.apache.org/feed.xml">
   <script>
     (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
     (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
@@ -199,7 +199,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\u2019t perform any error checking; it is intended to only show you the \u201cbare bones\u201d 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\u2019s input and output sources and show other best practices.</p>
 
-<p>To run this example, follow the instructions in the <a href="https://github.com/apache/incubator-beam/blob/master/examples/java/README.md#building-and-running">Beam Examples README</a>. To view the full code, see <strong><a href="https://github.com/apache/incubator-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 <a href="https://github.com/apache/beam/blob/master/examples/java/README.md#building-and-running">Beam Examples README</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>
 
@@ -327,7 +327,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\u2019t 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 <a href="https://github.com/apache/incubator-beam/blob/master/examples/java/README.md#building-and-running">Beam Examples README</a>. To view the full code, see <strong><a href="https://github.com/apache/incubator-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 <a href="https://github.com/apache/beam/blob/master/examples/java/README.md#building-and-running">Beam Examples README</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>
 
@@ -424,7 +424,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 <a href="https://github.com/apache/incubator-beam/blob/master/examples/java/README.md#building-and-running">Beam Examples README</a>. To view the full code, see <strong><a href="https://github.com/apache/incubator-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 <a href="https://github.com/apache/beam/blob/master/examples/java/README.md#building-and-running">Beam Examples README</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>
 
@@ -489,7 +489,7 @@ Figure 1: The pipeline data flow.</p>
 
 <p><code class="highlighter-rouge">PAssert</code> is a set of convenient <code class="highlighter-rouge">PTransform</code>s in the style of Hamcrest\u2019s collection matchers that can be used when writing Pipeline level tests to validate the contents of PCollections. <code class="highlighter-rouge">PAssert</code> is best used in unit tests with small data sets, but is demonstrated here as a teaching tool.</p>
 
-<p>Below, we verify that the set of filtered words matches our expected counts. Note that <code class="highlighter-rouge">PAssert</code> does not provide any output, and that successful completion of the pipeline implies that the expectations were met. See <a href="https://github.com/apache/incubator-beam/blob/master/examples/java/src/test/java/org/apache/beam/examples/DebuggingWordCountTest.java">DebuggingWordCountTest</a> for an example unit test.</p>
+<p>Below, we verify that the set of filtered words matches our expected counts. Note that <code class="highlighter-rouge">PAssert</code> does not provide any output, and that successful completion of the pipeline implies that the expectations were met. See <a href="https://github.com/apache/beam/blob/master/examples/java/src/test/java/org/apache/beam/examples/DebuggingWordCountTest.java">DebuggingWordCountTest</a> for an example unit test.</p>
 
 <div class="language-java highlighter-rouge"><pre class="highlight"><code><span class="kd">public</span> <span class="kd">static</span> <span class="kt">void</span> <span class="nf">main</span><span class="o">(</span><span class="n">String</span><span class="o">[]</span> <span class="n">args</span><span class="o">)</span> <span class="o">{</span>
   <span class="o">...</span>

http://git-wip-us.apache.org/repos/asf/beam-site/blob/1e4e170f/content/getting-started/index.html
----------------------------------------------------------------------
diff --git a/content/getting-started/index.html b/content/getting-started/index.html
index c7b8fc9..593fc12 100644
--- a/content/getting-started/index.html
+++ b/content/getting-started/index.html
@@ -2,9 +2,9 @@
 <html lang="en-US">
 <meta charset="utf-8">
 <title>Redirecting\u2026</title>
-<link rel="canonical" href="http://beam.incubator.apache.org/get-started/quickstart/">
-<meta http-equiv="refresh" content="0; url=http://beam.incubator.apache.org/get-started/quickstart/">
+<link rel="canonical" href="http://beam.apache.org/get-started/quickstart/">
+<meta http-equiv="refresh" content="0; url=http://beam.apache.org/get-started/quickstart/">
 <h1>Redirecting\u2026</h1>
-<a href="http://beam.incubator.apache.org/get-started/quickstart/">Click here if you are not redirected.</a>
-<script>location="http://beam.incubator.apache.org/get-started/quickstart/"</script>
+<a href="http://beam.apache.org/get-started/quickstart/">Click here if you are not redirected.</a>
+<script>location="http://beam.apache.org/get-started/quickstart/"</script>
 </html>

http://git-wip-us.apache.org/repos/asf/beam-site/blob/1e4e170f/content/index.html
----------------------------------------------------------------------
diff --git a/content/index.html b/content/index.html
index 4d8e846..2383f2d 100644
--- a/content/index.html
+++ b/content/index.html
@@ -6,7 +6,7 @@
   <meta http-equiv="X-UA-Compatible" content="IE=edge">
   <meta name="viewport" content="width=device-width, initial-scale=1">
 
-  <title>Apache Beam (incubating)</title>
+  <title>Apache Beam</title>
   <meta name="description" content="Apache Beam is an open source, unified model and set of language-specific SDKs for defining and executing data processing workflows, and also data ingestion and integration flows, supporting Enterprise Integration Patterns (EIPs) and Domain Specific Languages (DSLs). Dataflow pipelines simplify the mechanics of large-scale batch and streaming data processing and can run on a number of runtimes like Apache Flink, Apache Spark, and Google Cloud Dataflow (a cloud service). Beam also brings DSL in different languages, allowing users to easily implement their data integration processes.
 ">
 
@@ -15,8 +15,8 @@
   <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js"></script>
   <script src="/js/bootstrap.min.js"></script>
   <script src="/js/language-switch.js"></script>
-  <link rel="canonical" href="http://beam.incubator.apache.org/" data-proofer-ignore>
-  <link rel="alternate" type="application/rss+xml" title="Apache Beam (incubating)" href="http://beam.incubator.apache.org/feed.xml">
+  <link rel="canonical" href="http://beam.apache.org/" data-proofer-ignore>
+  <link rel="alternate" type="application/rss+xml" title="Apache Beam" href="http://beam.apache.org/feed.xml">
   <script>
     (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
     (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
@@ -144,7 +144,7 @@
     <div class="container" role="main">
 
       <div class="row">
-        <h1 id="apache-beam-incubating">Apache Beam (incubating)</h1>
+        <h1 id="apache-beam">Apache Beam</h1>
 
 <h4 id="apache-beam-provides-an-advanced-unified-programming-model-allowing-you-to-implement-batch-and-streaming-data-processing-jobs-that-can-run-on-any-execution-engine">Apache Beam provides an advanced unified programming model, allowing you to implement batch and streaming data processing jobs that can run on any execution engine.</h4>
 
@@ -201,14 +201,6 @@
   </div>
 </div>
 
-<hr />
-
-<p style="text-align:center"><img align="center" src="https://incubator.apache.org/images/apache-incubator-logo.png" alt="Apache Incubator Logo" /></p>
-
-<p>Apache Beam is an effort undergoing incubation at <a href="http://www.apache.org">The Apache Software Foundation (ASF)</a> sponsored by the Apache Incubator PMC. Incubation is required of all newly accepted projects until a further review indicates that the infrastructure, communications, and decision making process have stabilized in a manner consistent with other successful ASF projects. While incubation status is not necessarily a reflection of the completeness or stability of the code, it does indicate that the project has yet to be fully endorsed by the ASF.</p>
-
-<p>Apache Beam (incubating) is available under <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, version 2.0</a>.</p>
-
       </div>
 
 

http://git-wip-us.apache.org/repos/asf/beam-site/blob/1e4e170f/content/learn/index.html
----------------------------------------------------------------------
diff --git a/content/learn/index.html b/content/learn/index.html
index 922447a..2431768 100644
--- a/content/learn/index.html
+++ b/content/learn/index.html
@@ -2,9 +2,9 @@
 <html lang="en-US">
 <meta charset="utf-8">
 <title>Redirecting\u2026</title>
-<link rel="canonical" href="http://beam.incubator.apache.org/documentation/">
-<meta http-equiv="refresh" content="0; url=http://beam.incubator.apache.org/documentation/">
+<link rel="canonical" href="http://beam.apache.org/documentation/">
+<meta http-equiv="refresh" content="0; url=http://beam.apache.org/documentation/">
 <h1>Redirecting\u2026</h1>
-<a href="http://beam.incubator.apache.org/documentation/">Click here if you are not redirected.</a>
-<script>location="http://beam.incubator.apache.org/documentation/"</script>
+<a href="http://beam.apache.org/documentation/">Click here if you are not redirected.</a>
+<script>location="http://beam.apache.org/documentation/"</script>
 </html>

http://git-wip-us.apache.org/repos/asf/beam-site/blob/1e4e170f/content/learn/presentation-materials/index.html
----------------------------------------------------------------------
diff --git a/content/learn/presentation-materials/index.html b/content/learn/presentation-materials/index.html
index 9b5a0ff..0909ae8 100644
--- a/content/learn/presentation-materials/index.html
+++ b/content/learn/presentation-materials/index.html
@@ -2,9 +2,9 @@
 <html lang="en-US">
 <meta charset="utf-8">
 <title>Redirecting\u2026</title>
-<link rel="canonical" href="http://beam.incubator.apache.org/contribute/presentation-materials/">
-<meta http-equiv="refresh" content="0; url=http://beam.incubator.apache.org/contribute/presentation-materials/">
+<link rel="canonical" href="http://beam.apache.org/contribute/presentation-materials/">
+<meta http-equiv="refresh" content="0; url=http://beam.apache.org/contribute/presentation-materials/">
 <h1>Redirecting\u2026</h1>
-<a href="http://beam.incubator.apache.org/contribute/presentation-materials/">Click here if you are not redirected.</a>
-<script>location="http://beam.incubator.apache.org/contribute/presentation-materials/"</script>
+<a href="http://beam.apache.org/contribute/presentation-materials/">Click here if you are not redirected.</a>
+<script>location="http://beam.apache.org/contribute/presentation-materials/"</script>
 </html>

http://git-wip-us.apache.org/repos/asf/beam-site/blob/1e4e170f/content/learn/programming-guide/index.html
----------------------------------------------------------------------
diff --git a/content/learn/programming-guide/index.html b/content/learn/programming-guide/index.html
index 14bdce8..33aac66 100644
--- a/content/learn/programming-guide/index.html
+++ b/content/learn/programming-guide/index.html
@@ -2,9 +2,9 @@
 <html lang="en-US">
 <meta charset="utf-8">
 <title>Redirecting\u2026</title>
-<link rel="canonical" href="http://beam.incubator.apache.org/documentation/programming-guide/">
-<meta http-equiv="refresh" content="0; url=http://beam.incubator.apache.org/documentation/programming-guide/">
+<link rel="canonical" href="http://beam.apache.org/documentation/programming-guide/">
+<meta http-equiv="refresh" content="0; url=http://beam.apache.org/documentation/programming-guide/">
 <h1>Redirecting\u2026</h1>
-<a href="http://beam.incubator.apache.org/documentation/programming-guide/">Click here if you are not redirected.</a>
-<script>location="http://beam.incubator.apache.org/documentation/programming-guide/"</script>
+<a href="http://beam.apache.org/documentation/programming-guide/">Click here if you are not redirected.</a>
+<script>location="http://beam.apache.org/documentation/programming-guide/"</script>
 </html>

http://git-wip-us.apache.org/repos/asf/beam-site/blob/1e4e170f/content/learn/resources/index.html
----------------------------------------------------------------------
diff --git a/content/learn/resources/index.html b/content/learn/resources/index.html
index fe3ad29..fa0aea2 100644
--- a/content/learn/resources/index.html
+++ b/content/learn/resources/index.html
@@ -2,9 +2,9 @@
 <html lang="en-US">
 <meta charset="utf-8">
 <title>Redirecting\u2026</title>
-<link rel="canonical" href="http://beam.incubator.apache.org/documentation/resources/">
-<meta http-equiv="refresh" content="0; url=http://beam.incubator.apache.org/documentation/resources/">
+<link rel="canonical" href="http://beam.apache.org/documentation/resources/">
+<meta http-equiv="refresh" content="0; url=http://beam.apache.org/documentation/resources/">
 <h1>Redirecting\u2026</h1>
-<a href="http://beam.incubator.apache.org/documentation/resources/">Click here if you are not redirected.</a>
-<script>location="http://beam.incubator.apache.org/documentation/resources/"</script>
+<a href="http://beam.apache.org/documentation/resources/">Click here if you are not redirected.</a>
+<script>location="http://beam.apache.org/documentation/resources/"</script>
 </html>

http://git-wip-us.apache.org/repos/asf/beam-site/blob/1e4e170f/content/learn/runners/capability-matrix/index.html
----------------------------------------------------------------------
diff --git a/content/learn/runners/capability-matrix/index.html b/content/learn/runners/capability-matrix/index.html
index 48f5824..a6de601 100644
--- a/content/learn/runners/capability-matrix/index.html
+++ b/content/learn/runners/capability-matrix/index.html
@@ -2,9 +2,9 @@
 <html lang="en-US">
 <meta charset="utf-8">
 <title>Redirecting\u2026</title>
-<link rel="canonical" href="http://beam.incubator.apache.org/documentation/runners/capability-matrix/">
-<meta http-equiv="refresh" content="0; url=http://beam.incubator.apache.org/documentation/runners/capability-matrix/">
+<link rel="canonical" href="http://beam.apache.org/documentation/runners/capability-matrix/">
+<meta http-equiv="refresh" content="0; url=http://beam.apache.org/documentation/runners/capability-matrix/">
 <h1>Redirecting\u2026</h1>
-<a href="http://beam.incubator.apache.org/documentation/runners/capability-matrix/">Click here if you are not redirected.</a>
-<script>location="http://beam.incubator.apache.org/documentation/runners/capability-matrix/"</script>
+<a href="http://beam.apache.org/documentation/runners/capability-matrix/">Click here if you are not redirected.</a>
+<script>location="http://beam.apache.org/documentation/runners/capability-matrix/"</script>
 </html>

http://git-wip-us.apache.org/repos/asf/beam-site/blob/1e4e170f/content/learn/runners/dataflow/index.html
----------------------------------------------------------------------
diff --git a/content/learn/runners/dataflow/index.html b/content/learn/runners/dataflow/index.html
index 941d0a0..5d9077a 100644
--- a/content/learn/runners/dataflow/index.html
+++ b/content/learn/runners/dataflow/index.html
@@ -2,9 +2,9 @@
 <html lang="en-US">
 <meta charset="utf-8">
 <title>Redirecting\u2026</title>
-<link rel="canonical" href="http://beam.incubator.apache.org/documentation/runners/dataflow/">
-<meta http-equiv="refresh" content="0; url=http://beam.incubator.apache.org/documentation/runners/dataflow/">
+<link rel="canonical" href="http://beam.apache.org/documentation/runners/dataflow/">
+<meta http-equiv="refresh" content="0; url=http://beam.apache.org/documentation/runners/dataflow/">
 <h1>Redirecting\u2026</h1>
-<a href="http://beam.incubator.apache.org/documentation/runners/dataflow/">Click here if you are not redirected.</a>
-<script>location="http://beam.incubator.apache.org/documentation/runners/dataflow/"</script>
+<a href="http://beam.apache.org/documentation/runners/dataflow/">Click here if you are not redirected.</a>
+<script>location="http://beam.apache.org/documentation/runners/dataflow/"</script>
 </html>

http://git-wip-us.apache.org/repos/asf/beam-site/blob/1e4e170f/content/learn/runners/direct/index.html
----------------------------------------------------------------------
diff --git a/content/learn/runners/direct/index.html b/content/learn/runners/direct/index.html
index 563d208..ac7c0fa 100644
--- a/content/learn/runners/direct/index.html
+++ b/content/learn/runners/direct/index.html
@@ -2,9 +2,9 @@
 <html lang="en-US">
 <meta charset="utf-8">
 <title>Redirecting\u2026</title>
-<link rel="canonical" href="http://beam.incubator.apache.org/documentation/runners/direct/">
-<meta http-equiv="refresh" content="0; url=http://beam.incubator.apache.org/documentation/runners/direct/">
+<link rel="canonical" href="http://beam.apache.org/documentation/runners/direct/">
+<meta http-equiv="refresh" content="0; url=http://beam.apache.org/documentation/runners/direct/">
 <h1>Redirecting\u2026</h1>
-<a href="http://beam.incubator.apache.org/documentation/runners/direct/">Click here if you are not redirected.</a>
-<script>location="http://beam.incubator.apache.org/documentation/runners/direct/"</script>
+<a href="http://beam.apache.org/documentation/runners/direct/">Click here if you are not redirected.</a>
+<script>location="http://beam.apache.org/documentation/runners/direct/"</script>
 </html>

http://git-wip-us.apache.org/repos/asf/beam-site/blob/1e4e170f/content/learn/runners/flink/index.html
----------------------------------------------------------------------
diff --git a/content/learn/runners/flink/index.html b/content/learn/runners/flink/index.html
index f793aa1..e0c2448 100644
--- a/content/learn/runners/flink/index.html
+++ b/content/learn/runners/flink/index.html
@@ -2,9 +2,9 @@
 <html lang="en-US">
 <meta charset="utf-8">
 <title>Redirecting\u2026</title>
-<link rel="canonical" href="http://beam.incubator.apache.org/documentation/runners/flink/">
-<meta http-equiv="refresh" content="0; url=http://beam.incubator.apache.org/documentation/runners/flink/">
+<link rel="canonical" href="http://beam.apache.org/documentation/runners/flink/">
+<meta http-equiv="refresh" content="0; url=http://beam.apache.org/documentation/runners/flink/">
 <h1>Redirecting\u2026</h1>
-<a href="http://beam.incubator.apache.org/documentation/runners/flink/">Click here if you are not redirected.</a>
-<script>location="http://beam.incubator.apache.org/documentation/runners/flink/"</script>
+<a href="http://beam.apache.org/documentation/runners/flink/">Click here if you are not redirected.</a>
+<script>location="http://beam.apache.org/documentation/runners/flink/"</script>
 </html>

http://git-wip-us.apache.org/repos/asf/beam-site/blob/1e4e170f/content/learn/runners/spark/index.html
----------------------------------------------------------------------
diff --git a/content/learn/runners/spark/index.html b/content/learn/runners/spark/index.html
index 9a2ab4b..1b9b0a5 100644
--- a/content/learn/runners/spark/index.html
+++ b/content/learn/runners/spark/index.html
@@ -2,9 +2,9 @@
 <html lang="en-US">
 <meta charset="utf-8">
 <title>Redirecting\u2026</title>
-<link rel="canonical" href="http://beam.incubator.apache.org/documentation/runners/spark/">
-<meta http-equiv="refresh" content="0; url=http://beam.incubator.apache.org/documentation/runners/spark/">
+<link rel="canonical" href="http://beam.apache.org/documentation/runners/spark/">
+<meta http-equiv="refresh" content="0; url=http://beam.apache.org/documentation/runners/spark/">
 <h1>Redirecting\u2026</h1>
-<a href="http://beam.incubator.apache.org/documentation/runners/spark/">Click here if you are not redirected.</a>
-<script>location="http://beam.incubator.apache.org/documentation/runners/spark/"</script>
+<a href="http://beam.apache.org/documentation/runners/spark/">Click here if you are not redirected.</a>
+<script>location="http://beam.apache.org/documentation/runners/spark/"</script>
 </html>

http://git-wip-us.apache.org/repos/asf/beam-site/blob/1e4e170f/content/learn/sdks/java/index.html
----------------------------------------------------------------------
diff --git a/content/learn/sdks/java/index.html b/content/learn/sdks/java/index.html
index 60c42ca..c231048 100644
--- a/content/learn/sdks/java/index.html
+++ b/content/learn/sdks/java/index.html
@@ -2,9 +2,9 @@
 <html lang="en-US">
 <meta charset="utf-8">
 <title>Redirecting\u2026</title>
-<link rel="canonical" href="http://beam.incubator.apache.org/documentation/sdks/java/">
-<meta http-equiv="refresh" content="0; url=http://beam.incubator.apache.org/documentation/sdks/java/">
+<link rel="canonical" href="http://beam.apache.org/documentation/sdks/java/">
+<meta http-equiv="refresh" content="0; url=http://beam.apache.org/documentation/sdks/java/">
 <h1>Redirecting\u2026</h1>
-<a href="http://beam.incubator.apache.org/documentation/sdks/java/">Click here if you are not redirected.</a>
-<script>location="http://beam.incubator.apache.org/documentation/sdks/java/"</script>
+<a href="http://beam.apache.org/documentation/sdks/java/">Click here if you are not redirected.</a>
+<script>location="http://beam.apache.org/documentation/sdks/java/"</script>
 </html>

http://git-wip-us.apache.org/repos/asf/beam-site/blob/1e4e170f/content/learn/sdks/javadoc/index.html
----------------------------------------------------------------------
diff --git a/content/learn/sdks/javadoc/index.html b/content/learn/sdks/javadoc/index.html
index f5aaa7b..deaab27 100644
--- a/content/learn/sdks/javadoc/index.html
+++ b/content/learn/sdks/javadoc/index.html
@@ -2,9 +2,9 @@
 <html lang="en-US">
 <meta charset="utf-8">
 <title>Redirecting\u2026</title>
-<link rel="canonical" href="http://beam.incubator.apache.org/documentation/sdks/javadoc/">
-<meta http-equiv="refresh" content="0; url=http://beam.incubator.apache.org/documentation/sdks/javadoc/">
+<link rel="canonical" href="http://beam.apache.org/documentation/sdks/javadoc/">
+<meta http-equiv="refresh" content="0; url=http://beam.apache.org/documentation/sdks/javadoc/">
 <h1>Redirecting\u2026</h1>
-<a href="http://beam.incubator.apache.org/documentation/sdks/javadoc/">Click here if you are not redirected.</a>
-<script>location="http://beam.incubator.apache.org/documentation/sdks/javadoc/"</script>
+<a href="http://beam.apache.org/documentation/sdks/javadoc/">Click here if you are not redirected.</a>
+<script>location="http://beam.apache.org/documentation/sdks/javadoc/"</script>
 </html>

http://git-wip-us.apache.org/repos/asf/beam-site/blob/1e4e170f/content/material/index.html
----------------------------------------------------------------------
diff --git a/content/material/index.html b/content/material/index.html
index 3f395c6..4fc2371 100644
--- a/content/material/index.html
+++ b/content/material/index.html
@@ -2,9 +2,9 @@
 <html lang="en-US">
 <meta charset="utf-8">
 <title>Redirecting\u2026</title>
-<link rel="canonical" href="http://beam.incubator.apache.org/contribute/logos/">
-<meta http-equiv="refresh" content="0; url=http://beam.incubator.apache.org/contribute/logos/">
+<link rel="canonical" href="http://beam.apache.org/contribute/logos/">
+<meta http-equiv="refresh" content="0; url=http://beam.apache.org/contribute/logos/">
 <h1>Redirecting\u2026</h1>
-<a href="http://beam.incubator.apache.org/contribute/logos/">Click here if you are not redirected.</a>
-<script>location="http://beam.incubator.apache.org/contribute/logos/"</script>
+<a href="http://beam.apache.org/contribute/logos/">Click here if you are not redirected.</a>
+<script>location="http://beam.apache.org/contribute/logos/"</script>
 </html>

http://git-wip-us.apache.org/repos/asf/beam-site/blob/1e4e170f/content/privacy_policy/index.html
----------------------------------------------------------------------
diff --git a/content/privacy_policy/index.html b/content/privacy_policy/index.html
index 7ce6108..132aafc 100644
--- a/content/privacy_policy/index.html
+++ b/content/privacy_policy/index.html
@@ -15,8 +15,8 @@
   <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js"></script>
   <script src="/js/bootstrap.min.js"></script>
   <script src="/js/language-switch.js"></script>
-  <link rel="canonical" href="http://beam.incubator.apache.org/privacy_policy/" data-proofer-ignore>
-  <link rel="alternate" type="application/rss+xml" title="Apache Beam (incubating)" href="http://beam.incubator.apache.org/feed.xml">
+  <link rel="canonical" href="http://beam.apache.org/privacy_policy/" data-proofer-ignore>
+  <link rel="alternate" type="application/rss+xml" title="Apache Beam" href="http://beam.apache.org/feed.xml">
   <script>
     (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
     (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),

http://git-wip-us.apache.org/repos/asf/beam-site/blob/1e4e170f/content/project/logos/index.html
----------------------------------------------------------------------
diff --git a/content/project/logos/index.html b/content/project/logos/index.html
index 3f395c6..4fc2371 100644
--- a/content/project/logos/index.html
+++ b/content/project/logos/index.html
@@ -2,9 +2,9 @@
 <html lang="en-US">
 <meta charset="utf-8">
 <title>Redirecting\u2026</title>
-<link rel="canonical" href="http://beam.incubator.apache.org/contribute/logos/">
-<meta http-equiv="refresh" content="0; url=http://beam.incubator.apache.org/contribute/logos/">
+<link rel="canonical" href="http://beam.apache.org/contribute/logos/">
+<meta http-equiv="refresh" content="0; url=http://beam.apache.org/contribute/logos/">
 <h1>Redirecting\u2026</h1>
-<a href="http://beam.incubator.apache.org/contribute/logos/">Click here if you are not redirected.</a>
-<script>location="http://beam.incubator.apache.org/contribute/logos/"</script>
+<a href="http://beam.apache.org/contribute/logos/">Click here if you are not redirected.</a>
+<script>location="http://beam.apache.org/contribute/logos/"</script>
 </html>

http://git-wip-us.apache.org/repos/asf/beam-site/blob/1e4e170f/content/project/team/index.html
----------------------------------------------------------------------
diff --git a/content/project/team/index.html b/content/project/team/index.html
index d13d4b4..98c98e8 100644
--- a/content/project/team/index.html
+++ b/content/project/team/index.html
@@ -2,9 +2,9 @@
 <html lang="en-US">
 <meta charset="utf-8">
 <title>Redirecting\u2026</title>
-<link rel="canonical" href="http://beam.incubator.apache.org/contribute/team/">
-<meta http-equiv="refresh" content="0; url=http://beam.incubator.apache.org/contribute/team/">
+<link rel="canonical" href="http://beam.apache.org/contribute/team/">
+<meta http-equiv="refresh" content="0; url=http://beam.apache.org/contribute/team/">
 <h1>Redirecting\u2026</h1>
-<a href="http://beam.incubator.apache.org/contribute/team/">Click here if you are not redirected.</a>
-<script>location="http://beam.incubator.apache.org/contribute/team/"</script>
+<a href="http://beam.apache.org/contribute/team/">Click here if you are not redirected.</a>
+<script>location="http://beam.apache.org/contribute/team/"</script>
 </html>

http://git-wip-us.apache.org/repos/asf/beam-site/blob/1e4e170f/content/releases/index.html
----------------------------------------------------------------------
diff --git a/content/releases/index.html b/content/releases/index.html
index 19ec996..1c4df7d 100644
--- a/content/releases/index.html
+++ b/content/releases/index.html
@@ -2,9 +2,9 @@
 <html lang="en-US">
 <meta charset="utf-8">
 <title>Redirecting\u2026</title>
-<link rel="canonical" href="http://beam.incubator.apache.org/get-started/downloads/">
-<meta http-equiv="refresh" content="0; url=http://beam.incubator.apache.org/get-started/downloads/">
+<link rel="canonical" href="http://beam.apache.org/get-started/downloads/">
+<meta http-equiv="refresh" content="0; url=http://beam.apache.org/get-started/downloads/">
 <h1>Redirecting\u2026</h1>
-<a href="http://beam.incubator.apache.org/get-started/downloads/">Click here if you are not redirected.</a>
-<script>location="http://beam.incubator.apache.org/get-started/downloads/"</script>
+<a href="http://beam.apache.org/get-started/downloads/">Click here if you are not redirected.</a>
+<script>location="http://beam.apache.org/get-started/downloads/"</script>
 </html>

http://git-wip-us.apache.org/repos/asf/beam-site/blob/1e4e170f/content/source_repository/index.html
----------------------------------------------------------------------
diff --git a/content/source_repository/index.html b/content/source_repository/index.html
index 00a16d7..80fbcba 100644
--- a/content/source_repository/index.html
+++ b/content/source_repository/index.html
@@ -2,9 +2,9 @@
 <html lang="en-US">
 <meta charset="utf-8">
 <title>Redirecting\u2026</title>
-<link rel="canonical" href="http://beam.incubator.apache.org/contribute/source-repository/">
-<meta http-equiv="refresh" content="0; url=http://beam.incubator.apache.org/contribute/source-repository/">
+<link rel="canonical" href="http://beam.apache.org/contribute/source-repository/">
+<meta http-equiv="refresh" content="0; url=http://beam.apache.org/contribute/source-repository/">
 <h1>Redirecting\u2026</h1>
-<a href="http://beam.incubator.apache.org/contribute/source-repository/">Click here if you are not redirected.</a>
-<script>location="http://beam.incubator.apache.org/contribute/source-repository/"</script>
+<a href="http://beam.apache.org/contribute/source-repository/">Click here if you are not redirected.</a>
+<script>location="http://beam.apache.org/contribute/source-repository/"</script>
 </html>

http://git-wip-us.apache.org/repos/asf/beam-site/blob/1e4e170f/content/team/index.html
----------------------------------------------------------------------
diff --git a/content/team/index.html b/content/team/index.html
index d13d4b4..98c98e8 100644
--- a/content/team/index.html
+++ b/content/team/index.html
@@ -2,9 +2,9 @@
 <html lang="en-US">
 <meta charset="utf-8">
 <title>Redirecting\u2026</title>
-<link rel="canonical" href="http://beam.incubator.apache.org/contribute/team/">
-<meta http-equiv="refresh" content="0; url=http://beam.incubator.apache.org/contribute/team/">
+<link rel="canonical" href="http://beam.apache.org/contribute/team/">
+<meta http-equiv="refresh" content="0; url=http://beam.apache.org/contribute/team/">
 <h1>Redirecting\u2026</h1>
-<a href="http://beam.incubator.apache.org/contribute/team/">Click here if you are not redirected.</a>
-<script>location="http://beam.incubator.apache.org/contribute/team/"</script>
+<a href="http://beam.apache.org/contribute/team/">Click here if you are not redirected.</a>
+<script>location="http://beam.apache.org/contribute/team/"</script>
 </html>

http://git-wip-us.apache.org/repos/asf/beam-site/blob/1e4e170f/content/use/beam-overview/index.html
----------------------------------------------------------------------
diff --git a/content/use/beam-overview/index.html b/content/use/beam-overview/index.html
index a6cca54..df2a24a 100644
--- a/content/use/beam-overview/index.html
+++ b/content/use/beam-overview/index.html
@@ -2,9 +2,9 @@
 <html lang="en-US">
 <meta charset="utf-8">
 <title>Redirecting\u2026</title>
-<link rel="canonical" href="http://beam.incubator.apache.org/get-started/beam-overview/">
-<meta http-equiv="refresh" content="0; url=http://beam.incubator.apache.org/get-started/beam-overview/">
+<link rel="canonical" href="http://beam.apache.org/get-started/beam-overview/">
+<meta http-equiv="refresh" content="0; url=http://beam.apache.org/get-started/beam-overview/">
 <h1>Redirecting\u2026</h1>
-<a href="http://beam.incubator.apache.org/get-started/beam-overview/">Click here if you are not redirected.</a>
-<script>location="http://beam.incubator.apache.org/get-started/beam-overview/"</script>
+<a href="http://beam.apache.org/get-started/beam-overview/">Click here if you are not redirected.</a>
+<script>location="http://beam.apache.org/get-started/beam-overview/"</script>
 </html>

http://git-wip-us.apache.org/repos/asf/beam-site/blob/1e4e170f/content/use/index.html
----------------------------------------------------------------------
diff --git a/content/use/index.html b/content/use/index.html
index 748b95e..6b1aa7d 100644
--- a/content/use/index.html
+++ b/content/use/index.html
@@ -2,9 +2,9 @@
 <html lang="en-US">
 <meta charset="utf-8">
 <title>Redirecting\u2026</title>
-<link rel="canonical" href="http://beam.incubator.apache.org/get-started/">
-<meta http-equiv="refresh" content="0; url=http://beam.incubator.apache.org/get-started/">
+<link rel="canonical" href="http://beam.apache.org/get-started/">
+<meta http-equiv="refresh" content="0; url=http://beam.apache.org/get-started/">
 <h1>Redirecting\u2026</h1>
-<a href="http://beam.incubator.apache.org/get-started/">Click here if you are not redirected.</a>
-<script>location="http://beam.incubator.apache.org/get-started/"</script>
+<a href="http://beam.apache.org/get-started/">Click here if you are not redirected.</a>
+<script>location="http://beam.apache.org/get-started/"</script>
 </html>

http://git-wip-us.apache.org/repos/asf/beam-site/blob/1e4e170f/content/use/issue-tracking/index.html
----------------------------------------------------------------------
diff --git a/content/use/issue-tracking/index.html b/content/use/issue-tracking/index.html
index 5a14aaa..a03afd1 100644
--- a/content/use/issue-tracking/index.html
+++ b/content/use/issue-tracking/index.html
@@ -2,9 +2,9 @@
 <html lang="en-US">
 <meta charset="utf-8">
 <title>Redirecting\u2026</title>
-<link rel="canonical" href="http://beam.incubator.apache.org/get-started/support/">
-<meta http-equiv="refresh" content="0; url=http://beam.incubator.apache.org/get-started/support/">
+<link rel="canonical" href="http://beam.apache.org/get-started/support/">
+<meta http-equiv="refresh" content="0; url=http://beam.apache.org/get-started/support/">
 <h1>Redirecting\u2026</h1>
-<a href="http://beam.incubator.apache.org/get-started/support/">Click here if you are not redirected.</a>
-<script>location="http://beam.incubator.apache.org/get-started/support/"</script>
+<a href="http://beam.apache.org/get-started/support/">Click here if you are not redirected.</a>
+<script>location="http://beam.apache.org/get-started/support/"</script>
 </html>

http://git-wip-us.apache.org/repos/asf/beam-site/blob/1e4e170f/content/use/mailing-lists/index.html
----------------------------------------------------------------------
diff --git a/content/use/mailing-lists/index.html b/content/use/mailing-lists/index.html
index 5a14aaa..a03afd1 100644
--- a/content/use/mailing-lists/index.html
+++ b/content/use/mailing-lists/index.html
@@ -2,9 +2,9 @@
 <html lang="en-US">
 <meta charset="utf-8">
 <title>Redirecting\u2026</title>
-<link rel="canonical" href="http://beam.incubator.apache.org/get-started/support/">
-<meta http-equiv="refresh" content="0; url=http://beam.incubator.apache.org/get-started/support/">
+<link rel="canonical" href="http://beam.apache.org/get-started/support/">
+<meta http-equiv="refresh" content="0; url=http://beam.apache.org/get-started/support/">
 <h1>Redirecting\u2026</h1>
-<a href="http://beam.incubator.apache.org/get-started/support/">Click here if you are not redirected.</a>
-<script>location="http://beam.incubator.apache.org/get-started/support/"</script>
+<a href="http://beam.apache.org/get-started/support/">Click here if you are not redirected.</a>
+<script>location="http://beam.apache.org/get-started/support/"</script>
 </html>

http://git-wip-us.apache.org/repos/asf/beam-site/blob/1e4e170f/content/use/mobile-gaming-example/index.html
----------------------------------------------------------------------
diff --git a/content/use/mobile-gaming-example/index.html b/content/use/mobile-gaming-example/index.html
index 0b59be3..6a0e21d 100644
--- a/content/use/mobile-gaming-example/index.html
+++ b/content/use/mobile-gaming-example/index.html
@@ -2,9 +2,9 @@
 <html lang="en-US">
 <meta charset="utf-8">
 <title>Redirecting\u2026</title>
-<link rel="canonical" href="http://beam.incubator.apache.org/get-started/mobile-gaming-example/">
-<meta http-equiv="refresh" content="0; url=http://beam.incubator.apache.org/get-started/mobile-gaming-example/">
+<link rel="canonical" href="http://beam.apache.org/get-started/mobile-gaming-example/">
+<meta http-equiv="refresh" content="0; url=http://beam.apache.org/get-started/mobile-gaming-example/">
 <h1>Redirecting\u2026</h1>
-<a href="http://beam.incubator.apache.org/get-started/mobile-gaming-example/">Click here if you are not redirected.</a>
-<script>location="http://beam.incubator.apache.org/get-started/mobile-gaming-example/"</script>
+<a href="http://beam.apache.org/get-started/mobile-gaming-example/">Click here if you are not redirected.</a>
+<script>location="http://beam.apache.org/get-started/mobile-gaming-example/"</script>
 </html>

http://git-wip-us.apache.org/repos/asf/beam-site/blob/1e4e170f/content/use/quickstart/index.html
----------------------------------------------------------------------
diff --git a/content/use/quickstart/index.html b/content/use/quickstart/index.html
index c7b8fc9..593fc12 100644
--- a/content/use/quickstart/index.html
+++ b/content/use/quickstart/index.html
@@ -2,9 +2,9 @@
 <html lang="en-US">
 <meta charset="utf-8">
 <title>Redirecting\u2026</title>
-<link rel="canonical" href="http://beam.incubator.apache.org/get-started/quickstart/">
-<meta http-equiv="refresh" content="0; url=http://beam.incubator.apache.org/get-started/quickstart/">
+<link rel="canonical" href="http://beam.apache.org/get-started/quickstart/">
+<meta http-equiv="refresh" content="0; url=http://beam.apache.org/get-started/quickstart/">
 <h1>Redirecting\u2026</h1>
-<a href="http://beam.incubator.apache.org/get-started/quickstart/">Click here if you are not redirected.</a>
-<script>location="http://beam.incubator.apache.org/get-started/quickstart/"</script>
+<a href="http://beam.apache.org/get-started/quickstart/">Click here if you are not redirected.</a>
+<script>location="http://beam.apache.org/get-started/quickstart/"</script>
 </html>

http://git-wip-us.apache.org/repos/asf/beam-site/blob/1e4e170f/content/use/releases/index.html
----------------------------------------------------------------------
diff --git a/content/use/releases/index.html b/content/use/releases/index.html
index 19ec996..1c4df7d 100644
--- a/content/use/releases/index.html
+++ b/content/use/releases/index.html
@@ -2,9 +2,9 @@
 <html lang="en-US">
 <meta charset="utf-8">
 <title>Redirecting\u2026</title>
-<link rel="canonical" href="http://beam.incubator.apache.org/get-started/downloads/">
-<meta http-equiv="refresh" content="0; url=http://beam.incubator.apache.org/get-started/downloads/">
+<link rel="canonical" href="http://beam.apache.org/get-started/downloads/">
+<meta http-equiv="refresh" content="0; url=http://beam.apache.org/get-started/downloads/">
 <h1>Redirecting\u2026</h1>
-<a href="http://beam.incubator.apache.org/get-started/downloads/">Click here if you are not redirected.</a>
-<script>location="http://beam.incubator.apache.org/get-started/downloads/"</script>
+<a href="http://beam.apache.org/get-started/downloads/">Click here if you are not redirected.</a>
+<script>location="http://beam.apache.org/get-started/downloads/"</script>
 </html>

http://git-wip-us.apache.org/repos/asf/beam-site/blob/1e4e170f/content/use/wordcount-example/index.html
----------------------------------------------------------------------
diff --git a/content/use/wordcount-example/index.html b/content/use/wordcount-example/index.html
index 6dd9858..c25de22 100644
--- a/content/use/wordcount-example/index.html
+++ b/content/use/wordcount-example/index.html
@@ -2,9 +2,9 @@
 <html lang="en-US">
 <meta charset="utf-8">
 <title>Redirecting\u2026</title>
-<link rel="canonical" href="http://beam.incubator.apache.org/get-started/wordcount-example/">
-<meta http-equiv="refresh" content="0; url=http://beam.incubator.apache.org/get-started/wordcount-example/">
+<link rel="canonical" href="http://beam.apache.org/get-started/wordcount-example/">
+<meta http-equiv="refresh" content="0; url=http://beam.apache.org/get-started/wordcount-example/">
 <h1>Redirecting\u2026</h1>
-<a href="http://beam.incubator.apache.org/get-started/wordcount-example/">Click here if you are not redirected.</a>
-<script>location="http://beam.incubator.apache.org/get-started/wordcount-example/"</script>
+<a href="http://beam.apache.org/get-started/wordcount-example/">Click here if you are not redirected.</a>
+<script>location="http://beam.apache.org/get-started/wordcount-example/"</script>
 </html>