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:53 UTC

[1/6] beam-site git commit: Remove incubating references

Repository: beam-site
Updated Branches:
  refs/heads/asf-site 40c81993f -> dbf665fd9


http://git-wip-us.apache.org/repos/asf/beam-site/blob/50e37931/src/index.md
----------------------------------------------------------------------
diff --git a/src/index.md b/src/index.md
index e5d47bd..bb51dfd 100644
--- a/src/index.md
+++ b/src/index.md
@@ -2,7 +2,7 @@
 layout: default
 ---
 
-# Apache Beam (incubating)
+# Apache Beam
 
 #### 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.
 
@@ -35,11 +35,3 @@ Beam is an [Apache Software Foundation](http://www.apache.org) project, availabl
     <script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+"://platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>
   </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>
-
-Apache Beam is an effort undergoing incubation at [The Apache Software Foundation (ASF)](http://www.apache.org) 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.
-
-Apache Beam (incubating) is available under [Apache License, version 2.0](http://www.apache.org/licenses/LICENSE-2.0).

http://git-wip-us.apache.org/repos/asf/beam-site/blob/50e37931/tools/common_job_properties.groovy
----------------------------------------------------------------------
diff --git a/tools/common_job_properties.groovy b/tools/common_job_properties.groovy
index 6e30023..6bc3d14 100644
--- a/tools/common_job_properties.groovy
+++ b/tools/common_job_properties.groovy
@@ -7,7 +7,7 @@ class common_job_properties {
 
     // GitHub project.
     context.properties {
-      githubProjectUrl('https://github.com/apache/incubator-beam-site/')
+      githubProjectUrl('https://github.com/apache/beam-site/')
     }
 
     // Restrict this project to run only on Jenkins executors dedicated to the
@@ -23,7 +23,7 @@ class common_job_properties {
     context.scm {
       git {
         remote {
-          url('https://github.com/apache/incubator-beam-site.git')
+          url('https://github.com/apache/beam-site.git')
           refspec('+refs/heads/*:refs/remotes/origin/* ' +
                   '+refs/pull/*:refs/remotes/origin/pr/*')
         }

http://git-wip-us.apache.org/repos/asf/beam-site/blob/50e37931/tools/job_seed.groovy
----------------------------------------------------------------------
diff --git a/tools/job_seed.groovy b/tools/job_seed.groovy
index a240b6c..7d77941 100644
--- a/tools/job_seed.groovy
+++ b/tools/job_seed.groovy
@@ -27,6 +27,6 @@ job('beam_SeedJob_Website') {
 
   publishers {
     // Notify the mailing list for each failed build.
-    mailer('dev@beam.incubator.apache.org', false, false)
+    mailer('dev@beam.apache.org', false, false)
   }
 }


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

Posted by da...@apache.org.
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>


[6/6] beam-site git commit: This closes #112

Posted by da...@apache.org.
This closes #112


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

Branch: refs/heads/asf-site
Commit: dbf665fd9e9c100443dabde83ff8b5c604772d6a
Parents: 40c8199 1e4e170
Author: Davor Bonaci <da...@google.com>
Authored: Tue Dec 27 16:41:26 2016 -0800
Committer: Davor Bonaci <da...@google.com>
Committed: Tue Dec 27 16:41:26 2016 -0800

----------------------------------------------------------------------
 README.md                                       |  6 +-
 _config.yml                                     |  4 +-
 .../2016/03/17/capability-matrix.html           |  6 +-
 .../2016/04/03/presentation-materials.html      |  6 +-
 .../sdk/2016/02/25/python-sdk-now-public.html   |  4 +-
 .../beam/release/2016/06/15/first-release.html  |  4 +-
 .../10/11/strata-hadoop-world-and-beam.html     |  8 +--
 .../website/2016/02/22/beam-has-a-logo.html     |  4 +-
 .../blog/2016/05/18/splitAtFraction-method.html |  6 +-
 .../05/27/where-is-my-pcollection-dot-map.html  |  4 +-
 .../06/13/flink-batch-runner-milestone.html     |  4 +-
 content/blog/2016/08/03/six-months.html         |  4 +-
 content/blog/2016/10/20/test-stream.html        | 10 ++--
 content/blog/index.html                         |  6 +-
 content/capability-matrix/index.html            |  8 +--
 content/coming-soon.html                        |  6 +-
 .../contribute/contribution-guide/index.html    | 38 ++++++------
 content/contribute/design-principles/index.html |  4 +-
 content/contribute/index.html                   |  4 +-
 content/contribute/logos/index.html             |  4 +-
 content/contribute/maturity-model/index.html    | 18 +++---
 .../presentation-materials/index.html           | 12 ++--
 content/contribute/release-guide/index.html     | 14 ++---
 content/contribute/source-repository/index.html | 10 ++--
 content/contribute/team/index.html              |  4 +-
 content/contribute/testing/index.html           | 56 +++++++++---------
 content/contribute/work-in-progress/index.html  | 14 ++---
 content/contribution-guide/index.html           |  8 +--
 content/docs/contribute.html                    |  8 +--
 content/docs/learn/index.html                   |  8 +--
 content/docs/learn/programming-guide/index.html |  8 +--
 content/docs/use/beam-overview/index.html       |  8 +--
 content/docs/use/index.html                     |  8 +--
 content/documentation/index.html                |  4 +-
 .../pipelines/create-your-pipeline/index.html   |  4 +-
 .../pipelines/design-your-pipeline/index.html   |  4 +-
 .../pipelines/test-your-pipeline/index.html     | 12 ++--
 .../documentation/programming-guide/index.html  | 14 ++---
 content/documentation/resources/index.html      |  4 +-
 content/documentation/runners/apex/index.html   |  4 +-
 .../runners/capability-matrix/index.html        |  6 +-
 .../documentation/runners/dataflow/index.html   |  6 +-
 content/documentation/runners/direct/index.html |  8 +--
 content/documentation/runners/flink/index.html  |  6 +-
 content/documentation/runners/spark/index.html  |  4 +-
 content/documentation/sdks/java/index.html      |  4 +-
 content/documentation/sdks/python/index.html    |  4 +-
 content/feed.xml                                | 62 ++++++++++----------
 content/get-started/beam-overview/index.html    |  4 +-
 content/get-started/downloads/index.html        |  4 +-
 content/get-started/index.html                  |  4 +-
 .../mobile-gaming-example/index.html            | 16 ++---
 content/get-started/quickstart/index.html       |  4 +-
 content/get-started/releases/index.html         |  8 +--
 content/get-started/support/index.html          | 22 +++----
 .../get-started/wordcount-example/index.html    | 12 ++--
 content/getting-started/index.html              |  8 +--
 content/index.html                              | 16 ++---
 content/learn/index.html                        |  8 +--
 content/learn/presentation-materials/index.html |  8 +--
 content/learn/programming-guide/index.html      |  8 +--
 content/learn/resources/index.html              |  8 +--
 .../learn/runners/capability-matrix/index.html  |  8 +--
 content/learn/runners/dataflow/index.html       |  8 +--
 content/learn/runners/direct/index.html         |  8 +--
 content/learn/runners/flink/index.html          |  8 +--
 content/learn/runners/spark/index.html          |  8 +--
 content/learn/sdks/java/index.html              |  8 +--
 content/learn/sdks/javadoc/index.html           |  8 +--
 content/material/index.html                     |  8 +--
 content/privacy_policy/index.html               |  4 +-
 content/project/logos/index.html                |  8 +--
 content/project/team/index.html                 |  8 +--
 content/releases/index.html                     |  8 +--
 content/source_repository/index.html            |  8 +--
 content/team/index.html                         |  8 +--
 content/use/beam-overview/index.html            |  8 +--
 content/use/index.html                          |  8 +--
 content/use/issue-tracking/index.html           |  8 +--
 content/use/mailing-lists/index.html            |  8 +--
 content/use/mobile-gaming-example/index.html    |  8 +--
 content/use/quickstart/index.html               |  8 +--
 content/use/releases/index.html                 |  8 +--
 content/use/wordcount-example/index.html        |  8 +--
 src/_posts/2016-03-17-capability-matrix.md      |  2 +-
 src/_posts/2016-04-03-presentation-materials.md |  2 +-
 src/_posts/2016-05-18-splitAtFraction-method.md |  2 +-
 .../2016-10-12-strata-hadoop-world-and-beam.md  |  4 +-
 src/_posts/2016-10-20-test-stream.md            |  6 +-
 src/contribute/contribution-guide.md            | 34 +++++------
 src/contribute/maturity-model.md                | 14 ++---
 src/contribute/presentation-materials.md        |  8 +--
 src/contribute/release-guide.md                 | 10 ++--
 src/contribute/source-repository.md             |  6 +-
 src/contribute/testing.md                       | 52 ++++++++--------
 src/contribute/work-in-progress.md              |  6 +-
 .../pipelines/test-your-pipeline.md             |  8 +--
 src/documentation/programming-guide.md          | 10 ++--
 src/documentation/runners/capability-matrix.md  |  2 +-
 src/documentation/runners/dataflow.md           |  2 +-
 src/documentation/runners/direct.md             |  4 +-
 src/documentation/runners/flink.md              |  2 +-
 src/get-started/mobile-gaming-example.md        | 12 ++--
 src/get-started/support.md                      | 18 +++---
 src/get-started/wordcount-example.md            |  8 +--
 src/index.md                                    | 10 +---
 tools/common_job_properties.groovy              |  4 +-
 tools/job_seed.groovy                           |  2 +-
 108 files changed, 488 insertions(+), 504 deletions(-)
----------------------------------------------------------------------



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

Posted by da...@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/1e4e170f
Tree: http://git-wip-us.apache.org/repos/asf/beam-site/tree/1e4e170f
Diff: http://git-wip-us.apache.org/repos/asf/beam-site/diff/1e4e170f

Branch: refs/heads/asf-site
Commit: 1e4e170fc375d1d06609c3da7b6c033921b5b92e
Parents: 50e3793
Author: Davor Bonaci <da...@google.com>
Authored: Tue Dec 27 16:41:26 2016 -0800
Committer: Davor Bonaci <da...@google.com>
Committed: Tue Dec 27 16:41:26 2016 -0800

----------------------------------------------------------------------
 .../2016/03/17/capability-matrix.html           |  6 +-
 .../2016/04/03/presentation-materials.html      |  6 +-
 .../sdk/2016/02/25/python-sdk-now-public.html   |  4 +-
 .../beam/release/2016/06/15/first-release.html  |  4 +-
 .../10/11/strata-hadoop-world-and-beam.html     |  8 +--
 .../website/2016/02/22/beam-has-a-logo.html     |  4 +-
 .../blog/2016/05/18/splitAtFraction-method.html |  6 +-
 .../05/27/where-is-my-pcollection-dot-map.html  |  4 +-
 .../06/13/flink-batch-runner-milestone.html     |  4 +-
 content/blog/2016/08/03/six-months.html         |  4 +-
 content/blog/2016/10/20/test-stream.html        | 10 ++--
 content/blog/index.html                         |  6 +-
 content/capability-matrix/index.html            |  8 +--
 content/coming-soon.html                        |  6 +-
 .../contribute/contribution-guide/index.html    | 38 ++++++------
 content/contribute/design-principles/index.html |  4 +-
 content/contribute/index.html                   |  4 +-
 content/contribute/logos/index.html             |  4 +-
 content/contribute/maturity-model/index.html    | 18 +++---
 .../presentation-materials/index.html           | 12 ++--
 content/contribute/release-guide/index.html     | 14 ++---
 content/contribute/source-repository/index.html | 10 ++--
 content/contribute/team/index.html              |  4 +-
 content/contribute/testing/index.html           | 56 +++++++++---------
 content/contribute/work-in-progress/index.html  | 14 ++---
 content/contribution-guide/index.html           |  8 +--
 content/docs/contribute.html                    |  8 +--
 content/docs/learn/index.html                   |  8 +--
 content/docs/learn/programming-guide/index.html |  8 +--
 content/docs/use/beam-overview/index.html       |  8 +--
 content/docs/use/index.html                     |  8 +--
 content/documentation/index.html                |  4 +-
 .../pipelines/create-your-pipeline/index.html   |  4 +-
 .../pipelines/design-your-pipeline/index.html   |  4 +-
 .../pipelines/test-your-pipeline/index.html     | 12 ++--
 .../documentation/programming-guide/index.html  | 14 ++---
 content/documentation/resources/index.html      |  4 +-
 content/documentation/runners/apex/index.html   |  4 +-
 .../runners/capability-matrix/index.html        |  6 +-
 .../documentation/runners/dataflow/index.html   |  6 +-
 content/documentation/runners/direct/index.html |  8 +--
 content/documentation/runners/flink/index.html  |  6 +-
 content/documentation/runners/spark/index.html  |  4 +-
 content/documentation/sdks/java/index.html      |  4 +-
 content/documentation/sdks/python/index.html    |  4 +-
 content/feed.xml                                | 62 ++++++++++----------
 content/get-started/beam-overview/index.html    |  4 +-
 content/get-started/downloads/index.html        |  4 +-
 content/get-started/index.html                  |  4 +-
 .../mobile-gaming-example/index.html            | 16 ++---
 content/get-started/quickstart/index.html       |  4 +-
 content/get-started/releases/index.html         |  8 +--
 content/get-started/support/index.html          | 22 +++----
 .../get-started/wordcount-example/index.html    | 12 ++--
 content/getting-started/index.html              |  8 +--
 content/index.html                              | 16 ++---
 content/learn/index.html                        |  8 +--
 content/learn/presentation-materials/index.html |  8 +--
 content/learn/programming-guide/index.html      |  8 +--
 content/learn/resources/index.html              |  8 +--
 .../learn/runners/capability-matrix/index.html  |  8 +--
 content/learn/runners/dataflow/index.html       |  8 +--
 content/learn/runners/direct/index.html         |  8 +--
 content/learn/runners/flink/index.html          |  8 +--
 content/learn/runners/spark/index.html          |  8 +--
 content/learn/sdks/java/index.html              |  8 +--
 content/learn/sdks/javadoc/index.html           |  8 +--
 content/material/index.html                     |  8 +--
 content/privacy_policy/index.html               |  4 +-
 content/project/logos/index.html                |  8 +--
 content/project/team/index.html                 |  8 +--
 content/releases/index.html                     |  8 +--
 content/source_repository/index.html            |  8 +--
 content/team/index.html                         |  8 +--
 content/use/beam-overview/index.html            |  8 +--
 content/use/index.html                          |  8 +--
 content/use/issue-tracking/index.html           |  8 +--
 content/use/mailing-lists/index.html            |  8 +--
 content/use/mobile-gaming-example/index.html    |  8 +--
 content/use/quickstart/index.html               |  8 +--
 content/use/releases/index.html                 |  8 +--
 content/use/wordcount-example/index.html        |  8 +--
 82 files changed, 373 insertions(+), 381 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/beam-site/blob/1e4e170f/content/beam/capability/2016/03/17/capability-matrix.html
----------------------------------------------------------------------
diff --git a/content/beam/capability/2016/03/17/capability-matrix.html b/content/beam/capability/2016/03/17/capability-matrix.html
index 841a5bc..15b2db1 100644
--- a/content/beam/capability/2016/03/17/capability-matrix.html
+++ b/content/beam/capability/2016/03/17/capability-matrix.html
@@ -14,8 +14,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/beam/capability/2016/03/17/capability-matrix.html" 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/beam/capability/2016/03/17/capability-matrix.html" 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),
@@ -154,7 +154,7 @@
   </header>
 
   <div class="post-content" itemprop="articleBody">
-    <p>With initial code drops complete (<a href="https://github.com/apache/incubator-beam/pull/1">Dataflow SDK and Runner</a>, <a href="https://github.com/apache/incubator-beam/pull/12">Flink Runner</a>, <a href="https://github.com/apache/incubator-beam/pull/42">Spark Runner</a>) and expressed interest in runner implementations for <a href="https://issues.apache.org/jira/browse/BEAM-9">Storm</a>, <a href="https://issues.apache.org/jira/browse/BEAM-19">Hadoop</a>, and <a href="https://issues.apache.org/jira/browse/BEAM-79">Gearpump</a> (amongst others), we wanted to start addressing a big question in the Apache Beam (incubating) community: what capabilities will each runner be able to support?</p>
+    <p>With initial code drops complete (<a href="https://github.com/apache/beam/pull/1">Dataflow SDK and Runner</a>, <a href="https://github.com/apache/beam/pull/12">Flink Runner</a>, <a href="https://github.com/apache/beam/pull/42">Spark Runner</a>) and expressed interest in runner implementations for <a href="https://issues.apache.org/jira/browse/BEAM-9">Storm</a>, <a href="https://issues.apache.org/jira/browse/BEAM-19">Hadoop</a>, and <a href="https://issues.apache.org/jira/browse/BEAM-79">Gearpump</a> (amongst others), we wanted to start addressing a big question in the Apache Beam (incubating) community: what capabilities will each runner be able to support?</p>
 
 <!--more-->
 

http://git-wip-us.apache.org/repos/asf/beam-site/blob/1e4e170f/content/beam/capability/2016/04/03/presentation-materials.html
----------------------------------------------------------------------
diff --git a/content/beam/capability/2016/04/03/presentation-materials.html b/content/beam/capability/2016/04/03/presentation-materials.html
index 16f3d5f..17451c9 100644
--- a/content/beam/capability/2016/04/03/presentation-materials.html
+++ b/content/beam/capability/2016/04/03/presentation-materials.html
@@ -14,8 +14,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/beam/capability/2016/04/03/presentation-materials.html" 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/beam/capability/2016/04/03/presentation-materials.html" 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),
@@ -174,7 +174,7 @@
   </li>
 </ul>
 
-<p>As Apache Beam grows, so will this repository of presentation materials. We are excited to add new materials as the Apache Beam ecosystem grows with new runners, SDKs, and so on. If you are interested in contributing content or have a request, please see the <a href="/learn/presentation-materials/">Apache Beam presentation materials</a> page or email the <a href="mailto:user@beam.incubator.apache.org"><code class="highlighter-rouge">user@beam.incubator.apache.org</code></a> mailing list with your ideas or questions.</p>
+<p>As Apache Beam grows, so will this repository of presentation materials. We are excited to add new materials as the Apache Beam ecosystem grows with new runners, SDKs, and so on. If you are interested in contributing content or have a request, please see the <a href="/learn/presentation-materials/">Apache Beam presentation materials</a> page or email the <a href="mailto:user@beam.apache.org"><code class="highlighter-rouge">user@beam.apache.org</code></a> mailing list with your ideas or questions.</p>
 
   </div>
 

http://git-wip-us.apache.org/repos/asf/beam-site/blob/1e4e170f/content/beam/python/sdk/2016/02/25/python-sdk-now-public.html
----------------------------------------------------------------------
diff --git a/content/beam/python/sdk/2016/02/25/python-sdk-now-public.html b/content/beam/python/sdk/2016/02/25/python-sdk-now-public.html
index e1b5885..324470a 100644
--- a/content/beam/python/sdk/2016/02/25/python-sdk-now-public.html
+++ b/content/beam/python/sdk/2016/02/25/python-sdk-now-public.html
@@ -14,8 +14,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/beam/python/sdk/2016/02/25/python-sdk-now-public.html" 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/beam/python/sdk/2016/02/25/python-sdk-now-public.html" 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/beam/release/2016/06/15/first-release.html
----------------------------------------------------------------------
diff --git a/content/beam/release/2016/06/15/first-release.html b/content/beam/release/2016/06/15/first-release.html
index 6011722..fdb0b1f 100644
--- a/content/beam/release/2016/06/15/first-release.html
+++ b/content/beam/release/2016/06/15/first-release.html
@@ -14,8 +14,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/beam/release/2016/06/15/first-release.html" 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/beam/release/2016/06/15/first-release.html" 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/beam/update/2016/10/11/strata-hadoop-world-and-beam.html
----------------------------------------------------------------------
diff --git a/content/beam/update/2016/10/11/strata-hadoop-world-and-beam.html b/content/beam/update/2016/10/11/strata-hadoop-world-and-beam.html
index 2be5fc3..85e770a 100644
--- a/content/beam/update/2016/10/11/strata-hadoop-world-and-beam.html
+++ b/content/beam/update/2016/10/11/strata-hadoop-world-and-beam.html
@@ -14,8 +14,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/beam/update/2016/10/11/strata-hadoop-world-and-beam.html" 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/beam/update/2016/10/11/strata-hadoop-world-and-beam.html" 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),
@@ -158,13 +158,13 @@
 
 <p><img src="/images/blog/IMG_20160927_170956.jpg" alt="Exercise time" /></p>
 
-<p>If you want to take a look at the tutorial materials, we\u2019ve put them up <a href="https://github.com/eljefe6a/beamexample">on GitHub</a>. This includes the <a href="https://github.com/eljefe6a/beamexample/blob/master/BeamTutorial/slides.pdf">actual slides</a> as well as the <a href="https://github.com/eljefe6a/beamexample/tree/master/BeamTutorial/src/main/java/org/apache/beam/examples/tutorial/game">exercises</a> that we covered. If you\u2019re looking to learn a little about Beam, this is a good way to start. The exercises are based on an imaginary mobile game where data needs processing and are based on code in the <a href="https://github.com/apache/incubator-beam/tree/master/examples/java8/src/main/java/org/apache/beam/examples/complete/game">Beam examples directory</a>. The code has TODOs for where you need to fill in code or there are full sample solutions to look over our code. You can run these examples on your own machine or on a cluster using a runner that Beam supports.</
 p>
+<p>If you want to take a look at the tutorial materials, we\u2019ve put them up <a href="https://github.com/eljefe6a/beamexample">on GitHub</a>. This includes the <a href="https://github.com/eljefe6a/beamexample/blob/master/BeamTutorial/slides.pdf">actual slides</a> as well as the <a href="https://github.com/eljefe6a/beamexample/tree/master/BeamTutorial/src/main/java/org/apache/beam/examples/tutorial/game">exercises</a> that we covered. If you\u2019re looking to learn a little about Beam, this is a good way to start. The exercises are based on an imaginary mobile game where data needs processing and are based on code in the <a href="https://github.com/apache/beam/tree/master/examples/java8/src/main/java/org/apache/beam/examples/complete/game">Beam examples directory</a>. The code has TODOs for where you need to fill in code or there are full sample solutions to look over our code. You can run these examples on your own machine or on a cluster using a runner that Beam supports.</p>
 
 <p>I want to share some of takeaways I had about Beam during the conference.</p>
 
 <p>The Data Engineers are looking to Beam as a way to <a href="https://www.oreilly.com/ideas/future-proof-and-scale-proof-your-code">future-proof</a>, meaning that code is portable between the various Big Data frameworks. In fact, many of the attendees were still on Hadoop MapReduce and looking to transition to a new framework. They\u2019re realizing that continually rewriting code isn\u2019t the most productive approach.</p>
 
-<p>Data Scientists are really interested in using Beam. They interested in having a single API for doing analysis instead of several different APIs. We talked about Beam\u2019s progress on the Python API. If you want to take a peek, it\u2019s being actively developed on a <a href="https://github.com/apache/incubator-beam/tree/python-sdk">feature branch</a>. As Beam matures, we\u2019re looking to add other supported languages.</p>
+<p>Data Scientists are really interested in using Beam. They interested in having a single API for doing analysis instead of several different APIs. We talked about Beam\u2019s progress on the Python API. If you want to take a peek, it\u2019s being actively developed on a <a href="https://github.com/apache/beam/tree/python-sdk">feature branch</a>. As Beam matures, we\u2019re looking to add other supported languages.</p>
 
 <p>We heard <a href="https://twitter.com/jessetanderson/status/781124173108305920">loud and clear</a> from Beam users that great runner support is crucial to adoption. We have great Apache Flink support. During the conference we had some more volunteers offer their help on the Spark runner.</p>
 

http://git-wip-us.apache.org/repos/asf/beam-site/blob/1e4e170f/content/beam/update/website/2016/02/22/beam-has-a-logo.html
----------------------------------------------------------------------
diff --git a/content/beam/update/website/2016/02/22/beam-has-a-logo.html b/content/beam/update/website/2016/02/22/beam-has-a-logo.html
index 7c0f85e..dbdffae 100644
--- a/content/beam/update/website/2016/02/22/beam-has-a-logo.html
+++ b/content/beam/update/website/2016/02/22/beam-has-a-logo.html
@@ -14,8 +14,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/beam/update/website/2016/02/22/beam-has-a-logo.html" 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/beam/update/website/2016/02/22/beam-has-a-logo.html" 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/blog/2016/05/18/splitAtFraction-method.html
----------------------------------------------------------------------
diff --git a/content/blog/2016/05/18/splitAtFraction-method.html b/content/blog/2016/05/18/splitAtFraction-method.html
index 4f8bc3a..fde233f 100644
--- a/content/blog/2016/05/18/splitAtFraction-method.html
+++ b/content/blog/2016/05/18/splitAtFraction-method.html
@@ -14,8 +14,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/blog/2016/05/18/splitAtFraction-method.html" 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/blog/2016/05/18/splitAtFraction-method.html" 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),
@@ -160,7 +160,7 @@
 
 <p>In a large batch processing job with many tasks executing in parallel, some of the tasks \u2013 the stragglers \u2013 can take a much longer time to complete than others, perhaps due to imperfect splitting of the work into parallel chunks when issuing the job. Typically, waiting for stragglers means that the overall job completes later than it should, and may also reserve too many machines that may be underutilized at the end. Cloud Dataflow\u2019s dynamic work rebalancing can mitigate stragglers in most cases.</p>
 
-<p>What I\u2019d like to highlight for the Apache Beam (incubating) community is that Cloud Dataflow\u2019s dynamic work rebalancing is implemented using <em>runner-specific</em> control logic on top of Beam\u2019s <em>runner-independent</em> <a href="https://github.com/apache/incubator-beam/blob/9fa97fb2491bc784df53fb0f044409dbbc2af3d7/sdks/java/core/src/main/java/org/apache/beam/sdk/io/BoundedSource.java"><code class="highlighter-rouge">BoundedSource API</code></a>. Specifically, to steal work from a straggler, a runner need only call the reader\u2019s <a href="https://github.com/apache/incubator-beam/blob/3edae9b8b4d7afefb5c803c19bb0a1c21ebba89d/sdks/java/core/src/main/java/org/apache/beam/sdk/io/BoundedSource.java#L266"><code class="highlighter-rouge">splitAtFraction method</code></a>. This will generate a new source containing leftover work, and then the runner can pass that source off to another idle worker. As Beam matures, I hope that other runners are interested in figuring out whether
  these APIs can help them improve performance, implementing dynamic work rebalancing, and collaborating on API changes that will help solve other pain points.</p>
+<p>What I\u2019d like to highlight for the Apache Beam (incubating) community is that Cloud Dataflow\u2019s dynamic work rebalancing is implemented using <em>runner-specific</em> control logic on top of Beam\u2019s <em>runner-independent</em> <a href="https://github.com/apache/beam/blob/9fa97fb2491bc784df53fb0f044409dbbc2af3d7/sdks/java/core/src/main/java/org/apache/beam/sdk/io/BoundedSource.java"><code class="highlighter-rouge">BoundedSource API</code></a>. Specifically, to steal work from a straggler, a runner need only call the reader\u2019s <a href="https://github.com/apache/beam/blob/3edae9b8b4d7afefb5c803c19bb0a1c21ebba89d/sdks/java/core/src/main/java/org/apache/beam/sdk/io/BoundedSource.java#L266"><code class="highlighter-rouge">splitAtFraction method</code></a>. This will generate a new source containing leftover work, and then the runner can pass that source off to another idle worker. As Beam matures, I hope that other runners are interested in figuring out whether these APIs can help
  them improve performance, implementing dynamic work rebalancing, and collaborating on API changes that will help solve other pain points.</p>
 
   </div>
 

http://git-wip-us.apache.org/repos/asf/beam-site/blob/1e4e170f/content/blog/2016/05/27/where-is-my-pcollection-dot-map.html
----------------------------------------------------------------------
diff --git a/content/blog/2016/05/27/where-is-my-pcollection-dot-map.html b/content/blog/2016/05/27/where-is-my-pcollection-dot-map.html
index 0a3d47b..89ef6e4 100644
--- a/content/blog/2016/05/27/where-is-my-pcollection-dot-map.html
+++ b/content/blog/2016/05/27/where-is-my-pcollection-dot-map.html
@@ -14,8 +14,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/blog/2016/05/27/where-is-my-pcollection-dot-map.html" 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/blog/2016/05/27/where-is-my-pcollection-dot-map.html" 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/blog/2016/06/13/flink-batch-runner-milestone.html
----------------------------------------------------------------------
diff --git a/content/blog/2016/06/13/flink-batch-runner-milestone.html b/content/blog/2016/06/13/flink-batch-runner-milestone.html
index d88e6c1..3d260d4 100644
--- a/content/blog/2016/06/13/flink-batch-runner-milestone.html
+++ b/content/blog/2016/06/13/flink-batch-runner-milestone.html
@@ -14,8 +14,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/blog/2016/06/13/flink-batch-runner-milestone.html" 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/blog/2016/06/13/flink-batch-runner-milestone.html" 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/blog/2016/08/03/six-months.html
----------------------------------------------------------------------
diff --git a/content/blog/2016/08/03/six-months.html b/content/blog/2016/08/03/six-months.html
index 18849c9..bdcff49 100644
--- a/content/blog/2016/08/03/six-months.html
+++ b/content/blog/2016/08/03/six-months.html
@@ -14,8 +14,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/blog/2016/08/03/six-months.html" 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/blog/2016/08/03/six-months.html" 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/blog/2016/10/20/test-stream.html
----------------------------------------------------------------------
diff --git a/content/blog/2016/10/20/test-stream.html b/content/blog/2016/10/20/test-stream.html
index e55ae7d..6b7e55a 100644
--- a/content/blog/2016/10/20/test-stream.html
+++ b/content/blog/2016/10/20/test-stream.html
@@ -14,8 +14,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/blog/2016/10/20/test-stream.html" 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/blog/2016/10/20/test-stream.html" 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),
@@ -191,8 +191,8 @@ from the Mobile Gaming example series.</p>
 
 <h2 id="leaderboard-and-the-mobile-gaming-example">LeaderBoard and the Mobile Gaming Example</h2>
 
-<p><a href="https://github.com/apache/incubator-beam/blob/master/examples/java8/src/main/java/org/apache/beam/examples/complete/game/LeaderBoard.java#L177">LeaderBoard</a>
-is part of the <a href="https://github.com/apache/incubator-beam/tree/master/examples/java8/src/main/java/org/apache/beam/examples/complete/game">Beam mobile gaming examples</a>
+<p><a href="https://github.com/apache/beam/blob/master/examples/java8/src/main/java/org/apache/beam/examples/complete/game/LeaderBoard.java#L177">LeaderBoard</a>
+is part of the <a href="https://github.com/apache/beam/tree/master/examples/java8/src/main/java/org/apache/beam/examples/complete/game">Beam mobile gaming examples</a>
 (and <a href="/get-started/mobile-gaming-example/">walkthroughs</a>)
 which produces a continuous accounting of user and team scores. User scores are
 calculated over the lifetime of the program, while team scores are calculated
@@ -209,7 +209,7 @@ be controlled within a test.</p>
 <a href="/documentation/sdks/javadoc/0.3.0-incubating/org/apache/beam/sdk/testing/PAssert.html">PAssert</a>
 methods, which assert properties about the contents of a PCollection from within
 a pipeline. We have expanded this infrastructure to include
-<a href="https://github.com/apache/incubator-beam/blob/master/sdks/java/core/src/main/java/org/apache/beam/sdk/testing/TestStream.java">TestStream</a>,
+<a href="https://github.com/apache/beam/blob/master/sdks/java/core/src/main/java/org/apache/beam/sdk/testing/TestStream.java">TestStream</a>,
 which is a PTransform that performs a series of events, consisting of adding
 additional elements to a pipeline, advancing the watermark of the TestStream,
 and advancing the pipeline processing time clock. TestStream permits tests which

http://git-wip-us.apache.org/repos/asf/beam-site/blob/1e4e170f/content/blog/index.html
----------------------------------------------------------------------
diff --git a/content/blog/index.html b/content/blog/index.html
index b5114a5..9eb57d7 100644
--- a/content/blog/index.html
+++ b/content/blog/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/blog/" 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/blog/" 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),
@@ -287,7 +287,7 @@ Read more&nbsp;<span class="glyphicon glyphicon-menu-right" aria-hidden="true"><
 <p><i>Mar 17, 2016 \u2022  Frances Perry [<a href="https://twitter.com/francesjperry">@francesjperry</a>] &amp; Tyler Akidau [<a href="https://twitter.com/takidau">@takidau</a>]
 </i></p>
 
-<p>With initial code drops complete (<a href="https://github.com/apache/incubator-beam/pull/1">Dataflow SDK and Runner</a>, <a href="https://github.com/apache/incubator-beam/pull/12">Flink Runner</a>, <a href="https://github.com/apache/incubator-beam/pull/42">Spark Runner</a>) and expressed interest in runner implementations for <a href="https://issues.apache.org/jira/browse/BEAM-9">Storm</a>, <a href="https://issues.apache.org/jira/browse/BEAM-19">Hadoop</a>, and <a href="https://issues.apache.org/jira/browse/BEAM-79">Gearpump</a> (amongst others), we wanted to start addressing a big question in the Apache Beam (incubating) community: what capabilities will each runner be able to support?</p>
+<p>With initial code drops complete (<a href="https://github.com/apache/beam/pull/1">Dataflow SDK and Runner</a>, <a href="https://github.com/apache/beam/pull/12">Flink Runner</a>, <a href="https://github.com/apache/beam/pull/42">Spark Runner</a>) and expressed interest in runner implementations for <a href="https://issues.apache.org/jira/browse/BEAM-9">Storm</a>, <a href="https://issues.apache.org/jira/browse/BEAM-19">Hadoop</a>, and <a href="https://issues.apache.org/jira/browse/BEAM-79">Gearpump</a> (amongst others), we wanted to start addressing a big question in the Apache Beam (incubating) community: what capabilities will each runner be able to support?</p>
 
 <!-- Render a "read more" button if the post is longer than the excerpt -->
 

http://git-wip-us.apache.org/repos/asf/beam-site/blob/1e4e170f/content/capability-matrix/index.html
----------------------------------------------------------------------
diff --git a/content/capability-matrix/index.html b/content/capability-matrix/index.html
index 48f5824..a6de601 100644
--- a/content/capability-matrix/index.html
+++ b/content/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/coming-soon.html
----------------------------------------------------------------------
diff --git a/content/coming-soon.html b/content/coming-soon.html
index efee3f6..51b618f 100644
--- a/content/coming-soon.html
+++ b/content/coming-soon.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/coming-soon.html" 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/coming-soon.html" 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/contribute/contribution-guide/index.html
----------------------------------------------------------------------
diff --git a/content/contribute/contribution-guide/index.html b/content/contribute/contribution-guide/index.html
index 7d7b7c9..b83afbb 100644
--- a/content/contribute/contribution-guide/index.html
+++ b/content/contribute/contribution-guide/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/contribute/contribution-guide/" 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/contribute/contribution-guide/" 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),
@@ -224,8 +224,8 @@
 
 <ol>
   <li><strong>Code:</strong> The best part ;-)</li>
-  <li><strong>Review:</strong> Submit a pull request with your contribution to our <a href="https://github.com/apache/incubator-beam/">GitHub mirror</a>. Work with a committer to review and iterate on the code, if needed.</li>
-  <li><strong>Commit:</strong> A Beam committer merges the pull request into our <a href="https://git-wip-us.apache.org/repos/asf/incubator-beam.git">Apache repository</a>.</li>
+  <li><strong>Review:</strong> Submit a pull request with your contribution to our <a href="https://github.com/apache/beam/">GitHub mirror</a>. Work with a committer to review and iterate on the code, if needed.</li>
+  <li><strong>Commit:</strong> A Beam committer merges the pull request into our <a href="https://git-wip-us.apache.org/repos/asf/beam.git">Apache repository</a>.</li>
 </ol>
 
 <p>We look forward to working with you!</p>
@@ -233,7 +233,7 @@
 <h2 id="engage">Engage</h2>
 
 <h3 id="mailing-lists">Mailing list(s)</h3>
-<p>We discuss design and implementation issues on dev@beam.incubator.apache.org mailing list, which is archived <a href="https://lists.apache.org/list.html?dev@beam.apache.org">here</a>. Join by emailing <a href="mailto:dev-subscribe@beam.incubator.apache.org"><code class="highlighter-rouge">dev-subscribe@beam.incubator.apache.org</code></a>.</p>
+<p>We discuss design and implementation issues on dev@beam.apache.org mailing list, which is archived <a href="https://lists.apache.org/list.html?dev@beam.apache.org">here</a>. Join by emailing <a href="mailto:dev-subscribe@beam.apache.org"><code class="highlighter-rouge">dev-subscribe@beam.apache.org</code></a>.</p>
 
 <p>If interested, you can also join the other <a href="/use/mailing-lists/">mailing lists</a> too.</p>
 
@@ -272,7 +272,7 @@
 <p>If you do not already have a personal GitHub account, sign up <a href="https://github.com/join">here</a>.</p>
 
 <h4 id="fork-the-repository-on-github">Fork the repository on GitHub</h4>
-<p>Go to the <a href="https://github.com/apache/incubator-beam/">Beam GitHub mirror</a> and fork the repository to your own private account. This will be your private workspace for staging changes.</p>
+<p>Go to the <a href="https://github.com/apache/beam/">Beam GitHub mirror</a> and fork the repository to your own private account. This will be your private workspace for staging changes.</p>
 
 <p>We recommend enabling Travis-CI continuous integration coverage on your private fork in order to easily test your changes before proposing a pull request. Go to <a href="https://travis-ci.org">Travis-CI</a>, log in with your GitHub account, and enable coverage for your repository.</p>
 
@@ -283,14 +283,14 @@
 
 <p>Clone Beam\u2019s read-only GitHub mirror.</p>
 
-<div class="highlighter-rouge"><pre class="highlight"><code>$ git clone https://github.com/apache/incubator-beam.git
+<div class="highlighter-rouge"><pre class="highlight"><code>$ git clone https://github.com/apache/beam.git
 $ cd incubator-beam
 </code></pre>
 </div>
 
 <p>Add your forked repository as an additional Git remote, where you\u2019ll push your changes.</p>
 
-<div class="highlighter-rouge"><pre class="highlight"><code>$ git remote add &lt;GitHub_user&gt; git@github.com:&lt;GitHub_user&gt;/incubator-beam.git
+<div class="highlighter-rouge"><pre class="highlight"><code>$ git remote add &lt;GitHub_user&gt; git@github.com:&lt;GitHub_user&gt;/beam.git
 </code></pre>
 </div>
 
@@ -436,7 +436,7 @@ $ git checkout -b &lt;my-branch&gt; origin/master
 </code></pre>
 </div>
 
-<p>Navigate to the <a href="https://github.com/apache/incubator-beam">Beam GitHub mirror</a> to create a pull request. The title of the pull request should be strictly in the following format:</p>
+<p>Navigate to the <a href="https://github.com/apache/beam">Beam GitHub mirror</a> to create a pull request. The title of the pull request should be strictly in the following format:</p>
 
 <div class="highlighter-rouge"><pre class="highlight"><code>[BEAM-&lt;JIRA-issue-#&gt;] &lt;Title of the pull request&gt;
 </code></pre>
@@ -476,7 +476,7 @@ $ git push &lt;GitHub_user&gt; --delete &lt;my-branch&gt;
 </div>
 
 <h2 id="commit-committers-only">Commit (committers only)</h2>
-<p>Once the code has been peer reviewed by a committer, the next step is for the committer to merge it into the <a href="https://git-wip-us.apache.org/repos/asf/incubator-beam.git">authoritative Apache repository</a>, not the read-only GitHub mirror. (In the case that the author is also a committer, it is acceptable for either the author or reviewer to do the merge. Just be explicit about whose job it is!)</p>
+<p>Once the code has been peer reviewed by a committer, the next step is for the committer to merge it into the <a href="https://git-wip-us.apache.org/repos/asf/beam.git">authoritative Apache repository</a>, not the read-only GitHub mirror. (In the case that the author is also a committer, it is acceptable for either the author or reviewer to do the merge. Just be explicit about whose job it is!)</p>
 
 <p>Pull requests should not be merged before the review has received an explicit LGTM from another committer. Exceptions to this rule may be made rarely, on a case-by-case basis only, in the committer\u2019s discretion for situations such as build breakages.</p>
 
@@ -487,7 +487,7 @@ $ git push &lt;GitHub_user&gt; --delete &lt;my-branch&gt;
 <h3 id="one-time-setup-1">One-time Setup</h3>
 <p>Add the Apache Git remote in your local clone, by running:</p>
 
-<div class="highlighter-rouge"><pre class="highlight"><code>$ git remote add apache https://git-wip-us.apache.org/repos/asf/incubator-beam.git
+<div class="highlighter-rouge"><pre class="highlight"><code>$ git remote add apache https://git-wip-us.apache.org/repos/asf/beam.git
 </code></pre>
 </div>
 
@@ -507,10 +507,10 @@ $ git push &lt;GitHub_user&gt; --delete &lt;my-branch&gt;
 <p>You can confirm your configuration by running the following command.</p>
 
 <div class="highlighter-rouge"><pre class="highlight"><code>$ git remote -v
-apache	https://git-wip-us.apache.org/repos/asf/incubator-beam.git (fetch)
-apache	https://git-wip-us.apache.org/repos/asf/incubator-beam.git (push)
-github	https://github.com/apache/incubator-beam.git (fetch)
-github	https://github.com/apache/incubator-beam.git (push)
+apache	https://git-wip-us.apache.org/repos/asf/beam.git (fetch)
+apache	https://git-wip-us.apache.org/repos/asf/beam.git (push)
+github	https://github.com/apache/beam.git (fetch)
+github	https://github.com/apache/beam.git (push)
 &lt;username&gt;	git@github.com:&lt;username&gt;/beam.git (fetch)
 &lt;username&gt;	git@github.com:&lt;username&gt;/beam.git (push)
 </code></pre>
@@ -642,17 +642,17 @@ fixing, then those should get a full review from another committer.</p>
 
 <h3 id="website">Website</h3>
 
-<p>The Beam website is in the <a href="https://github.com/apache/incubator-beam-site">Beam Site GitHub mirror</a> repository in the <code class="highlighter-rouge">asf-site</code> branch (<em>not</em> <code class="highlighter-rouge">master</code>).</p>
+<p>The Beam website is in the <a href="https://github.com/apache/beam-site">Beam Site GitHub mirror</a> repository in the <code class="highlighter-rouge">asf-site</code> branch (<em>not</em> <code class="highlighter-rouge">master</code>).</p>
 
 <p>Issues are tracked in the <a href="https://issues.apache.org/jira/browse/BEAM/component/12328906">website</a> component in JIRA.</p>
 
 <h4 id="one-time-setup-2">One-time Setup</h4>
 
-<p>The <a href="https://github.com/apache/incubator-beam-site/blob/asf-site/README.md">README file</a> in the website repository has more information on how to set up the required dependencies for your development environment.</p>
+<p>The <a href="https://github.com/apache/beam-site/blob/asf-site/README.md">README file</a> in the website repository has more information on how to set up the required dependencies for your development environment.</p>
 
 <p>The general guidelines for cloning a repository can be adjusted to use the <code class="highlighter-rouge">asf-site</code> branch of <code class="highlighter-rouge">incubator-beam-site</code>:</p>
 
-<div class="highlighter-rouge"><pre class="highlight"><code>$ git clone -b asf-site https://github.com/apache/incubator-beam-site.git
+<div class="highlighter-rouge"><pre class="highlight"><code>$ git clone -b asf-site https://github.com/apache/beam-site.git
 $ cd incubator-beam-site
 $ git remote add &lt;GitHub_user&gt; git@github.com:&lt;GitHub_user&gt;/incubator-beam-site.git
 $ git fetch --all
@@ -682,7 +682,7 @@ $ git checkout -b &lt;my-branch&gt; origin/asf-site
 </code></pre>
 </div>
 
-<p>When you are ready, submit a pull request using the <a href="https://github.com/apache/incubator-beam-site">Beam Site GitHub mirror</a>, including the JIRA issue as usual.</p>
+<p>When you are ready, submit a pull request using the <a href="https://github.com/apache/beam-site">Beam Site GitHub mirror</a>, including the JIRA issue as usual.</p>
 
 <p>During review, committers will patch in your PR, generate the static <code class="highlighter-rouge">content/</code>, and review the changes.</p>
 

http://git-wip-us.apache.org/repos/asf/beam-site/blob/1e4e170f/content/contribute/design-principles/index.html
----------------------------------------------------------------------
diff --git a/content/contribute/design-principles/index.html b/content/contribute/design-principles/index.html
index 85b445a..9a8892f 100644
--- a/content/contribute/design-principles/index.html
+++ b/content/contribute/design-principles/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/contribute/design-principles/" 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/contribute/design-principles/" 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/contribute/index.html
----------------------------------------------------------------------
diff --git a/content/contribute/index.html b/content/contribute/index.html
index 2779a86..01601a7 100644
--- a/content/contribute/index.html
+++ b/content/contribute/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/contribute/" 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/contribute/" 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/contribute/logos/index.html
----------------------------------------------------------------------
diff --git a/content/contribute/logos/index.html b/content/contribute/logos/index.html
index 63e4692..dd98315 100644
--- a/content/contribute/logos/index.html
+++ b/content/contribute/logos/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/contribute/logos/" 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/contribute/logos/" 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/contribute/maturity-model/index.html
----------------------------------------------------------------------
diff --git a/content/contribute/maturity-model/index.html b/content/contribute/maturity-model/index.html
index 76dbc0c..10b68a0 100644
--- a/content/contribute/maturity-model/index.html
+++ b/content/contribute/maturity-model/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/contribute/maturity-model/" 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/contribute/maturity-model/" 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),
@@ -179,27 +179,27 @@
     <tr>
       <td><p>CD10</p></td>
       <td><p>The project produces Open Source software, for distribution to the public at no charge. [1]</p></td>
-      <td><p><b>YES.</b> The project source code is <a href="https://github.com/apache/incubator-beam/blob/master/LICENSE">licensed</a> under the Apache License, version 2.0.</p></td>
+      <td><p><b>YES.</b> The project source code is <a href="https://github.com/apache/beam/blob/master/LICENSE">licensed</a> under the Apache License, version 2.0.</p></td>
     </tr>
     <tr>
       <td><p>CD20</p></td>
       <td><p>The project&#39;s code is easily discoverable and publicly accessible.</p></td>
-      <td><p><b>YES.</b> Linked from the <a href="/contribute/source-repository/">website</a>, available via <a href="https://git-wip-us.apache.org/repos/asf?p%3Dincubator-beam.git">git.apache.org</a> and <a href="https://github.com/apache/incubator-beam">GitHub</a>.</p></td>
+      <td><p><b>YES.</b> Linked from the <a href="/contribute/source-repository/">website</a>, available via <a href="https://git-wip-us.apache.org/repos/asf?p%3Dbeam.git">git.apache.org</a> and <a href="https://github.com/apache/beam">GitHub</a>.</p></td>
     </tr>
     <tr>
       <td><p>CD30</p></td>
       <td><p>The code can be built in a reproducible way using widely available standard tools.</p></td>
-      <td><p><b>YES.</b> The project uses Apache Maven and can be built via <a href="https://github.com/apache/incubator-beam/blob/master/README.md">the standard &ldquo;mvn install&rdquo; on any platform</a>.</p></td>
+      <td><p><b>YES.</b> The project uses Apache Maven and can be built via <a href="https://github.com/apache/beam/blob/master/README.md">the standard &ldquo;mvn install&rdquo; on any platform</a>.</p></td>
     </tr>
     <tr>
       <td><p>CD40</p></td>
       <td><p>The full history of the project&#39;s code is available via a source code control system, in a way that allows any released version to be recreated.</p></td>
-      <td><p><b>YES.</b> The project uses a <a href="https://github.com/apache/incubator-beam">git repository</a> and releases are <a href="https://github.com/apache/incubator-beam/releases">tagged</a>.</p><p><b>Even further</b>, all release candidates are <a href="https://github.com/apache/incubator-beam/releases">tagged</a> as well.</p></td>
+      <td><p><b>YES.</b> The project uses a <a href="https://github.com/apache/beam">git repository</a> and releases are <a href="https://github.com/apache/beam/releases">tagged</a>.</p><p><b>Even further</b>, all release candidates are <a href="https://github.com/apache/beam/releases">tagged</a> as well.</p></td>
     </tr>
     <tr>
       <td><p>CD50</p></td>
       <td><p>The provenance of each line of code is established via the source code control system, in a reliable way based on strong authentication of the committer. When third-party contributions are committed, commit messages provide reliable information about the code provenance. [2]</p></td>
-      <td><p><b>YES.</b> The project uses a <a href="https://github.com/apache/incubator-beam">git repository</a>, managed by Apache Infra, ensuring provenance of each line of code to a committer. Third party contributions are accepted in accordance with the <a href="/contribute/contribution-guide/">Contribution Guide</a> only.</p></td>
+      <td><p><b>YES.</b> The project uses a <a href="https://github.com/apache/beam">git repository</a>, managed by Apache Infra, ensuring provenance of each line of code to a committer. Third party contributions are accepted in accordance with the <a href="/contribute/contribution-guide/">Contribution Guide</a> only.</p></td>
     </tr>
 
     <tr>
@@ -208,7 +208,7 @@
     <tr>
       <td><p>LC10</p></td>
       <td><p>The code is released under the Apache License, version 2.0.</p></td>
-      <td><p><b>YES.</b> Source distributions clearly state <a href="https://github.com/apache/incubator-beam/blob/master/LICENSE">license</a>. Convenience binaries clearly state <a href="https://github.com/apache/incubator-beam/blob/master/pom.xml#L41">license</a>.</p></td>
+      <td><p><b>YES.</b> Source distributions clearly state <a href="https://github.com/apache/beam/blob/master/LICENSE">license</a>. Convenience binaries clearly state <a href="https://github.com/apache/beam/blob/master/pom.xml#L41">license</a>.</p></td>
     </tr>
     <tr>
       <td><p>LC20</p></td>
@@ -266,7 +266,7 @@
     <tr>
       <td><p>QU10</p></td>
       <td><p>The project is open and honest about the quality of its code. Various levels of quality and maturity for various modules are natural and acceptable as long as they are clearly communicated.</p></td>
-      <td><p><b>YES.</b> The project records all bugs in the <a href="https://issues.apache.org/jira/browse/BEAM">Apache&rsquo;s JIRA issue tracker</a>.</p><p><b>Even further</b>, the project <a href="/get-started/downloads/">clearly documents</a> that APIs are subject to change before the first stable release, and which APIs are <a href="https://github.com/apache/incubator-beam/blob/master/sdks/java/core/src/main/java/org/apache/beam/sdk/annotations/Experimental.java#L47">@Experimental</a>.</p></td>
+      <td><p><b>YES.</b> The project records all bugs in the <a href="https://issues.apache.org/jira/browse/BEAM">Apache&rsquo;s JIRA issue tracker</a>.</p><p><b>Even further</b>, the project <a href="/get-started/downloads/">clearly documents</a> that APIs are subject to change before the first stable release, and which APIs are <a href="https://github.com/apache/beam/blob/master/sdks/java/core/src/main/java/org/apache/beam/sdk/annotations/Experimental.java#L47">@Experimental</a>.</p></td>
     </tr>
     <tr>
       <td><p>QU20</p></td>

http://git-wip-us.apache.org/repos/asf/beam-site/blob/1e4e170f/content/contribute/presentation-materials/index.html
----------------------------------------------------------------------
diff --git a/content/contribute/presentation-materials/index.html b/content/contribute/presentation-materials/index.html
index 5f2b894..3ca694d 100644
--- a/content/contribute/presentation-materials/index.html
+++ b/content/contribute/presentation-materials/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/contribute/presentation-materials/" 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/contribute/presentation-materials/" 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),
@@ -157,17 +157,17 @@
 <h2 id="using-these-materials">Using these materials</h2>
 <p>These materials can be used by anyone. If you do use these materials, please remember to give credit to the authors cited in each presentation. These materials include speaker notes and you can view them by clicking <strong><code class="highlighter-rouge">View</code></strong> and selecting <strong><code class="highlighter-rouge">Show speaker notes</code></strong>. Some presentations have <code class="highlighter-rouge">[Long]</code> or <code class="highlighter-rouge">[Short]</code> in their name, such as the <em>Apache Beam Model</em>, which means there are two different presentations (a long and short version) depending on your needs and time constraints.</p>
 
-<p>If you have any questions about the these materials, please ask on the <a href="mailto:user@beam.incubator.apache.org"><code class="highlighter-rouge">user@beam.incubator.apache.org</code></a> mailing list.</p>
+<p>If you have any questions about the these materials, please ask on the <a href="mailto:user@beam.apache.org"><code class="highlighter-rouge">user@beam.apache.org</code></a> mailing list.</p>
 
-<p>The Apache Beam community is looking for feedback on these materials to improve them over time. If you deliver a presentation based on these materials, we\u2019d love to hear from you on the <a href="mailto:user@beam.incubator.apache.org"><code class="highlighter-rouge">user@beam.incubator.apache.org</code></a> mailing list. Please share your thoughts, questions you were asked, and (if available and appropriate) a link to the recording of your talk so the rest of the Apache Beam community can benefit from it.</p>
+<p>The Apache Beam community is looking for feedback on these materials to improve them over time. If you deliver a presentation based on these materials, we\u2019d love to hear from you on the <a href="mailto:user@beam.apache.org"><code class="highlighter-rouge">user@beam.apache.org</code></a> mailing list. Please share your thoughts, questions you were asked, and (if available and appropriate) a link to the recording of your talk so the rest of the Apache Beam community can benefit from it.</p>
 
 <h2 id="contributing-new-content">Contributing new content</h2>
 <p>The Apache Beam community is always looking for new core content and contributions!</p>
 
-<p>If you are interested in contributing new content, we recommend you first search the <a href="https://issues.apache.org/jira/browse/BEAM">Apache Beam JIRA</a> to see if your idea currently has an open JIRA item. If it does not, send an email to the <a href="mailto:user@beam.incubator.apache.org"><code class="highlighter-rouge">user@beam.incubator.apache.org</code></a> mailing list or open a new issue in the <a href="https://issues.apache.org/jira/browse/BEAM">Apache Beam JIRA</a> using the <a href="https://issues.apache.org/jira/browse/BEAM/component/12328906/?selectedTab=com.atlassian.jira.jira-projects-plugin:component-summary-panel">website</a> component. Based on community submissions or contributions, the Beam community collaboratively reviews or creates new content and then adds it to this shared space for everyone to use.</p>
+<p>If you are interested in contributing new content, we recommend you first search the <a href="https://issues.apache.org/jira/browse/BEAM">Apache Beam JIRA</a> to see if your idea currently has an open JIRA item. If it does not, send an email to the <a href="mailto:user@beam.apache.org"><code class="highlighter-rouge">user@beam.apache.org</code></a> mailing list or open a new issue in the <a href="https://issues.apache.org/jira/browse/BEAM">Apache Beam JIRA</a> using the <a href="https://issues.apache.org/jira/browse/BEAM/component/12328906/?selectedTab=com.atlassian.jira.jira-projects-plugin:component-summary-panel">website</a> component. Based on community submissions or contributions, the Beam community collaboratively reviews or creates new content and then adds it to this shared space for everyone to use.</p>
 
 <h2 id="corrections-and-updates">Corrections and updates</h2>
-<p>If you encounter missing, incorrect, or out of date material, please make a comment in the presentation or send an email to the <a href="mailto:user@beam.incubator.apache.org"><code class="highlighter-rouge">user@beam.incubator.apache.org</code></a> mailing list.</p>
+<p>If you encounter missing, incorrect, or out of date material, please make a comment in the presentation or send an email to the <a href="mailto:user@beam.apache.org"><code class="highlighter-rouge">user@beam.apache.org</code></a> mailing list.</p>
 
       </div>
 

http://git-wip-us.apache.org/repos/asf/beam-site/blob/1e4e170f/content/contribute/release-guide/index.html
----------------------------------------------------------------------
diff --git a/content/contribute/release-guide/index.html b/content/contribute/release-guide/index.html
index 0a27f50..b7d53d5 100644
--- a/content/contribute/release-guide/index.html
+++ b/content/contribute/release-guide/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/contribute/release-guide/" 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/contribute/release-guide/" 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),
@@ -528,7 +528,7 @@ TAG="v${VERSION}-RC${RC_NUM}"
 </code></pre>
 </div>
 
-<p>By default, the Javadoc will be generated in <code class="highlighter-rouge">target/site/apidocs/</code>. Let <code class="highlighter-rouge">${JAVADOC_ROOT}</code> be the absolute path to <code class="highlighter-rouge">apidocs</code>. (<a href="https://github.com/apache/incubator-beam/pull/1015">Pull request #1015</a> will hopefully simplify this process.)</p>
+<p>By default, the Javadoc will be generated in <code class="highlighter-rouge">target/site/apidocs/</code>. Let <code class="highlighter-rouge">${JAVADOC_ROOT}</code> be the absolute path to <code class="highlighter-rouge">apidocs</code>. (<a href="https://github.com/apache/beam/pull/1015">Pull request #1015</a> will hopefully simplify this process.)</p>
 
 <p>Please carefully review the generated Javadoc. Check for completeness and presence of all relevant packages and <code class="highlighter-rouge">package-info.java</code>; consider adding less relevant packages to the <code class="highlighter-rouge">excludePackageNames</code> configuration. The index page is generated at <code class="highlighter-rouge">${JAVADOC_ROOT}/index.html</code>.</p>
 
@@ -569,7 +569,7 @@ TAG="v${VERSION}-RC${RC_NUM}"
 <p>Start the review-and-vote thread on the dev@ mailing list. Here\u2019s an email template; please adjust as you see fit.</p>
 
 <div class="highlighter-rouge"><pre class="highlight"><code>From: Release Manager
-To: dev@beam.incubator.apache.org
+To: dev@beam.apache.org
 Subject: [VOTE] Release 1.2.3, release candidate #3
 
 Hi everyone,
@@ -603,7 +603,7 @@ Release Manager
 <p>If there are no issues, reply on the vote thread to close the voting. Then, tally the votes in a separate email. Here\u2019s an email template; please adjust as you see fit.</p>
 
 <div class="highlighter-rouge"><pre class="highlight"><code>From: Release Manager
-To: dev@beam.incubator.apache.org
+To: dev@beam.apache.org
 Subject: [RESULT] [VOTE] Release 1.2.3, release candidate #3
 
 I'm happy to announce that we have unanimously approved this release.
@@ -624,7 +624,7 @@ Thanks everyone!
 
 <div class="highlighter-rouge"><pre class="highlight"><code>From: Release Manager
 To: general@incubator.apache.org
-Cc: dev@beam.incubator.apache.org
+Cc: dev@beam.apache.org
 Subject: [VOTE] Apache Beam release 1.2.3-incubating
 
 Hi everyone,
@@ -661,7 +661,7 @@ Thanks!
 
 <div class="highlighter-rouge"><pre class="highlight"><code>From: Release Manager
 To: general@incubator.apache.org
-Cc: dev@beam.incubator.apache.org
+Cc: dev@beam.apache.org
 Subject: [RESULT] [VOTE] Apache Beam release 1.2.3-incubating
 
 There are XXX approving votes, all of which are binding:

http://git-wip-us.apache.org/repos/asf/beam-site/blob/1e4e170f/content/contribute/source-repository/index.html
----------------------------------------------------------------------
diff --git a/content/contribute/source-repository/index.html b/content/contribute/source-repository/index.html
index fd56ed7..6994172 100644
--- a/content/contribute/source-repository/index.html
+++ b/content/contribute/source-repository/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/contribute/source-repository/" 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/contribute/source-repository/" 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),
@@ -151,21 +151,21 @@
 <h2 id="web-browser-access">Web Browser Access</h2>
 <p>The following is a link to a browsable version of the source repository:</p>
 
-<div class="highlighter-rouge"><pre class="highlight"><code>https://git-wip-us.apache.org/repos/asf/incubator-beam.git
+<div class="highlighter-rouge"><pre class="highlight"><code>https://git-wip-us.apache.org/repos/asf/beam.git
 </code></pre>
 </div>
 
 <h2 id="anonymous-access">Anonymous Access</h2>
 <p>The source can be checked out anonymously from Git with this command (See http://git-scm.com/docs/git-clone):</p>
 
-<div class="highlighter-rouge"><pre class="highlight"><code>$ git clone https://git-wip-us.apache.org/repos/asf/incubator-beam.git
+<div class="highlighter-rouge"><pre class="highlight"><code>$ git clone https://git-wip-us.apache.org/repos/asf/beam.git
 </code></pre>
 </div>
 
 <h2 id="developer-access">Developer Access</h2>
 <p>Only project developers can access the Git tree via this method (See http://git-scm.com/docs/git-clone).</p>
 
-<div class="highlighter-rouge"><pre class="highlight"><code>$ git clone https://git-wip-us.apache.org/repos/asf/incubator-beam.git
+<div class="highlighter-rouge"><pre class="highlight"><code>$ git clone https://git-wip-us.apache.org/repos/asf/beam.git
 </code></pre>
 </div>
 

http://git-wip-us.apache.org/repos/asf/beam-site/blob/1e4e170f/content/contribute/team/index.html
----------------------------------------------------------------------
diff --git a/content/contribute/team/index.html b/content/contribute/team/index.html
index 5f962f2..e4f3aa2 100644
--- a/content/contribute/team/index.html
+++ b/content/contribute/team/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/contribute/team/" 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/contribute/team/" 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/contribute/testing/index.html
----------------------------------------------------------------------
diff --git a/content/contribute/testing/index.html b/content/contribute/testing/index.html
index 9443f1c..b317c35 100644
--- a/content/contribute/testing/index.html
+++ b/content/contribute/testing/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/contribute/testing/" 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/contribute/testing/" 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),
@@ -173,7 +173,7 @@
 
 <h2 id="overview">Overview</h2>
 
-<p>Apache Beam (incubating) is a rapidly-maturing software project with a strong
+<p>Apache Beam is a rapidly-maturing software project with a strong
 commitment to testing. Consequently, it has many testing-related needs. It
 requires precommit tests to ensure code going into the repository meets a
 certain quality bar and it requires ongoing postcommit tests to make sure that
@@ -212,7 +212,7 @@ details on those testing types.</p>
    </td>
    <td>DoFnTester
    </td>
-   <td><a href="https://github.com/apache/incubator-beam/blob/master/sdks/java/io/google-cloud-platform/src/test/java/org/apache/beam/sdk/io/gcp/bigquery/BigQueryIOTest.java#L1325">BigQueryIOTest</a>
+   <td><a href="https://github.com/apache/beam/blob/master/sdks/java/io/google-cloud-platform/src/test/java/org/apache/beam/sdk/io/gcp/bigquery/BigQueryIOTest.java#L1325">BigQueryIOTest</a>
    </td>
    <td>Unit
    </td>
@@ -224,9 +224,9 @@ details on those testing types.</p>
    </td>
    <td>Correctly Reads Input
    </td>
-   <td><a href="https://github.com/apache/incubator-beam/blob/master/sdks/java/core/src/main/java/org/apache/beam/sdk/testing/SourceTestUtils.java#L128">SourceTestUtils.readFromSource</a>
+   <td><a href="https://github.com/apache/beam/blob/master/sdks/java/core/src/main/java/org/apache/beam/sdk/testing/SourceTestUtils.java#L128">SourceTestUtils.readFromSource</a>
    </td>
-   <td><a href="https://github.com/apache/incubator-beam/blob/84a0dd1714028370befa80dea16f720edce05252/sdks/java/core/src/test/java/org/apache/beam/sdk/io/TextIOTest.java#L972">TextIOTest</a>
+   <td><a href="https://github.com/apache/beam/blob/84a0dd1714028370befa80dea16f720edce05252/sdks/java/core/src/test/java/org/apache/beam/sdk/io/TextIOTest.java#L972">TextIOTest</a>
    </td>
    <td>Unit
    </td>
@@ -238,9 +238,9 @@ details on those testing types.</p>
    </td>
    <td>Correct Initial Splitting
    </td>
-   <td><a href="https://github.com/apache/incubator-beam/blob/master/sdks/java/core/src/main/java/org/apache/beam/sdk/testing/SourceTestUtils.java#L201">SourceTestUtils.assertSourcesEqualReferenceSource</a>
+   <td><a href="https://github.com/apache/beam/blob/master/sdks/java/core/src/main/java/org/apache/beam/sdk/testing/SourceTestUtils.java#L201">SourceTestUtils.assertSourcesEqualReferenceSource</a>
    </td>
-   <td><a href="https://github.com/apache/incubator-beam/blob/8b1e64a668489297e11926124c4eee6c8f69a3a7/sdks/java/io/google-cloud-platform/src/test/java/org/apache/beam/sdk/io/gcp/bigtable/BigtableIOTest.java#L339">BigtableTest</a>
+   <td><a href="https://github.com/apache/beam/blob/8b1e64a668489297e11926124c4eee6c8f69a3a7/sdks/java/io/google-cloud-platform/src/test/java/org/apache/beam/sdk/io/gcp/bigtable/BigtableIOTest.java#L339">BigtableTest</a>
    </td>
    <td>Unit
    </td>
@@ -252,9 +252,9 @@ details on those testing types.</p>
    </td>
    <td>Correct Dynamic Splitting
    </td>
-   <td><a href="https://github.com/apache/incubator-beam/blob/master/sdks/java/core/src/main/java/org/apache/beam/sdk/testing/SourceTestUtils.java#L541">SourceTestUtils. assertSplitAtFractionExhaustive</a>
+   <td><a href="https://github.com/apache/beam/blob/master/sdks/java/core/src/main/java/org/apache/beam/sdk/testing/SourceTestUtils.java#L541">SourceTestUtils. assertSplitAtFractionExhaustive</a>
    </td>
-   <td><a href="https://github.com/apache/incubator-beam/blob/84a0dd1714028370befa80dea16f720edce05252/sdks/java/core/src/test/java/org/apache/beam/sdk/io/TextIOTest.java#L1021">TextIOTest</a>
+   <td><a href="https://github.com/apache/beam/blob/84a0dd1714028370befa80dea16f720edce05252/sdks/java/core/src/test/java/org/apache/beam/sdk/io/TextIOTest.java#L1021">TextIOTest</a>
    </td>
    <td>Unit
    </td>
@@ -268,7 +268,7 @@ details on those testing types.</p>
    </td>
    <td>@NeedsRunner Test
    </td>
-   <td><a href="https://github.com/apache/incubator-beam/blob/master/sdks/java/core/src/test/java/org/apache/beam/sdk/transforms/ParDoTest.java#L1199">ParDoTest</a>
+   <td><a href="https://github.com/apache/beam/blob/master/sdks/java/core/src/test/java/org/apache/beam/sdk/transforms/ParDoTest.java#L1199">ParDoTest</a>
    </td>
    <td>@NeedsRunner
    </td>
@@ -282,7 +282,7 @@ details on those testing types.</p>
    </td>
    <td>E2E Test
    </td>
-   <td><a href="https://github.com/apache/incubator-beam/blob/master/examples/java/src/test/java/org/apache/beam/examples/WordCountIT.java#L76">WordCountIT</a>
+   <td><a href="https://github.com/apache/beam/blob/master/examples/java/src/test/java/org/apache/beam/examples/WordCountIT.java#L76">WordCountIT</a>
    </td>
    <td>E2E
    </td>
@@ -296,7 +296,7 @@ details on those testing types.</p>
    </td>
    <td>Unit / @NeedsRunner Test
    </td>
-   <td><a href="https://github.com/apache/incubator-beam/blob/84a0dd1714028370befa80dea16f720edce05252/sdks/java/io/google-cloud-platform/src/test/java/org/apache/beam/sdk/io/gcp/bigtable/BigtableIOTest.java#L646">FakeBigtableService in BigtableTest</a>
+   <td><a href="https://github.com/apache/beam/blob/84a0dd1714028370befa80dea16f720edce05252/sdks/java/io/google-cloud-platform/src/test/java/org/apache/beam/sdk/io/gcp/bigtable/BigtableIOTest.java#L646">FakeBigtableService in BigtableTest</a>
    </td>
    <td>Unit / @NeedsRunner
    </td>
@@ -310,7 +310,7 @@ details on those testing types.</p>
    </td>
    <td>E2E Test
    </td>
-   <td><a href="https://github.com/apache/incubator-beam/blob/84a0dd1714028370befa80dea16f720edce05252/sdks/java/io/google-cloud-platform/src/test/java/org/apache/beam/sdk/io/gcp/bigtable/BigtableReadIT.java#L40">BigtableReadIT</a>
+   <td><a href="https://github.com/apache/beam/blob/84a0dd1714028370befa80dea16f720edce05252/sdks/java/io/google-cloud-platform/src/test/java/org/apache/beam/sdk/io/gcp/bigtable/BigtableReadIT.java#L40">BigtableReadIT</a>
    </td>
    <td>E2E
    </td>
@@ -322,9 +322,9 @@ details on those testing types.</p>
    </td>
    <td>Correctness
    </td>
-   <td>E2E Test, <a href="https://github.com/apache/incubator-beam/blob/master/runners/pom.xml#L47">@RunnableonService</a>
+   <td>E2E Test, <a href="https://github.com/apache/beam/blob/master/runners/pom.xml#L47">@RunnableonService</a>
    </td>
-   <td><a href="https://github.com/apache/incubator-beam/blob/master/examples/java/src/test/java/org/apache/beam/examples/WordCountIT.java#L78">WordCountIT</a>, <a href="https://github.com/apache/incubator-beam/blob/master/sdks/java/core/src/test/java/org/apache/beam/sdk/transforms/ParDoTest.java">ParDoTest</a>
+   <td><a href="https://github.com/apache/beam/blob/master/examples/java/src/test/java/org/apache/beam/examples/WordCountIT.java#L78">WordCountIT</a>, <a href="https://github.com/apache/beam/blob/master/sdks/java/core/src/test/java/org/apache/beam/sdk/transforms/ParDoTest.java">ParDoTest</a>
    </td>
    <td>E2E, @RunnableonService
    </td>
@@ -336,9 +336,9 @@ details on those testing types.</p>
    </td>
    <td>Encoding/decoding elements
    </td>
-   <td><a href="https://github.com/apache/incubator-beam/blob/master/sdks/java/core/src/main/java/org/apache/beam/sdk/testing/CoderProperties.java">CoderProperties</a>
+   <td><a href="https://github.com/apache/beam/blob/master/sdks/java/core/src/main/java/org/apache/beam/sdk/testing/CoderProperties.java">CoderProperties</a>
    </td>
-   <td><a href="https://github.com/apache/incubator-beam/blob/master/sdks/java/core/src/test/java/org/apache/beam/sdk/coders/NullableCoderTest.java">NullableCoderTest</a>
+   <td><a href="https://github.com/apache/beam/blob/master/sdks/java/core/src/test/java/org/apache/beam/sdk/coders/NullableCoderTest.java">NullableCoderTest</a>
    </td>
    <td>Unit
    </td>
@@ -350,9 +350,9 @@ details on those testing types.</p>
    </td>
    <td>Serialization/deserialization of Coder
    </td>
-   <td><a href="https://github.com/apache/incubator-beam/blob/master/sdks/java/core/src/main/java/org/apache/beam/sdk/testing/CoderProperties.java">CoderProperties</a>
+   <td><a href="https://github.com/apache/beam/blob/master/sdks/java/core/src/main/java/org/apache/beam/sdk/testing/CoderProperties.java">CoderProperties</a>
    </td>
-   <td><a href="https://github.com/apache/incubator-beam/blob/master/sdks/java/core/src/test/java/org/apache/beam/sdk/coders/NullableCoderTest.java">NullableCoderTest</a>
+   <td><a href="https://github.com/apache/beam/blob/master/sdks/java/core/src/test/java/org/apache/beam/sdk/coders/NullableCoderTest.java">NullableCoderTest</a>
    </td>
    <td>Unit
    </td>
@@ -364,9 +364,9 @@ details on those testing types.</p>
    </td>
    <td>Sizing of elements
    </td>
-   <td><a href="https://github.com/apache/incubator-beam/blob/master/sdks/java/core/src/main/java/org/apache/beam/sdk/testing/CoderProperties.java">CoderProperties</a>
+   <td><a href="https://github.com/apache/beam/blob/master/sdks/java/core/src/main/java/org/apache/beam/sdk/testing/CoderProperties.java">CoderProperties</a>
    </td>
-   <td><a href="https://github.com/apache/incubator-beam/blob/master/sdks/java/core/src/test/java/org/apache/beam/sdk/coders/NullableCoderTest.java">NullableCoderTest</a>
+   <td><a href="https://github.com/apache/beam/blob/master/sdks/java/core/src/test/java/org/apache/beam/sdk/coders/NullableCoderTest.java">NullableCoderTest</a>
    </td>
    <td>Unit
    </td>
@@ -378,9 +378,9 @@ details on those testing types.</p>
    </td>
    <td>Deterministic
    </td>
-   <td><a href="https://github.com/apache/incubator-beam/blob/master/sdks/java/core/src/main/java/org/apache/beam/sdk/testing/CoderProperties.java">CoderProperties</a>
+   <td><a href="https://github.com/apache/beam/blob/master/sdks/java/core/src/main/java/org/apache/beam/sdk/testing/CoderProperties.java">CoderProperties</a>
    </td>
-   <td><a href="https://github.com/apache/incubator-beam/blob/master/sdks/java/core/src/test/java/org/apache/beam/sdk/coders/NullableCoderTest.java">NullableCoderTest</a>
+   <td><a href="https://github.com/apache/beam/blob/master/sdks/java/core/src/test/java/org/apache/beam/sdk/coders/NullableCoderTest.java">NullableCoderTest</a>
    </td>
    <td>Unit
    </td>
@@ -392,9 +392,9 @@ details on those testing types.</p>
    </td>
    <td>Structural value equality
    </td>
-   <td><a href="https://github.com/apache/incubator-beam/blob/master/sdks/java/core/src/main/java/org/apache/beam/sdk/testing/CoderProperties.java">CoderProperties</a>
+   <td><a href="https://github.com/apache/beam/blob/master/sdks/java/core/src/main/java/org/apache/beam/sdk/testing/CoderProperties.java">CoderProperties</a>
    </td>
-   <td><a href="https://github.com/apache/incubator-beam/blob/master/sdks/java/core/src/test/java/org/apache/beam/sdk/coders/NullableCoderTest.java">NullableCoderTest</a>
+   <td><a href="https://github.com/apache/beam/blob/master/sdks/java/core/src/test/java/org/apache/beam/sdk/coders/NullableCoderTest.java">NullableCoderTest</a>
    </td>
    <td>Unit
    </td>
@@ -421,7 +421,7 @@ precommit and postcommit testing.</p>
 <a href="https://builds.apache.org/view/Beam/">Jenkins</a>,
 <a href="http://travis-ci.org/apache/incubator-beam">Travis</a>, and a code coverage tool
 called <a href="https://coveralls.io/github/apache/incubator-beam">Coveralls</a>, hooked up
-to <a href="https://github.com/apache/incubator-beam">Github</a>, to ensure that pull
+to <a href="https://github.com/apache/beam">Github</a>, to ensure that pull
 requests meet a certain quality bar. These precommits verify correctness via two
 of the below testing tools: unit tests (with coverage monitored by Coveralls)
 and E2E tests. We run the full slate of unit tests in precommit, ensuring
@@ -452,7 +452,7 @@ tests run periodically, with timing defined in their Jenkins configurations.</p>
 <p>Adding new postcommit E2E tests is generally as easy as adding a *IT.java file
 to the repository - Failsafe will notice it and run it - but if you want to do
 more interesting things, take a look at
-<a href="https://github.com/apache/incubator-beam/blob/master/examples/java/src/test/java/org/apache/beam/examples/WordCountIT.java">WordCountIT.java</a>.</p>
+<a href="https://github.com/apache/beam/blob/master/examples/java/src/test/java/org/apache/beam/examples/WordCountIT.java">WordCountIT.java</a>.</p>
 
 <p>Postcommit test results can be found in
 <a href="https://builds.apache.org/view/Beam/">Jenkins</a>.</p>

http://git-wip-us.apache.org/repos/asf/beam-site/blob/1e4e170f/content/contribute/work-in-progress/index.html
----------------------------------------------------------------------
diff --git a/content/contribute/work-in-progress/index.html b/content/contribute/work-in-progress/index.html
index 4689c9b..9fb7256 100644
--- a/content/contribute/work-in-progress/index.html
+++ b/content/contribute/work-in-progress/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/contribute/work-in-progress/" 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/contribute/work-in-progress/" 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),
@@ -175,19 +175,19 @@
   <tbody>
     <tr>
       <td>Apache Gearpump Runner</td>
-      <td><a href="https://github.com/apache/incubator-beam/tree/gearpump-runner">gearpump-runner</a></td>
+      <td><a href="https://github.com/apache/beam/tree/gearpump-runner">gearpump-runner</a></td>
       <td><a href="https://issues.apache.org/jira/browse/BEAM/component/12330829">runner-gearpump</a></td>
-      <td><a href="https://github.com/apache/incubator-beam/blob/gearpump-runner/runners/gearpump/README.md">README</a></td>
+      <td><a href="https://github.com/apache/beam/blob/gearpump-runner/runners/gearpump/README.md">README</a></td>
     </tr>
     <tr>
       <td>Python SDK</td>
-      <td><a href="https://github.com/apache/incubator-beam/tree/python-sdk">python-sdk</a></td>
+      <td><a href="https://github.com/apache/beam/tree/python-sdk">python-sdk</a></td>
       <td><a href="https://issues.apache.org/jira/browse/BEAM/component/12328910">sdk-py</a></td>
-      <td><a href="https://github.com/apache/incubator-beam/blob/python-sdk/sdks/python/README.md">README</a></td>
+      <td><a href="https://github.com/apache/beam/blob/python-sdk/sdks/python/README.md">README</a></td>
     </tr>
     <tr>
       <td>Apache Spark 2.0 Runner</td>
-      <td><a href="https://github.com/apache/incubator-beam/tree/runners-spark2">runners-spark2</a></td>
+      <td><a href="https://github.com/apache/beam/tree/runners-spark2">runners-spark2</a></td>
       <td>-</td>
       <td><a href="https://lists.apache.org/thread.html/e38ac4e4914a6cb1b865b1f32a6ca06c2be28ea4aa0f6b18393de66f@%3Cdev.beam.apache.org%3E">thread</a></td>
     </tr>


[2/6] beam-site git commit: Remove incubating references

Posted by da...@apache.org.
Remove incubating references


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

Branch: refs/heads/asf-site
Commit: 50e379319c2620be3ff68e006314b8ae13a2ba9c
Parents: 40c8199
Author: Davor Bonaci <da...@google.com>
Authored: Tue Dec 27 14:01:36 2016 -0800
Committer: Davor Bonaci <da...@google.com>
Committed: Tue Dec 27 16:41:11 2016 -0800

----------------------------------------------------------------------
 README.md                                       |  6 +--
 _config.yml                                     |  4 +-
 src/_posts/2016-03-17-capability-matrix.md      |  2 +-
 src/_posts/2016-04-03-presentation-materials.md |  2 +-
 src/_posts/2016-05-18-splitAtFraction-method.md |  2 +-
 .../2016-10-12-strata-hadoop-world-and-beam.md  |  4 +-
 src/_posts/2016-10-20-test-stream.md            |  6 +--
 src/contribute/contribution-guide.md            | 34 ++++++-------
 src/contribute/maturity-model.md                | 14 +++---
 src/contribute/presentation-materials.md        |  8 +--
 src/contribute/release-guide.md                 | 10 ++--
 src/contribute/source-repository.md             |  6 +--
 src/contribute/testing.md                       | 52 ++++++++++----------
 src/contribute/work-in-progress.md              |  6 +--
 .../pipelines/test-your-pipeline.md             |  8 +--
 src/documentation/programming-guide.md          | 10 ++--
 src/documentation/runners/capability-matrix.md  |  2 +-
 src/documentation/runners/dataflow.md           |  2 +-
 src/documentation/runners/direct.md             |  4 +-
 src/documentation/runners/flink.md              |  2 +-
 src/get-started/mobile-gaming-example.md        | 12 ++---
 src/get-started/support.md                      | 18 +++----
 src/get-started/wordcount-example.md            |  8 +--
 src/index.md                                    | 10 +---
 tools/common_job_properties.groovy              |  4 +-
 tools/job_seed.groovy                           |  2 +-
 26 files changed, 115 insertions(+), 123 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/beam-site/blob/50e37931/README.md
----------------------------------------------------------------------
diff --git a/README.md b/README.md
index 13bc8f1..ba70ef5 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
-# Apache Beam (incubating) website
+# Apache Beam website
 
-This is the website for [Apache Beam](http://beam.incubator.apache.org) (incubating).
+This is the website for [Apache Beam](http://beam.apache.org/).
 
 ## About this site
 
@@ -10,7 +10,7 @@ for additional formatting capabilities, this website uses
 
 This website is hosted at:
 
-    http://beam.incubator.apache.org
+    http://beam.apache.org
 
 
 ### Repository Structure

http://git-wip-us.apache.org/repos/asf/beam-site/blob/50e37931/_config.yml
----------------------------------------------------------------------
diff --git a/_config.yml b/_config.yml
index 3dcc970..3766b1c 100644
--- a/_config.yml
+++ b/_config.yml
@@ -6,7 +6,7 @@
 # 'jekyll serve'. If you change this file, please restart the server process.
 
 # Site settings
-title: Apache Beam (incubating)
+title: Apache Beam
 description: > # this means to ignore newlines until "baseurl:"
   Apache Beam is an open source, unified model and set of language-specific
   SDKs for defining and executing data processing workflows, and also data
@@ -25,7 +25,7 @@ source: src
 destination: content
 
 # the base hostname & protocol for your site
-url: "http://beam.incubator.apache.org"
+url: "http://beam.apache.org"
 
 twitter_username: apachebeam
 

http://git-wip-us.apache.org/repos/asf/beam-site/blob/50e37931/src/_posts/2016-03-17-capability-matrix.md
----------------------------------------------------------------------
diff --git a/src/_posts/2016-03-17-capability-matrix.md b/src/_posts/2016-03-17-capability-matrix.md
index 939f704..a125103 100644
--- a/src/_posts/2016-03-17-capability-matrix.md
+++ b/src/_posts/2016-03-17-capability-matrix.md
@@ -573,7 +573,7 @@ capability-matrix-snapshot:
 
 ---
 
-With initial code drops complete ([Dataflow SDK and Runner](https://github.com/apache/incubator-beam/pull/1), [Flink Runner](https://github.com/apache/incubator-beam/pull/12), [Spark Runner](https://github.com/apache/incubator-beam/pull/42)) and expressed interest in runner implementations for [Storm](https://issues.apache.org/jira/browse/BEAM-9), [Hadoop](https://issues.apache.org/jira/browse/BEAM-19), and [Gearpump](https://issues.apache.org/jira/browse/BEAM-79) (amongst others), we wanted to start addressing a big question in the Apache Beam (incubating) community: what capabilities will each runner be able to support?
+With initial code drops complete ([Dataflow SDK and Runner](https://github.com/apache/beam/pull/1), [Flink Runner](https://github.com/apache/beam/pull/12), [Spark Runner](https://github.com/apache/beam/pull/42)) and expressed interest in runner implementations for [Storm](https://issues.apache.org/jira/browse/BEAM-9), [Hadoop](https://issues.apache.org/jira/browse/BEAM-19), and [Gearpump](https://issues.apache.org/jira/browse/BEAM-79) (amongst others), we wanted to start addressing a big question in the Apache Beam (incubating) community: what capabilities will each runner be able to support?
 
 <!--more-->
 

http://git-wip-us.apache.org/repos/asf/beam-site/blob/50e37931/src/_posts/2016-04-03-presentation-materials.md
----------------------------------------------------------------------
diff --git a/src/_posts/2016-04-03-presentation-materials.md b/src/_posts/2016-04-03-presentation-materials.md
index 3bc05cb..2a535e6 100644
--- a/src/_posts/2016-04-03-presentation-materials.md
+++ b/src/_posts/2016-04-03-presentation-materials.md
@@ -21,4 +21,4 @@ As a community, we want to build a shared collection of high quality presentatio
 * Using Apache Beam with runners
     * [Google Cloud Dataflow](https://goo.gl/2ay8mi)
 
-As Apache Beam grows, so will this repository of presentation materials. We are excited to add new materials as the Apache Beam ecosystem grows with new runners, SDKs, and so on. If you are interested in contributing content or have a request, please see the [Apache Beam presentation materials]({{ site.baseurl }}/learn/presentation-materials/) page or email the [`user@beam.incubator.apache.org`](mailto:user@beam.incubator.apache.org) mailing list with your ideas or questions.
+As Apache Beam grows, so will this repository of presentation materials. We are excited to add new materials as the Apache Beam ecosystem grows with new runners, SDKs, and so on. If you are interested in contributing content or have a request, please see the [Apache Beam presentation materials]({{ site.baseurl }}/learn/presentation-materials/) page or email the [`user@beam.apache.org`](mailto:user@beam.apache.org) mailing list with your ideas or questions.

http://git-wip-us.apache.org/repos/asf/beam-site/blob/50e37931/src/_posts/2016-05-18-splitAtFraction-method.md
----------------------------------------------------------------------
diff --git a/src/_posts/2016-05-18-splitAtFraction-method.md b/src/_posts/2016-05-18-splitAtFraction-method.md
index 649af74..331bf89 100644
--- a/src/_posts/2016-05-18-splitAtFraction-method.md
+++ b/src/_posts/2016-05-18-splitAtFraction-method.md
@@ -14,4 +14,4 @@ This morning, Eugene and Malo from the Google Cloud Dataflow team posted [*No sh
 
 In a large batch processing job with many tasks executing in parallel, some of the tasks -- the stragglers -- can take a much longer time to complete than others, perhaps due to imperfect splitting of the work into parallel chunks when issuing the job. Typically, waiting for stragglers means that the overall job completes later than it should, and may also reserve too many machines that may be underutilized at the end. Cloud Dataflow\u2019s dynamic work rebalancing can mitigate stragglers in most cases.
 
-What I\u2019d like to highlight for the Apache Beam (incubating) community is that Cloud Dataflow\u2019s dynamic work rebalancing is implemented using *runner-specific* control logic on top of Beam\u2019s *runner-independent* [`BoundedSource API`](https://github.com/apache/incubator-beam/blob/9fa97fb2491bc784df53fb0f044409dbbc2af3d7/sdks/java/core/src/main/java/org/apache/beam/sdk/io/BoundedSource.java). Specifically, to steal work from a straggler, a runner need only call the reader\u2019s [`splitAtFraction method`](https://github.com/apache/incubator-beam/blob/3edae9b8b4d7afefb5c803c19bb0a1c21ebba89d/sdks/java/core/src/main/java/org/apache/beam/sdk/io/BoundedSource.java#L266). This will generate a new source containing leftover work, and then the runner can pass that source off to another idle worker. As Beam matures, I hope that other runners are interested in figuring out whether these APIs can help them improve performance, implementing dynamic work rebalancing, and collaborating on API ch
 anges that will help solve other pain points.
+What I\u2019d like to highlight for the Apache Beam (incubating) community is that Cloud Dataflow\u2019s dynamic work rebalancing is implemented using *runner-specific* control logic on top of Beam\u2019s *runner-independent* [`BoundedSource API`](https://github.com/apache/beam/blob/9fa97fb2491bc784df53fb0f044409dbbc2af3d7/sdks/java/core/src/main/java/org/apache/beam/sdk/io/BoundedSource.java). Specifically, to steal work from a straggler, a runner need only call the reader\u2019s [`splitAtFraction method`](https://github.com/apache/beam/blob/3edae9b8b4d7afefb5c803c19bb0a1c21ebba89d/sdks/java/core/src/main/java/org/apache/beam/sdk/io/BoundedSource.java#L266). This will generate a new source containing leftover work, and then the runner can pass that source off to another idle worker. As Beam matures, I hope that other runners are interested in figuring out whether these APIs can help them improve performance, implementing dynamic work rebalancing, and collaborating on API changes that will help
  solve other pain points.

http://git-wip-us.apache.org/repos/asf/beam-site/blob/50e37931/src/_posts/2016-10-12-strata-hadoop-world-and-beam.md
----------------------------------------------------------------------
diff --git a/src/_posts/2016-10-12-strata-hadoop-world-and-beam.md b/src/_posts/2016-10-12-strata-hadoop-world-and-beam.md
index f190762..b78fa4a 100644
--- a/src/_posts/2016-10-12-strata-hadoop-world-and-beam.md
+++ b/src/_posts/2016-10-12-strata-hadoop-world-and-beam.md
@@ -12,13 +12,13 @@ Tyler Akidau and I gave a [three-hour tutorial](http://conferences.oreilly.com/s
 
 <img src="{{ "/images/blog/IMG_20160927_170956.jpg" | prepend: site.baseurl }}" alt="Exercise time">
 
-If you want to take a look at the tutorial materials, we\u2019ve put them up [on GitHub](https://github.com/eljefe6a/beamexample). This includes the [actual slides](https://github.com/eljefe6a/beamexample/blob/master/BeamTutorial/slides.pdf) as well as the [exercises](https://github.com/eljefe6a/beamexample/tree/master/BeamTutorial/src/main/java/org/apache/beam/examples/tutorial/game) that we covered. If you\u2019re looking to learn a little about Beam, this is a good way to start. The exercises are based on an imaginary mobile game where data needs processing and are based on code in the [Beam examples directory](https://github.com/apache/incubator-beam/tree/master/examples/java8/src/main/java/org/apache/beam/examples/complete/game). The code has TODOs for where you need to fill in code or there are full sample solutions to look over our code. You can run these examples on your own machine or on a cluster using a runner that Beam supports.
+If you want to take a look at the tutorial materials, we\u2019ve put them up [on GitHub](https://github.com/eljefe6a/beamexample). This includes the [actual slides](https://github.com/eljefe6a/beamexample/blob/master/BeamTutorial/slides.pdf) as well as the [exercises](https://github.com/eljefe6a/beamexample/tree/master/BeamTutorial/src/main/java/org/apache/beam/examples/tutorial/game) that we covered. If you\u2019re looking to learn a little about Beam, this is a good way to start. The exercises are based on an imaginary mobile game where data needs processing and are based on code in the [Beam examples directory](https://github.com/apache/beam/tree/master/examples/java8/src/main/java/org/apache/beam/examples/complete/game). The code has TODOs for where you need to fill in code or there are full sample solutions to look over our code. You can run these examples on your own machine or on a cluster using a runner that Beam supports.
 
 I want to share some of takeaways I had about Beam during the conference.
 
 The Data Engineers are looking to Beam as a way to [future-proof](https://www.oreilly.com/ideas/future-proof-and-scale-proof-your-code), meaning that code is portable between the various Big Data frameworks. In fact, many of the attendees were still on Hadoop MapReduce and looking to transition to a new framework. They\u2019re realizing that continually rewriting code isn\u2019t the most productive approach.
 
-Data Scientists are really interested in using Beam. They interested in having a single API for doing analysis instead of several different APIs. We talked about Beam\u2019s progress on the Python API. If you want to take a peek, it\u2019s being actively developed on a [feature branch](https://github.com/apache/incubator-beam/tree/python-sdk). As Beam matures, we\u2019re looking to add other supported languages.
+Data Scientists are really interested in using Beam. They interested in having a single API for doing analysis instead of several different APIs. We talked about Beam\u2019s progress on the Python API. If you want to take a peek, it\u2019s being actively developed on a [feature branch](https://github.com/apache/beam/tree/python-sdk). As Beam matures, we\u2019re looking to add other supported languages.
 
 We heard [loud and clear](https://twitter.com/jessetanderson/status/781124173108305920) from Beam users that great runner support is crucial to adoption. We have great Apache Flink support. During the conference we had some more volunteers offer their help on the Spark runner.
 

http://git-wip-us.apache.org/repos/asf/beam-site/blob/50e37931/src/_posts/2016-10-20-test-stream.md
----------------------------------------------------------------------
diff --git a/src/_posts/2016-10-20-test-stream.md b/src/_posts/2016-10-20-test-stream.md
index 418f556..a013582 100644
--- a/src/_posts/2016-10-20-test-stream.md
+++ b/src/_posts/2016-10-20-test-stream.md
@@ -45,8 +45,8 @@ from the Mobile Gaming example series.
 
 ## LeaderBoard and the Mobile Gaming Example
 
-[LeaderBoard](https://github.com/apache/incubator-beam/blob/master/examples/java8/src/main/java/org/apache/beam/examples/complete/game/LeaderBoard.java#L177)
-is part of the [Beam mobile gaming examples](https://github.com/apache/incubator-beam/tree/master/examples/java8/src/main/java/org/apache/beam/examples/complete/game)
+[LeaderBoard](https://github.com/apache/beam/blob/master/examples/java8/src/main/java/org/apache/beam/examples/complete/game/LeaderBoard.java#L177)
+is part of the [Beam mobile gaming examples](https://github.com/apache/beam/tree/master/examples/java8/src/main/java/org/apache/beam/examples/complete/game)
 (and [walkthroughs]({{ site.baseurl }}/get-started/mobile-gaming-example/))
 which produces a continuous accounting of user and team scores. User scores are
 calculated over the lifetime of the program, while team scores are calculated
@@ -63,7 +63,7 @@ The Beam testing infrastructure provides the
 [PAssert]({{ site.baseurl }}/documentation/sdks/javadoc/{{ site.release_latest }}/org/apache/beam/sdk/testing/PAssert.html)
 methods, which assert properties about the contents of a PCollection from within
 a pipeline. We have expanded this infrastructure to include
-[TestStream](https://github.com/apache/incubator-beam/blob/master/sdks/java/core/src/main/java/org/apache/beam/sdk/testing/TestStream.java),
+[TestStream](https://github.com/apache/beam/blob/master/sdks/java/core/src/main/java/org/apache/beam/sdk/testing/TestStream.java),
 which is a PTransform that performs a series of events, consisting of adding
 additional elements to a pipeline, advancing the watermark of the TestStream,
 and advancing the pipeline processing time clock. TestStream permits tests which

http://git-wip-us.apache.org/repos/asf/beam-site/blob/50e37931/src/contribute/contribution-guide.md
----------------------------------------------------------------------
diff --git a/src/contribute/contribution-guide.md b/src/contribute/contribution-guide.md
index 6be6bf3..ba3f5e1 100644
--- a/src/contribute/contribution-guide.md
+++ b/src/contribute/contribution-guide.md
@@ -24,15 +24,15 @@ We use a review-then-commit workflow in Beam for all contributions.
 **For all contributions:**
 
 1. **Code:** The best part ;-)
-1. **Review:** Submit a pull request with your contribution to our [GitHub mirror](https://github.com/apache/incubator-beam/). Work with a committer to review and iterate on the code, if needed.
-1. **Commit:** A Beam committer merges the pull request into our [Apache repository](https://git-wip-us.apache.org/repos/asf/incubator-beam.git).
+1. **Review:** Submit a pull request with your contribution to our [GitHub mirror](https://github.com/apache/beam/). Work with a committer to review and iterate on the code, if needed.
+1. **Commit:** A Beam committer merges the pull request into our [Apache repository](https://git-wip-us.apache.org/repos/asf/beam.git).
 
 We look forward to working with you!
 
 ## Engage
 
 ### Mailing list(s)
-We discuss design and implementation issues on dev@beam.incubator.apache.org mailing list, which is archived [here](https://lists.apache.org/list.html?dev@beam.apache.org). Join by emailing [`dev-subscribe@beam.incubator.apache.org`](mailto:dev-subscribe@beam.incubator.apache.org).
+We discuss design and implementation issues on dev@beam.apache.org mailing list, which is archived [here](https://lists.apache.org/list.html?dev@beam.apache.org). Join by emailing [`dev-subscribe@beam.apache.org`](mailto:dev-subscribe@beam.apache.org).
 
 If interested, you can also join the other [mailing lists]({{ site.baseurl }}/use/mailing-lists/) too.
 
@@ -71,7 +71,7 @@ We use GitHub\u2019s pull request functionality to review proposed code changes.
 If you do not already have a personal GitHub account, sign up [here](https://github.com/join).
 
 #### Fork the repository on GitHub
-Go to the [Beam GitHub mirror](https://github.com/apache/incubator-beam/) and fork the repository to your own private account. This will be your private workspace for staging changes.
+Go to the [Beam GitHub mirror](https://github.com/apache/beam/) and fork the repository to your own private account. This will be your private workspace for staging changes.
 
 We recommend enabling Travis-CI continuous integration coverage on your private fork in order to easily test your changes before proposing a pull request. Go to [Travis-CI](https://travis-ci.org), log in with your GitHub account, and enable coverage for your repository.
 
@@ -82,12 +82,12 @@ We assume you are using SSH-based authentication with GitHub. If necessary, exch
 
 Clone Beam\u2019s read-only GitHub mirror.
 
-    $ git clone https://github.com/apache/incubator-beam.git
+    $ git clone https://github.com/apache/beam.git
     $ cd incubator-beam
 
 Add your forked repository as an additional Git remote, where you\u2019ll push your changes.
 
-	$ git remote add <GitHub_user> git@github.com:<GitHub_user>/incubator-beam.git
+	$ git remote add <GitHub_user> git@github.com:<GitHub_user>/beam.git
 
 You are now ready to start developing!
 
@@ -203,7 +203,7 @@ Organize your commits to make your reviewer\u2019s job easier. Use the following co
 
     $ git rebase -i origin/master
 
-Navigate to the [Beam GitHub mirror](https://github.com/apache/incubator-beam) to create a pull request. The title of the pull request should be strictly in the following format:
+Navigate to the [Beam GitHub mirror](https://github.com/apache/beam) to create a pull request. The title of the pull request should be strictly in the following format:
 
 	[BEAM-<JIRA-issue-#>] <Title of the pull request>
 
@@ -237,7 +237,7 @@ From another local branch, run:
 	$ git push <GitHub_user> --delete <my-branch>
 
 ## Commit (committers only)
-Once the code has been peer reviewed by a committer, the next step is for the committer to merge it into the [authoritative Apache repository](https://git-wip-us.apache.org/repos/asf/incubator-beam.git), not the read-only GitHub mirror. (In the case that the author is also a committer, it is acceptable for either the author or reviewer to do the merge. Just be explicit about whose job it is!)
+Once the code has been peer reviewed by a committer, the next step is for the committer to merge it into the [authoritative Apache repository](https://git-wip-us.apache.org/repos/asf/beam.git), not the read-only GitHub mirror. (In the case that the author is also a committer, it is acceptable for either the author or reviewer to do the merge. Just be explicit about whose job it is!)
 
 Pull requests should not be merged before the review has received an explicit LGTM from another committer. Exceptions to this rule may be made rarely, on a case-by-case basis only, in the committer\u2019s discretion for situations such as build breakages.
 
@@ -248,7 +248,7 @@ Committing is currently a manual process, but we are investigating tools to auto
 ### One-time Setup
 Add the Apache Git remote in your local clone, by running:
 
-    $ git remote add apache https://git-wip-us.apache.org/repos/asf/incubator-beam.git
+    $ git remote add apache https://git-wip-us.apache.org/repos/asf/beam.git
 
 We recommend renaming the `origin` remote to `github`, to avoid confusion when dealing with this many remotes.
 
@@ -262,10 +262,10 @@ For the `github` remote, add an additional fetch reference, which will cause eve
 You can confirm your configuration by running the following command.
 
 	$ git remote -v
-	apache	https://git-wip-us.apache.org/repos/asf/incubator-beam.git (fetch)
-	apache	https://git-wip-us.apache.org/repos/asf/incubator-beam.git (push)
-	github	https://github.com/apache/incubator-beam.git (fetch)
-	github	https://github.com/apache/incubator-beam.git (push)
+	apache	https://git-wip-us.apache.org/repos/asf/beam.git (fetch)
+	apache	https://git-wip-us.apache.org/repos/asf/beam.git (push)
+	github	https://github.com/apache/beam.git (fetch)
+	github	https://github.com/apache/beam.git (push)
 	<username>	git@github.com:<username>/beam.git (fetch)
 	<username>	git@github.com:<username>/beam.git (push)
 
@@ -380,17 +380,17 @@ A new SDK should:
 
 ### Website
 
-The Beam website is in the [Beam Site GitHub mirror](https://github.com/apache/incubator-beam-site) repository in the `asf-site` branch (_not_ `master`). 
+The Beam website is in the [Beam Site GitHub mirror](https://github.com/apache/beam-site) repository in the `asf-site` branch (_not_ `master`). 
 
 Issues are tracked in the [website](https://issues.apache.org/jira/browse/BEAM/component/12328906) component in JIRA.
 
 #### One-time Setup
 
-The [README file](https://github.com/apache/incubator-beam-site/blob/asf-site/README.md) in the website repository has more information on how to set up the required dependencies for your development environment.
+The [README file](https://github.com/apache/beam-site/blob/asf-site/README.md) in the website repository has more information on how to set up the required dependencies for your development environment.
 
 The general guidelines for cloning a repository can be adjusted to use the `asf-site` branch of `incubator-beam-site`:
 
-	$ git clone -b asf-site https://github.com/apache/incubator-beam-site.git
+	$ git clone -b asf-site https://github.com/apache/beam-site.git
 	$ cd incubator-beam-site
 	$ git remote add <GitHub_user> git@github.com:<GitHub_user>/incubator-beam-site.git
 	$ git fetch --all
@@ -412,7 +412,7 @@ Both of these commands will cause the `content/` directory to be generated. Merg
 
 	$ git checkout -- content
 
-When you are ready, submit a pull request using the [Beam Site GitHub mirror](https://github.com/apache/incubator-beam-site), including the JIRA issue as usual.
+When you are ready, submit a pull request using the [Beam Site GitHub mirror](https://github.com/apache/beam-site), including the JIRA issue as usual.
 
 During review, committers will patch in your PR, generate the static `content/`, and review the changes.
 

http://git-wip-us.apache.org/repos/asf/beam-site/blob/50e37931/src/contribute/maturity-model.md
----------------------------------------------------------------------
diff --git a/src/contribute/maturity-model.md b/src/contribute/maturity-model.md
index 57c5662..9123c15 100644
--- a/src/contribute/maturity-model.md
+++ b/src/contribute/maturity-model.md
@@ -29,27 +29,27 @@ The following table summarizes project's self-assessment against the Apache Matu
     <tr>
       <td><p>CD10</p></td>
       <td><p>The project produces Open Source software, for distribution to the public at no charge. [1]</p></td>
-      <td><p><b>YES.</b> The project source code is <a href="https://github.com/apache/incubator-beam/blob/master/LICENSE">licensed</a> under the Apache License, version 2.0.</p></td>
+      <td><p><b>YES.</b> The project source code is <a href="https://github.com/apache/beam/blob/master/LICENSE">licensed</a> under the Apache License, version 2.0.</p></td>
     </tr>
     <tr>
       <td><p>CD20</p></td>
       <td><p>The project&#39;s code is easily discoverable and publicly accessible.</p></td>
-      <td><p><b>YES.</b> Linked from the <a href="{{ site.baseurl }}/contribute/source-repository/">website</a>, available via <a href="https://git-wip-us.apache.org/repos/asf?p%3Dincubator-beam.git">git.apache.org</a> and <a href="https://github.com/apache/incubator-beam">GitHub</a>.</p></td>
+      <td><p><b>YES.</b> Linked from the <a href="{{ site.baseurl }}/contribute/source-repository/">website</a>, available via <a href="https://git-wip-us.apache.org/repos/asf?p%3Dbeam.git">git.apache.org</a> and <a href="https://github.com/apache/beam">GitHub</a>.</p></td>
     </tr>
     <tr>
       <td><p>CD30</p></td>
       <td><p>The code can be built in a reproducible way using widely available standard tools.</p></td>
-      <td><p><b>YES.</b> The project uses Apache Maven and can be built via <a href="https://github.com/apache/incubator-beam/blob/master/README.md">the standard &ldquo;mvn install&rdquo; on any platform</a>.</p></td>
+      <td><p><b>YES.</b> The project uses Apache Maven and can be built via <a href="https://github.com/apache/beam/blob/master/README.md">the standard &ldquo;mvn install&rdquo; on any platform</a>.</p></td>
     </tr>
     <tr>
       <td><p>CD40</p></td>
       <td><p>The full history of the project&#39;s code is available via a source code control system, in a way that allows any released version to be recreated.</p></td>
-      <td><p><b>YES.</b> The project uses a <a href="https://github.com/apache/incubator-beam">git repository</a> and releases are <a href="https://github.com/apache/incubator-beam/releases">tagged</a>.</p><p><b>Even further</b>, all release candidates are <a href="https://github.com/apache/incubator-beam/releases">tagged</a> as well.</p></td>
+      <td><p><b>YES.</b> The project uses a <a href="https://github.com/apache/beam">git repository</a> and releases are <a href="https://github.com/apache/beam/releases">tagged</a>.</p><p><b>Even further</b>, all release candidates are <a href="https://github.com/apache/beam/releases">tagged</a> as well.</p></td>
     </tr>
     <tr>
       <td><p>CD50</p></td>
       <td><p>The provenance of each line of code is established via the source code control system, in a reliable way based on strong authentication of the committer. When third-party contributions are committed, commit messages provide reliable information about the code provenance. [2]</p></td>
-      <td><p><b>YES.</b> The project uses a <a href="https://github.com/apache/incubator-beam">git repository</a>, managed by Apache Infra, ensuring provenance of each line of code to a committer. Third party contributions are accepted in accordance with the <a href="{{ site.baseurl }}/contribute/contribution-guide/">Contribution Guide</a> only.</p></td>
+      <td><p><b>YES.</b> The project uses a <a href="https://github.com/apache/beam">git repository</a>, managed by Apache Infra, ensuring provenance of each line of code to a committer. Third party contributions are accepted in accordance with the <a href="{{ site.baseurl }}/contribute/contribution-guide/">Contribution Guide</a> only.</p></td>
     </tr>
 
     <tr>
@@ -58,7 +58,7 @@ The following table summarizes project's self-assessment against the Apache Matu
     <tr>
       <td><p>LC10</p></td>
       <td><p>The code is released under the Apache License, version 2.0.</p></td>
-      <td><p><b>YES.</b> Source distributions clearly state <a href="https://github.com/apache/incubator-beam/blob/master/LICENSE">license</a>. Convenience binaries clearly state <a href="https://github.com/apache/incubator-beam/blob/master/pom.xml#L41">license</a>.</p></td>
+      <td><p><b>YES.</b> Source distributions clearly state <a href="https://github.com/apache/beam/blob/master/LICENSE">license</a>. Convenience binaries clearly state <a href="https://github.com/apache/beam/blob/master/pom.xml#L41">license</a>.</p></td>
     </tr>
     <tr>
       <td><p>LC20</p></td>
@@ -116,7 +116,7 @@ The following table summarizes project's self-assessment against the Apache Matu
     <tr>
       <td><p>QU10</p></td>
       <td><p>The project is open and honest about the quality of its code. Various levels of quality and maturity for various modules are natural and acceptable as long as they are clearly communicated.</p></td>
-      <td><p><b>YES.</b> The project records all bugs in the <a href="https://issues.apache.org/jira/browse/BEAM">Apache&rsquo;s JIRA issue tracker</a>.</p><p><b>Even further</b>, the project <a href="{{ site.baseurl }}/get-started/downloads/">clearly documents</a> that APIs are subject to change before the first stable release, and which APIs are <a href="https://github.com/apache/incubator-beam/blob/master/sdks/java/core/src/main/java/org/apache/beam/sdk/annotations/Experimental.java#L47">@Experimental</a>.</p></td>
+      <td><p><b>YES.</b> The project records all bugs in the <a href="https://issues.apache.org/jira/browse/BEAM">Apache&rsquo;s JIRA issue tracker</a>.</p><p><b>Even further</b>, the project <a href="{{ site.baseurl }}/get-started/downloads/">clearly documents</a> that APIs are subject to change before the first stable release, and which APIs are <a href="https://github.com/apache/beam/blob/master/sdks/java/core/src/main/java/org/apache/beam/sdk/annotations/Experimental.java#L47">@Experimental</a>.</p></td>
     </tr>
     <tr>
       <td><p>QU20</p></td>

http://git-wip-us.apache.org/repos/asf/beam-site/blob/50e37931/src/contribute/presentation-materials.md
----------------------------------------------------------------------
diff --git a/src/contribute/presentation-materials.md b/src/contribute/presentation-materials.md
index aa86391..4295b58 100644
--- a/src/contribute/presentation-materials.md
+++ b/src/contribute/presentation-materials.md
@@ -18,14 +18,14 @@ Are you interested in learning more about Apache Beam or giving a talk about Apa
 ## Using these materials
 These materials can be used by anyone. If you do use these materials, please remember to give credit to the authors cited in each presentation. These materials include speaker notes and you can view them by clicking **`View`** and selecting **`Show speaker notes`**. Some presentations have `[Long]` or `[Short]` in their name, such as the *Apache Beam Model*, which means there are two different presentations (a long and short version) depending on your needs and time constraints.
 
-If you have any questions about the these materials, please ask on the [`user@beam.incubator.apache.org`](mailto:user@beam.incubator.apache.org) mailing list.
+If you have any questions about the these materials, please ask on the [`user@beam.apache.org`](mailto:user@beam.apache.org) mailing list.
 
-The Apache Beam community is looking for feedback on these materials to improve them over time. If you deliver a presentation based on these materials, we'd love to hear from you on the [`user@beam.incubator.apache.org`](mailto:user@beam.incubator.apache.org) mailing list. Please share your thoughts, questions you were asked, and (if available and appropriate) a link to the recording of your talk so the rest of the Apache Beam community can benefit from it.
+The Apache Beam community is looking for feedback on these materials to improve them over time. If you deliver a presentation based on these materials, we'd love to hear from you on the [`user@beam.apache.org`](mailto:user@beam.apache.org) mailing list. Please share your thoughts, questions you were asked, and (if available and appropriate) a link to the recording of your talk so the rest of the Apache Beam community can benefit from it.
 
 ## Contributing new content
 The Apache Beam community is always looking for new core content and contributions!
 
-If you are interested in contributing new content, we recommend you first search the [Apache Beam JIRA](https://issues.apache.org/jira/browse/BEAM) to see if your idea currently has an open JIRA item. If it does not, send an email to the [`user@beam.incubator.apache.org`](mailto:user@beam.incubator.apache.org) mailing list or open a new issue in the [Apache Beam JIRA](https://issues.apache.org/jira/browse/BEAM) using the [website](https://issues.apache.org/jira/browse/BEAM/component/12328906/?selectedTab=com.atlassian.jira.jira-projects-plugin:component-summary-panel) component. Based on community submissions or contributions, the Beam community collaboratively reviews or creates new content and then adds it to this shared space for everyone to use.
+If you are interested in contributing new content, we recommend you first search the [Apache Beam JIRA](https://issues.apache.org/jira/browse/BEAM) to see if your idea currently has an open JIRA item. If it does not, send an email to the [`user@beam.apache.org`](mailto:user@beam.apache.org) mailing list or open a new issue in the [Apache Beam JIRA](https://issues.apache.org/jira/browse/BEAM) using the [website](https://issues.apache.org/jira/browse/BEAM/component/12328906/?selectedTab=com.atlassian.jira.jira-projects-plugin:component-summary-panel) component. Based on community submissions or contributions, the Beam community collaboratively reviews or creates new content and then adds it to this shared space for everyone to use.
 
 ## Corrections and updates
-If you encounter missing, incorrect, or out of date material, please make a comment in the presentation or send an email to the [`user@beam.incubator.apache.org`](mailto:user@beam.incubator.apache.org) mailing list.
+If you encounter missing, incorrect, or out of date material, please make a comment in the presentation or send an email to the [`user@beam.apache.org`](mailto:user@beam.apache.org) mailing list.

http://git-wip-us.apache.org/repos/asf/beam-site/blob/50e37931/src/contribute/release-guide.md
----------------------------------------------------------------------
diff --git a/src/contribute/release-guide.md b/src/contribute/release-guide.md
index 68b47b5..0848e78 100644
--- a/src/contribute/release-guide.md
+++ b/src/contribute/release-guide.md
@@ -271,7 +271,7 @@ Use Maven Javadoc plugin to generate the new Java reference manual, as follows:
         -Dmaven.javadoc.failOnError=false \
         -DexcludePackageNames="org.apache.beam.examples,org.apache.beam.runners.dataflow.internal,org.apache.beam.runners.flink.examples,org.apache.beam.runners.flink.translation,org.apache.beam.runners.spark.examples,org.apache.beam.runners.spark.translation,org.apache.beam.sdk.microbenchmarks.coders.generated,org.apache.beam.sdk.microbenchmarks.transforms.generated,org.openjdk.jmh.infra.generated"
 
-By default, the Javadoc will be generated in `target/site/apidocs/`. Let `${JAVADOC_ROOT}` be the absolute path to `apidocs`. ([Pull request #1015](https://github.com/apache/incubator-beam/pull/1015) will hopefully simplify this process.)
+By default, the Javadoc will be generated in `target/site/apidocs/`. Let `${JAVADOC_ROOT}` be the absolute path to `apidocs`. ([Pull request #1015](https://github.com/apache/beam/pull/1015) will hopefully simplify this process.)
 
 Please carefully review the generated Javadoc. Check for completeness and presence of all relevant packages and `package-info.java`; consider adding less relevant packages to the `excludePackageNames` configuration. The index page is generated at `${JAVADOC_ROOT}/index.html`.
 
@@ -306,7 +306,7 @@ Once you have built and individually reviewed the release candidate, please shar
 Start the review-and-vote thread on the dev@ mailing list. Here\u2019s an email template; please adjust as you see fit.
 
     From: Release Manager
-    To: dev@beam.incubator.apache.org
+    To: dev@beam.apache.org
     Subject: [VOTE] Release 1.2.3, release candidate #3
 
     Hi everyone,
@@ -338,7 +338,7 @@ If there are any issues found in the release candidate, reply on the vote thread
 If there are no issues, reply on the vote thread to close the voting. Then, tally the votes in a separate email. Here\u2019s an email template; please adjust as you see fit.
 
     From: Release Manager
-    To: dev@beam.incubator.apache.org
+    To: dev@beam.apache.org
     Subject: [RESULT] [VOTE] Release 1.2.3, release candidate #3
 
     I'm happy to announce that we have unanimously approved this release.
@@ -357,7 +357,7 @@ While in incubation, the Apache Incubator PMC must also vote on each release, us
 
     From: Release Manager
     To: general@incubator.apache.org
-    Cc: dev@beam.incubator.apache.org
+    Cc: dev@beam.apache.org
     Subject: [VOTE] Apache Beam release 1.2.3-incubating
 
     Hi everyone,
@@ -392,7 +392,7 @@ If passed, close the voting and summarize the results.
 
     From: Release Manager
     To: general@incubator.apache.org
-    Cc: dev@beam.incubator.apache.org
+    Cc: dev@beam.apache.org
     Subject: [RESULT] [VOTE] Apache Beam release 1.2.3-incubating
 
     There are XXX approving votes, all of which are binding:

http://git-wip-us.apache.org/repos/asf/beam-site/blob/50e37931/src/contribute/source-repository.md
----------------------------------------------------------------------
diff --git a/src/contribute/source-repository.md b/src/contribute/source-repository.md
index 2670a4e..6901054 100644
--- a/src/contribute/source-repository.md
+++ b/src/contribute/source-repository.md
@@ -12,17 +12,17 @@ This project uses [Git](http://git-scm.com) to manage its source code.
 ## Web Browser Access
 The following is a link to a browsable version of the source repository:
 
-    https://git-wip-us.apache.org/repos/asf/incubator-beam.git
+    https://git-wip-us.apache.org/repos/asf/beam.git
 
 ## Anonymous Access
 The source can be checked out anonymously from Git with this command (See http://git-scm.com/docs/git-clone):
 
-    $ git clone https://git-wip-us.apache.org/repos/asf/incubator-beam.git
+    $ git clone https://git-wip-us.apache.org/repos/asf/beam.git
 
 ## Developer Access
 Only project developers can access the Git tree via this method (See http://git-scm.com/docs/git-clone).
 
-    $ git clone https://git-wip-us.apache.org/repos/asf/incubator-beam.git
+    $ git clone https://git-wip-us.apache.org/repos/asf/beam.git
 
 ## Access from Behind a Firewall
 Refer to the documentation of the SCM used for more information about access behind a firewall.

http://git-wip-us.apache.org/repos/asf/beam-site/blob/50e37931/src/contribute/testing.md
----------------------------------------------------------------------
diff --git a/src/contribute/testing.md b/src/contribute/testing.md
index 3743df3..6d43337 100644
--- a/src/contribute/testing.md
+++ b/src/contribute/testing.md
@@ -11,7 +11,7 @@ permalink: /contribute/testing/
 
 ## Overview
 
-Apache Beam (incubating) is a rapidly-maturing software project with a strong
+Apache Beam is a rapidly-maturing software project with a strong
 commitment to testing. Consequently, it has many testing-related needs. It
 requires precommit tests to ensure code going into the repository meets a
 certain quality bar and it requires ongoing postcommit tests to make sure that
@@ -50,7 +50,7 @@ details on those testing types.
    </td>
    <td>DoFnTester
    </td>
-   <td><a href="https://github.com/apache/incubator-beam/blob/master/sdks/java/io/google-cloud-platform/src/test/java/org/apache/beam/sdk/io/gcp/bigquery/BigQueryIOTest.java#L1325">BigQueryIOTest</a>
+   <td><a href="https://github.com/apache/beam/blob/master/sdks/java/io/google-cloud-platform/src/test/java/org/apache/beam/sdk/io/gcp/bigquery/BigQueryIOTest.java#L1325">BigQueryIOTest</a>
    </td>
    <td>Unit
    </td>
@@ -62,9 +62,9 @@ details on those testing types.
    </td>
    <td>Correctly Reads Input
    </td>
-   <td><a href="https://github.com/apache/incubator-beam/blob/master/sdks/java/core/src/main/java/org/apache/beam/sdk/testing/SourceTestUtils.java#L128">SourceTestUtils.readFromSource</a>
+   <td><a href="https://github.com/apache/beam/blob/master/sdks/java/core/src/main/java/org/apache/beam/sdk/testing/SourceTestUtils.java#L128">SourceTestUtils.readFromSource</a>
    </td>
-   <td><a href="https://github.com/apache/incubator-beam/blob/84a0dd1714028370befa80dea16f720edce05252/sdks/java/core/src/test/java/org/apache/beam/sdk/io/TextIOTest.java#L972">TextIOTest</a>
+   <td><a href="https://github.com/apache/beam/blob/84a0dd1714028370befa80dea16f720edce05252/sdks/java/core/src/test/java/org/apache/beam/sdk/io/TextIOTest.java#L972">TextIOTest</a>
    </td>
    <td>Unit
    </td>
@@ -76,9 +76,9 @@ details on those testing types.
    </td>
    <td>Correct Initial Splitting
    </td>
-   <td><a href="https://github.com/apache/incubator-beam/blob/master/sdks/java/core/src/main/java/org/apache/beam/sdk/testing/SourceTestUtils.java#L201">SourceTestUtils.assertSourcesEqualReferenceSource</a>
+   <td><a href="https://github.com/apache/beam/blob/master/sdks/java/core/src/main/java/org/apache/beam/sdk/testing/SourceTestUtils.java#L201">SourceTestUtils.assertSourcesEqualReferenceSource</a>
    </td>
-   <td><a href="https://github.com/apache/incubator-beam/blob/8b1e64a668489297e11926124c4eee6c8f69a3a7/sdks/java/io/google-cloud-platform/src/test/java/org/apache/beam/sdk/io/gcp/bigtable/BigtableIOTest.java#L339">BigtableTest</a>
+   <td><a href="https://github.com/apache/beam/blob/8b1e64a668489297e11926124c4eee6c8f69a3a7/sdks/java/io/google-cloud-platform/src/test/java/org/apache/beam/sdk/io/gcp/bigtable/BigtableIOTest.java#L339">BigtableTest</a>
    </td>
    <td>Unit
    </td>
@@ -90,9 +90,9 @@ details on those testing types.
    </td>
    <td>Correct Dynamic Splitting
    </td>
-   <td><a href="https://github.com/apache/incubator-beam/blob/master/sdks/java/core/src/main/java/org/apache/beam/sdk/testing/SourceTestUtils.java#L541">SourceTestUtils. assertSplitAtFractionExhaustive</a>
+   <td><a href="https://github.com/apache/beam/blob/master/sdks/java/core/src/main/java/org/apache/beam/sdk/testing/SourceTestUtils.java#L541">SourceTestUtils. assertSplitAtFractionExhaustive</a>
    </td>
-   <td><a href="https://github.com/apache/incubator-beam/blob/84a0dd1714028370befa80dea16f720edce05252/sdks/java/core/src/test/java/org/apache/beam/sdk/io/TextIOTest.java#L1021">TextIOTest</a>
+   <td><a href="https://github.com/apache/beam/blob/84a0dd1714028370befa80dea16f720edce05252/sdks/java/core/src/test/java/org/apache/beam/sdk/io/TextIOTest.java#L1021">TextIOTest</a>
    </td>
    <td>Unit
    </td>
@@ -106,7 +106,7 @@ details on those testing types.
    </td>
    <td>@NeedsRunner Test
    </td>
-   <td><a href="https://github.com/apache/incubator-beam/blob/master/sdks/java/core/src/test/java/org/apache/beam/sdk/transforms/ParDoTest.java#L1199">ParDoTest</a>
+   <td><a href="https://github.com/apache/beam/blob/master/sdks/java/core/src/test/java/org/apache/beam/sdk/transforms/ParDoTest.java#L1199">ParDoTest</a>
    </td>
    <td>@NeedsRunner
    </td>
@@ -120,7 +120,7 @@ details on those testing types.
    </td>
    <td>E2E Test
    </td>
-   <td><a href="https://github.com/apache/incubator-beam/blob/master/examples/java/src/test/java/org/apache/beam/examples/WordCountIT.java#L76">WordCountIT</a>
+   <td><a href="https://github.com/apache/beam/blob/master/examples/java/src/test/java/org/apache/beam/examples/WordCountIT.java#L76">WordCountIT</a>
    </td>
    <td>E2E
    </td>
@@ -134,7 +134,7 @@ details on those testing types.
    </td>
    <td>Unit / @NeedsRunner Test
    </td>
-   <td><a href="https://github.com/apache/incubator-beam/blob/84a0dd1714028370befa80dea16f720edce05252/sdks/java/io/google-cloud-platform/src/test/java/org/apache/beam/sdk/io/gcp/bigtable/BigtableIOTest.java#L646">FakeBigtableService in BigtableTest</a>
+   <td><a href="https://github.com/apache/beam/blob/84a0dd1714028370befa80dea16f720edce05252/sdks/java/io/google-cloud-platform/src/test/java/org/apache/beam/sdk/io/gcp/bigtable/BigtableIOTest.java#L646">FakeBigtableService in BigtableTest</a>
    </td>
    <td>Unit / @NeedsRunner
    </td>
@@ -148,7 +148,7 @@ details on those testing types.
    </td>
    <td>E2E Test
    </td>
-   <td><a href="https://github.com/apache/incubator-beam/blob/84a0dd1714028370befa80dea16f720edce05252/sdks/java/io/google-cloud-platform/src/test/java/org/apache/beam/sdk/io/gcp/bigtable/BigtableReadIT.java#L40">BigtableReadIT</a>
+   <td><a href="https://github.com/apache/beam/blob/84a0dd1714028370befa80dea16f720edce05252/sdks/java/io/google-cloud-platform/src/test/java/org/apache/beam/sdk/io/gcp/bigtable/BigtableReadIT.java#L40">BigtableReadIT</a>
    </td>
    <td>E2E
    </td>
@@ -160,9 +160,9 @@ details on those testing types.
    </td>
    <td>Correctness
    </td>
-   <td>E2E Test, <a href="https://github.com/apache/incubator-beam/blob/master/runners/pom.xml#L47">@RunnableonService</a>
+   <td>E2E Test, <a href="https://github.com/apache/beam/blob/master/runners/pom.xml#L47">@RunnableonService</a>
    </td>
-   <td><a href="https://github.com/apache/incubator-beam/blob/master/examples/java/src/test/java/org/apache/beam/examples/WordCountIT.java#L78">WordCountIT</a>, <a href="https://github.com/apache/incubator-beam/blob/master/sdks/java/core/src/test/java/org/apache/beam/sdk/transforms/ParDoTest.java">ParDoTest</a>
+   <td><a href="https://github.com/apache/beam/blob/master/examples/java/src/test/java/org/apache/beam/examples/WordCountIT.java#L78">WordCountIT</a>, <a href="https://github.com/apache/beam/blob/master/sdks/java/core/src/test/java/org/apache/beam/sdk/transforms/ParDoTest.java">ParDoTest</a>
    </td>
    <td>E2E, @RunnableonService
    </td>
@@ -174,9 +174,9 @@ details on those testing types.
    </td>
    <td>Encoding/decoding elements
    </td>
-   <td><a href="https://github.com/apache/incubator-beam/blob/master/sdks/java/core/src/main/java/org/apache/beam/sdk/testing/CoderProperties.java">CoderProperties</a>
+   <td><a href="https://github.com/apache/beam/blob/master/sdks/java/core/src/main/java/org/apache/beam/sdk/testing/CoderProperties.java">CoderProperties</a>
    </td>
-   <td><a href="https://github.com/apache/incubator-beam/blob/master/sdks/java/core/src/test/java/org/apache/beam/sdk/coders/NullableCoderTest.java">NullableCoderTest</a>
+   <td><a href="https://github.com/apache/beam/blob/master/sdks/java/core/src/test/java/org/apache/beam/sdk/coders/NullableCoderTest.java">NullableCoderTest</a>
    </td>
    <td>Unit
    </td>
@@ -188,9 +188,9 @@ details on those testing types.
    </td>
    <td>Serialization/deserialization of Coder
    </td>
-   <td><a href="https://github.com/apache/incubator-beam/blob/master/sdks/java/core/src/main/java/org/apache/beam/sdk/testing/CoderProperties.java">CoderProperties</a>
+   <td><a href="https://github.com/apache/beam/blob/master/sdks/java/core/src/main/java/org/apache/beam/sdk/testing/CoderProperties.java">CoderProperties</a>
    </td>
-   <td><a href="https://github.com/apache/incubator-beam/blob/master/sdks/java/core/src/test/java/org/apache/beam/sdk/coders/NullableCoderTest.java">NullableCoderTest</a>
+   <td><a href="https://github.com/apache/beam/blob/master/sdks/java/core/src/test/java/org/apache/beam/sdk/coders/NullableCoderTest.java">NullableCoderTest</a>
    </td>
    <td>Unit
    </td>
@@ -202,9 +202,9 @@ details on those testing types.
    </td>
    <td>Sizing of elements
    </td>
-   <td><a href="https://github.com/apache/incubator-beam/blob/master/sdks/java/core/src/main/java/org/apache/beam/sdk/testing/CoderProperties.java">CoderProperties</a>
+   <td><a href="https://github.com/apache/beam/blob/master/sdks/java/core/src/main/java/org/apache/beam/sdk/testing/CoderProperties.java">CoderProperties</a>
    </td>
-   <td><a href="https://github.com/apache/incubator-beam/blob/master/sdks/java/core/src/test/java/org/apache/beam/sdk/coders/NullableCoderTest.java">NullableCoderTest</a>
+   <td><a href="https://github.com/apache/beam/blob/master/sdks/java/core/src/test/java/org/apache/beam/sdk/coders/NullableCoderTest.java">NullableCoderTest</a>
    </td>
    <td>Unit
    </td>
@@ -216,9 +216,9 @@ details on those testing types.
    </td>
    <td>Deterministic
    </td>
-   <td><a href="https://github.com/apache/incubator-beam/blob/master/sdks/java/core/src/main/java/org/apache/beam/sdk/testing/CoderProperties.java">CoderProperties</a>
+   <td><a href="https://github.com/apache/beam/blob/master/sdks/java/core/src/main/java/org/apache/beam/sdk/testing/CoderProperties.java">CoderProperties</a>
    </td>
-   <td><a href="https://github.com/apache/incubator-beam/blob/master/sdks/java/core/src/test/java/org/apache/beam/sdk/coders/NullableCoderTest.java">NullableCoderTest</a>
+   <td><a href="https://github.com/apache/beam/blob/master/sdks/java/core/src/test/java/org/apache/beam/sdk/coders/NullableCoderTest.java">NullableCoderTest</a>
    </td>
    <td>Unit
    </td>
@@ -230,9 +230,9 @@ details on those testing types.
    </td>
    <td>Structural value equality
    </td>
-   <td><a href="https://github.com/apache/incubator-beam/blob/master/sdks/java/core/src/main/java/org/apache/beam/sdk/testing/CoderProperties.java">CoderProperties</a>
+   <td><a href="https://github.com/apache/beam/blob/master/sdks/java/core/src/main/java/org/apache/beam/sdk/testing/CoderProperties.java">CoderProperties</a>
    </td>
-   <td><a href="https://github.com/apache/incubator-beam/blob/master/sdks/java/core/src/test/java/org/apache/beam/sdk/coders/NullableCoderTest.java">NullableCoderTest</a>
+   <td><a href="https://github.com/apache/beam/blob/master/sdks/java/core/src/test/java/org/apache/beam/sdk/coders/NullableCoderTest.java">NullableCoderTest</a>
    </td>
    <td>Unit
    </td>
@@ -259,7 +259,7 @@ For precommit testing, Beam uses
 [Jenkins](https://builds.apache.org/view/Beam/),
 [Travis](http://travis-ci.org/apache/incubator-beam), and a code coverage tool
 called [Coveralls](https://coveralls.io/github/apache/incubator-beam), hooked up
-to [Github](https://github.com/apache/incubator-beam), to ensure that pull
+to [Github](https://github.com/apache/beam), to ensure that pull
 requests meet a certain quality bar. These precommits verify correctness via two
 of the below testing tools: unit tests (with coverage monitored by Coveralls)
 and E2E tests. We run the full slate of unit tests in precommit, ensuring
@@ -290,7 +290,7 @@ tests run periodically, with timing defined in their Jenkins configurations.
 Adding new postcommit E2E tests is generally as easy as adding a \*IT.java file
 to the repository - Failsafe will notice it and run it - but if you want to do
 more interesting things, take a look at
-[WordCountIT.java](https://github.com/apache/incubator-beam/blob/master/examples/java/src/test/java/org/apache/beam/examples/WordCountIT.java).
+[WordCountIT.java](https://github.com/apache/beam/blob/master/examples/java/src/test/java/org/apache/beam/examples/WordCountIT.java).
 
 Postcommit test results can be found in
 [Jenkins](https://builds.apache.org/view/Beam/).

http://git-wip-us.apache.org/repos/asf/beam-site/blob/50e37931/src/contribute/work-in-progress.md
----------------------------------------------------------------------
diff --git a/src/contribute/work-in-progress.md b/src/contribute/work-in-progress.md
index 634821a..258f87c 100644
--- a/src/contribute/work-in-progress.md
+++ b/src/contribute/work-in-progress.md
@@ -24,8 +24,8 @@ Current branches include:
 
 | Feature | Branch | JIRA Component | More Info |
 | ---- | ---- | ---- | ---- |
-| Apache Gearpump Runner | [gearpump-runner](https://github.com/apache/incubator-beam/tree/gearpump-runner) | [runner-gearpump](https://issues.apache.org/jira/browse/BEAM/component/12330829) | [README](https://github.com/apache/incubator-beam/blob/gearpump-runner/runners/gearpump/README.md) |
-| Python SDK | [python-sdk](https://github.com/apache/incubator-beam/tree/python-sdk) | [sdk-py](https://issues.apache.org/jira/browse/BEAM/component/12328910) | [README](https://github.com/apache/incubator-beam/blob/python-sdk/sdks/python/README.md) |
-| Apache Spark 2.0 Runner | [runners-spark2](https://github.com/apache/incubator-beam/tree/runners-spark2) | - | [thread](https://lists.apache.org/thread.html/e38ac4e4914a6cb1b865b1f32a6ca06c2be28ea4aa0f6b18393de66f@%3Cdev.beam.apache.org%3E) |
+| Apache Gearpump Runner | [gearpump-runner](https://github.com/apache/beam/tree/gearpump-runner) | [runner-gearpump](https://issues.apache.org/jira/browse/BEAM/component/12330829) | [README](https://github.com/apache/beam/blob/gearpump-runner/runners/gearpump/README.md) |
+| Python SDK | [python-sdk](https://github.com/apache/beam/tree/python-sdk) | [sdk-py](https://issues.apache.org/jira/browse/BEAM/component/12328910) | [README](https://github.com/apache/beam/blob/python-sdk/sdks/python/README.md) |
+| Apache Spark 2.0 Runner | [runners-spark2](https://github.com/apache/beam/tree/runners-spark2) | - | [thread](https://lists.apache.org/thread.html/e38ac4e4914a6cb1b865b1f32a6ca06c2be28ea4aa0f6b18393de66f@%3Cdev.beam.apache.org%3E) |
 {:.table}
 

http://git-wip-us.apache.org/repos/asf/beam-site/blob/50e37931/src/documentation/pipelines/test-your-pipeline.md
----------------------------------------------------------------------
diff --git a/src/documentation/pipelines/test-your-pipeline.md b/src/documentation/pipelines/test-your-pipeline.md
index 247c52c..0145d4d 100644
--- a/src/documentation/pipelines/test-your-pipeline.md
+++ b/src/documentation/pipelines/test-your-pipeline.md
@@ -27,13 +27,13 @@ The Beam SDKs provide a number of ways to unit test your pipeline code, from the
 *   You can test an entire [Composite Transform]({{ site.baseurl }}/documentation/programming-guide/#transforms-composite) as a unit.
 *   You can perform an end-to-end test for an entire pipeline.
 
-To support unit testing, the Beam SDK for Java provides a number of test classes in the [testing package](https://github.com/apache/incubator-beam/tree/master/sdks/java/core/src/test/java/org/apache/beam/sdk). You can use these tests as references and guides.
+To support unit testing, the Beam SDK for Java provides a number of test classes in the [testing package](https://github.com/apache/beam/tree/master/sdks/java/core/src/test/java/org/apache/beam/sdk). You can use these tests as references and guides.
 
 ## Testing Individual DoFn Objects
 
 The code in your pipeline's `DoFn` functions runs often, and often across multiple Compute Engine instances. Unit-testing your `DoFn` objects before running them using a runner service can save a great deal of debugging time and energy.
 
-The Beam SDK for Java provides a convenient way to test an individual `DoFn` called [DoFnTester](https://github.com/apache/incubator-beam/blob/master/sdks/java/core/src/test/java/org/apache/beam/sdk/transforms/DoFnTesterTest.java), which is included in the SDK `Transforms` package.
+The Beam SDK for Java provides a convenient way to test an individual `DoFn` called [DoFnTester](https://github.com/apache/beam/blob/master/sdks/java/core/src/test/java/org/apache/beam/sdk/transforms/DoFnTesterTest.java), which is included in the SDK `Transforms` package.
 
 `DoFnTester`uses the [JUnit](http://junit.org) framework. To use `DoFnTester`, you'll need to do the following:
 
@@ -136,7 +136,7 @@ To test a composite transform you've created, you can use the following pattern:
 
 ### TestPipeline
 
-[TestPipeline](https://github.com/apache/incubator-beam/blob/master/sdks/java/core/src/main/java/org/apache/beam/sdk/testing/TestPipeline.java) is a class included in the Beam Java SDK specifically for testing transforms. For tests, use `TestPipeline` in place of `Pipeline` when you create the pipeline object. Unlike `Pipeline.create`, `TestPipeline.create` handles setting `PipelineOptions` interally.
+[TestPipeline](https://github.com/apache/beam/blob/master/sdks/java/core/src/main/java/org/apache/beam/sdk/testing/TestPipeline.java) is a class included in the Beam Java SDK specifically for testing transforms. For tests, use `TestPipeline` in place of `Pipeline` when you create the pipeline object. Unlike `Pipeline.create`, `TestPipeline.create` handles setting `PipelineOptions` interally.
 
 You create a `TestPipeline` as follows:
 
@@ -178,7 +178,7 @@ Any code that uses `PAssert` must link in `JUnit` and `Hamcrest`. If you're usin
 </dependency>
 ```
 
-For more information on how these classes work, see the [org.apache.beam.sdk.testing](http://beam.incubator.apache.org/documentation/sdks/javadoc/0.3.0-incubating/org/apache/beam/sdk/testing/package-summary.html) package documentation.
+For more information on how these classes work, see the [org.apache.beam.sdk.testing](http://beam.apache.org/documentation/sdks/javadoc/0.3.0-incubating/org/apache/beam/sdk/testing/package-summary.html) package documentation.
 
 ### An Example Test for a Composite Transform
 

http://git-wip-us.apache.org/repos/asf/beam-site/blob/50e37931/src/documentation/programming-guide.md
----------------------------------------------------------------------
diff --git a/src/documentation/programming-guide.md b/src/documentation/programming-guide.md
index 18e7800..7eb5f39 100644
--- a/src/documentation/programming-guide.md
+++ b/src/documentation/programming-guide.md
@@ -62,13 +62,13 @@ When you run your Beam driver program, the Pipeline Runner that you designate co
 
 ## <a name="pipeline"></a>Creating the Pipeline
 
-The `Pipeline` abstraction encapsulates all the data and steps in your data processing task. Your Beam driver program typically starts by constructing a [Pipeline](https://github.com/apache/incubator-beam/blob/master/sdks/java/core/src/main/java/org/apache/beam/sdk/Pipeline.java) object, and then using that object as the basis for creating the pipeline's data sets as `PCollection`s and its operations as `Transform`s.
+The `Pipeline` abstraction encapsulates all the data and steps in your data processing task. Your Beam driver program typically starts by constructing a [Pipeline](https://github.com/apache/beam/blob/master/sdks/java/core/src/main/java/org/apache/beam/sdk/Pipeline.java) object, and then using that object as the basis for creating the pipeline's data sets as `PCollection`s and its operations as `Transform`s.
 
 To use Beam, your driver program must first create an instance of the Beam SDK class `Pipeline` (typically in the `main()` function). When you create your `Pipeline`, you'll also need to set some **configuration options**. You can set your pipeline's configuration options programatically, but it's often easier to set the options ahead of time (or read them from the command line) and pass them to the `Pipeline` object when you create the object.
 
 The pipeline configuration options determine, among other things, the `PipelineRunner` that determines where the pipeline gets executed: locally, or using a distributed back-end of your choice. Depending on where your pipeline gets executed and what your specifed Runner requires, the options can also help you specify other aspects of execution.
 
-To set your pipeline's configuration options and create the pipeline, create an object of type [PipelineOptions](https://github.com/apache/incubator-beam/blob/master/sdks/java/core/src/main/java/org/apache/beam/sdk/options/PipelineOptions.java) and pass it to `Pipeline.Create()`. The most common way to do this is by parsing arguments from the command-line:
+To set your pipeline's configuration options and create the pipeline, create an object of type [PipelineOptions](https://github.com/apache/beam/blob/master/sdks/java/core/src/main/java/org/apache/beam/sdk/options/PipelineOptions.java) and pass it to `Pipeline.Create()`. The most common way to do this is by parsing arguments from the command-line:
 
 ```java
 public static void main(String[] args) {
@@ -85,7 +85,7 @@ The Beam SDKs contain various subclasses of `PipelineOptions` that correspond to
 
 ## <a name="pcollection"></a>Working with PCollections
 
-The [PCollection](https://github.com/apache/incubator-beam/blob/master/sdks/java/core/src/main/java/org/apache/beam/sdk/values/PCollection.java) abstraction represents a potentially distributed, multi-element data set. You can think of a `PCollection` as "pipeline" data; Beam transforms use `PCollection` objects as inputs and outputs. As such, if you want to work with data in your pipeline, it must be in the form of a `PCollection`.
+The [PCollection](https://github.com/apache/beam/blob/master/sdks/java/core/src/main/java/org/apache/beam/sdk/values/PCollection.java) abstraction represents a potentially distributed, multi-element data set. You can think of a `PCollection` as "pipeline" data; Beam transforms use `PCollection` objects as inputs and outputs. As such, if you want to work with data in your pipeline, it must be in the form of a `PCollection`.
 
 After you've created your `Pipeline`, you'll need to begin by creating at least one `PCollection` in some form. The `PCollection` you create serves as the input for the first operation in your pipeline.
 
@@ -379,7 +379,7 @@ Thus, `GroupByKey` represents a transform from a multimap (multiple keys to indi
 
 #### <a name="transforms-combine"></a>Using Combine
 
-<span class="language-java">[`Combine`]({{ site.baseurl }}/documentation/sdks/javadoc/{{ site.release_latest }}/index.html?org/apache/beam/sdk/transforms/Combine.html)</span><span class="language-python">[`Combine`](https://github.com/apache/incubator-beam/blob/python-sdk/sdks/python/apache_beam/transforms/core.py)</span> is a Beam transform for combining collections of elements or values in your data. `Combine` has variants that work on entire `PCollection`s, and some that combine the values for each key in `PCollection`s of key/value pairs.
+<span class="language-java">[`Combine`]({{ site.baseurl }}/documentation/sdks/javadoc/{{ site.release_latest }}/index.html?org/apache/beam/sdk/transforms/Combine.html)</span><span class="language-python">[`Combine`](https://github.com/apache/beam/blob/python-sdk/sdks/python/apache_beam/transforms/core.py)</span> is a Beam transform for combining collections of elements or values in your data. `Combine` has variants that work on entire `PCollection`s, and some that combine the values for each key in `PCollection`s of key/value pairs.
 
 When you apply a `Combine` transform, you must provide the function that contains the logic for combining the elements or values. The combining function should be commutative and associative, as the function is not necessarily invoked exactly once on all values with a given key. Because the input data (including the value collection) may be distributed across multiple workers, the combining function might be called multiple times to perform partial combining on subsets of the value collection. The Beam SDK also provides some pre-built combine functions for common numeric combination operations such as sum, min, and max.
 
@@ -564,7 +564,7 @@ avg_accuracy_per_player = (player_accuracies
 
 #### <a name="transforms-flatten-partition"></a>Using Flatten and Partition
 
-<span class="language-java">[`Flatten`]({{ site.baseurl }}/documentation/sdks/javadoc/{{ site.release_latest }}/index.html?org/apache/beam/sdk/transforms/Flatten.html)</span><span class="language-python">[`Flatten`](https://github.com/apache/incubator-beam/blob/python-sdk/sdks/python/apache_beam/transforms/core.py)</span> and <span class="language-java">[`Partition`]({{ site.baseurl }}/documentation/sdks/javadoc/{{ site.release_latest }}/index.html?org/apache/beam/sdk/transforms/Partition.html)</span><span class="language-python">[`Partition`](https://github.com/apache/incubator-beam/blob/python-sdk/sdks/python/apache_beam/transforms/core.py)</span> are Beam transforms for `PCollection` objects that store the same data type. `Flatten` merges multiple `PCollection` objects into a single logical `PCollection`, and `Partition` splits a single `PCollection` into a fixed number of smaller collections.
+<span class="language-java">[`Flatten`]({{ site.baseurl }}/documentation/sdks/javadoc/{{ site.release_latest }}/index.html?org/apache/beam/sdk/transforms/Flatten.html)</span><span class="language-python">[`Flatten`](https://github.com/apache/beam/blob/python-sdk/sdks/python/apache_beam/transforms/core.py)</span> and <span class="language-java">[`Partition`]({{ site.baseurl }}/documentation/sdks/javadoc/{{ site.release_latest }}/index.html?org/apache/beam/sdk/transforms/Partition.html)</span><span class="language-python">[`Partition`](https://github.com/apache/beam/blob/python-sdk/sdks/python/apache_beam/transforms/core.py)</span> are Beam transforms for `PCollection` objects that store the same data type. `Flatten` merges multiple `PCollection` objects into a single logical `PCollection`, and `Partition` splits a single `PCollection` into a fixed number of smaller collections.
 
 ##### **Flatten**
 

http://git-wip-us.apache.org/repos/asf/beam-site/blob/50e37931/src/documentation/runners/capability-matrix.md
----------------------------------------------------------------------
diff --git a/src/documentation/runners/capability-matrix.md b/src/documentation/runners/capability-matrix.md
index bfb8cc1..c5d91a8 100644
--- a/src/documentation/runners/capability-matrix.md
+++ b/src/documentation/runners/capability-matrix.md
@@ -8,7 +8,7 @@ redirect_from:
 ---
 
 # Beam Capability Matrix
-Apache Beam (incubating) provides a portable API layer for building sophisticated data-parallel processing pipelines that may be executed across a diversity of execution engines, or <i>runners</i>. The core concepts of this layer are based upon the Beam Model (formerly referred to as the [Dataflow Model](http://www.vldb.org/pvldb/vol8/p1792-Akidau.pdf)), and implemented to varying degrees in each Beam runner. To help clarify the capabilities of individual runners, we've created the capability matrix below.
+Apache Beam provides a portable API layer for building sophisticated data-parallel processing pipelines that may be executed across a diversity of execution engines, or <i>runners</i>. The core concepts of this layer are based upon the Beam Model (formerly referred to as the [Dataflow Model](http://www.vldb.org/pvldb/vol8/p1792-Akidau.pdf)), and implemented to varying degrees in each Beam runner. To help clarify the capabilities of individual runners, we've created the capability matrix below.
 
 Individual capabilities have been grouped by their corresponding <span class="wwwh-what-dark">What</span> / <span class="wwwh-where-dark">Where</span> / <span class="wwwh-when-dark">When</span> / <span class="wwwh-how-dark">How</span> question:
 

http://git-wip-us.apache.org/repos/asf/beam-site/blob/50e37931/src/documentation/runners/dataflow.md
----------------------------------------------------------------------
diff --git a/src/documentation/runners/dataflow.md b/src/documentation/runners/dataflow.md
index 57dec4c..14a133c 100644
--- a/src/documentation/runners/dataflow.md
+++ b/src/documentation/runners/dataflow.md
@@ -101,7 +101,7 @@ When executing your pipeline with the Cloud Dataflow Runner, set these pipeline
 </tr>
 </table>
 
-See the reference documentation for the  <span class="language-java">[DataflowPipelineOptions]({{ site.baseurl }}/documentation/sdks/javadoc/{{ site.release_latest }}/index.html?org/apache/beam/runners/dataflow/options/DataflowPipelineOptions.html)</span><span class="language-python">[PipelineOptions](https://github.com/apache/incubator-beam/blob/python-sdk/sdks/python/apache_beam/utils/options.py)</span> interface (and its subinterfaces) for the complete list of pipeline configuration options.
+See the reference documentation for the  <span class="language-java">[DataflowPipelineOptions]({{ site.baseurl }}/documentation/sdks/javadoc/{{ site.release_latest }}/index.html?org/apache/beam/runners/dataflow/options/DataflowPipelineOptions.html)</span><span class="language-python">[PipelineOptions](https://github.com/apache/beam/blob/python-sdk/sdks/python/apache_beam/utils/options.py)</span> interface (and its subinterfaces) for the complete list of pipeline configuration options.
 
 ## Additional information and caveats
 

http://git-wip-us.apache.org/repos/asf/beam-site/blob/50e37931/src/documentation/runners/direct.md
----------------------------------------------------------------------
diff --git a/src/documentation/runners/direct.md b/src/documentation/runners/direct.md
index d01608e..b72b933 100644
--- a/src/documentation/runners/direct.md
+++ b/src/documentation/runners/direct.md
@@ -37,9 +37,9 @@ You must specify your dependency on the Direct Runner.
 
 When executing your pipeline from the command-line, set `runner` to `direct`. The default values for the other pipeline options are generally sufficient.
 
-See the reference documentation for the  <span class="language-java">[`DirectOptions`]({{ site.baseurl }}/documentation/sdks/javadoc/{{ site.release_latest }}/index.html?org/apache/beam/runners/direct/DirectOptions.html)</span><span class="language-python">[`PipelineOptions`](https://github.com/apache/incubator-beam/blob/python-sdk/sdks/python/apache_beam/utils/options.py)</span> interface (and its subinterfaces) for defaults and the complete list of pipeline configuration options.
+See the reference documentation for the  <span class="language-java">[`DirectOptions`]({{ site.baseurl }}/documentation/sdks/javadoc/{{ site.release_latest }}/index.html?org/apache/beam/runners/direct/DirectOptions.html)</span><span class="language-python">[`PipelineOptions`](https://github.com/apache/beam/blob/python-sdk/sdks/python/apache_beam/utils/options.py)</span> interface (and its subinterfaces) for defaults and the complete list of pipeline configuration options.
 
 ## Additional information and caveats
 
-Local execution is limited by the memory available in your local environment. It is highly recommended that you run your pipeline with data sets small enough to fit in local memory. You can create a small in-memory data set using a <span class="language-java">[`Create`]({{ site.baseurl }}/documentation/sdks/javadoc/{{ site.release_latest }}/index.html?org/apache/beam/sdk/transforms/Create.html)</span><span class="language-python">[`Create`](https://github.com/apache/incubator-beam/blob/python-sdk/sdks/python/apache_beam/transforms/core.py)</span> transform, or you can use a <span class="language-java">[`Read`]({{ site.baseurl }}/documentation/sdks/javadoc/{{ site.release_latest }}/index.html?org/apache/beam/sdk/io/Read.html)</span><span class="language-python">[`Read`](https://github.com/apache/incubator-beam/blob/python-sdk/sdks/python/apache_beam/io/iobase.py)</span> transform to work with small local or remote files.
+Local execution is limited by the memory available in your local environment. It is highly recommended that you run your pipeline with data sets small enough to fit in local memory. You can create a small in-memory data set using a <span class="language-java">[`Create`]({{ site.baseurl }}/documentation/sdks/javadoc/{{ site.release_latest }}/index.html?org/apache/beam/sdk/transforms/Create.html)</span><span class="language-python">[`Create`](https://github.com/apache/beam/blob/python-sdk/sdks/python/apache_beam/transforms/core.py)</span> transform, or you can use a <span class="language-java">[`Read`]({{ site.baseurl }}/documentation/sdks/javadoc/{{ site.release_latest }}/index.html?org/apache/beam/sdk/io/Read.html)</span><span class="language-python">[`Read`](https://github.com/apache/beam/blob/python-sdk/sdks/python/apache_beam/io/iobase.py)</span> transform to work with small local or remote files.
 

http://git-wip-us.apache.org/repos/asf/beam-site/blob/50e37931/src/documentation/runners/flink.md
----------------------------------------------------------------------
diff --git a/src/documentation/runners/flink.md b/src/documentation/runners/flink.md
index a984bb4..3fcbf46 100644
--- a/src/documentation/runners/flink.md
+++ b/src/documentation/runners/flink.md
@@ -129,7 +129,7 @@ When executing your pipeline with the Flink Runner, you can set these pipeline o
 </tr>
 </table>
 
-See the reference documentation for the  <span class="language-java">[FlinkPipelineOptions]({{ site.baseurl }}/documentation/sdks/javadoc/{{ site.release_latest }}/index.html?org/apache/beam/runners/flink/FlinkPipelineOptions.html)</span><span class="language-python">[PipelineOptions](https://github.com/apache/incubator-beam/blob/python-sdk/sdks/python/apache_beam/utils/options.py)</span> interface (and its subinterfaces) for the complete list of pipeline configuration options.
+See the reference documentation for the  <span class="language-java">[FlinkPipelineOptions]({{ site.baseurl }}/documentation/sdks/javadoc/{{ site.release_latest }}/index.html?org/apache/beam/runners/flink/FlinkPipelineOptions.html)</span><span class="language-python">[PipelineOptions](https://github.com/apache/beam/blob/python-sdk/sdks/python/apache_beam/utils/options.py)</span> interface (and its subinterfaces) for the complete list of pipeline configuration options.
 
 ## Additional information and caveats
 

http://git-wip-us.apache.org/repos/asf/beam-site/blob/50e37931/src/get-started/mobile-gaming-example.md
----------------------------------------------------------------------
diff --git a/src/get-started/mobile-gaming-example.md b/src/get-started/mobile-gaming-example.md
index 3aee213..eb1ebea 100644
--- a/src/get-started/mobile-gaming-example.md
+++ b/src/get-started/mobile-gaming-example.md
@@ -35,7 +35,7 @@ The Mobile Game example pipelines vary in complexity, from simple batch analysis
 
 The `UserScore` pipeline is the simplest example for processing mobile game data. `UserScore` determines the total score per user over a finite data set (for example, one day's worth of scores stored on the game server). Pipelines like `UserScore` are best run periodically after all relevant data has been gathered. For example, `UserScore` could run as a nightly job over data gathered during that day.
 
-> **Note:** See [UserScore on GitHub](https://github.com/apache/incubator-beam/blob/master/examples/java8/src/main/java/org/apache/beam/examples/complete/game/UserScore.java) for the complete example pipeline program.
+> **Note:** See [UserScore on GitHub](https://github.com/apache/beam/blob/master/examples/java8/src/main/java/org/apache/beam/examples/complete/game/UserScore.java) for the complete example pipeline program.
 
 ### What Does UserScore Do?
 
@@ -144,7 +144,7 @@ The `HourlyTeamScore` pipeline expands on the basic batch analysis principles us
 
 Like `UserScore`, `HourlyTeamScore` is best thought of as a job to be run periodically after all the relevant data has been gathered (such as once per day). The pipeline reads a fixed data set from a file, and writes the results to a Google Cloud BigQuery table, just like `UserScore`.
 
-> **Note:** See [HourlyTeamScore on GitHub](https://github.com/apache/incubator-beam/blob/master/examples/java8/src/main/java/org/apache/beam/examples/complete/game/HourlyTeamScore.java) for the complete example pipeline program.
+> **Note:** See [HourlyTeamScore on GitHub](https://github.com/apache/beam/blob/master/examples/java8/src/main/java/org/apache/beam/examples/complete/game/HourlyTeamScore.java) for the complete example pipeline program.
 
 ### What Does HourlyTeamScore Do?
 
@@ -175,7 +175,7 @@ Notice that as processing time advances, the sums are now _per window_; each win
 
 Beam's windowing feature uses the [intrinsic timestamp information]({{ site.baseurl }}/documentation/programming-guide/#pctimestamps) attached to each element of a `PCollection`. Because we want our pipeline to window based on _event time_, we **must first extract the timestamp** that's embedded in each data record apply it to the corresponding element in the `PCollection` of score data. Then, the pipeline can **apply the windowing function** to divide the `PCollection` into logical windows.
 
-Here's the code, which shows how `HourlyTeamScore` uses the [WithTimestamps](https://github.com/apache/incubator-beam/blob/master/sdks/java/core/src/main/java/org/apache/beam/sdk/transforms/WithTimestamps.java) and [Window](https://github.com/apache/incubator-beam/blob/master/sdks/java/core/src/main/java/org/apache/beam/sdk/transforms/windowing/Window.java) transforms to perform these operations:
+Here's the code, which shows how `HourlyTeamScore` uses the [WithTimestamps](https://github.com/apache/beam/blob/master/sdks/java/core/src/main/java/org/apache/beam/sdk/transforms/WithTimestamps.java) and [Window](https://github.com/apache/beam/blob/master/sdks/java/core/src/main/java/org/apache/beam/sdk/transforms/windowing/Window.java) transforms to perform these operations:
 
 ```java
 // Add an element timestamp based on the event log, and apply fixed windowing.
@@ -272,7 +272,7 @@ The `LeaderBoard` pipeline also demonstrates how to process game score data with
 
 Because the `LeaderBoard` pipeline reads the game data from an unbounded source as that data is generated, you can think of the pipeline as an ongoing job running concurrently with the game process. `LeaderBoard` can thus provide low-latency insights into how users are playing the game at any given moment\u2014useful if, for example, we want to provide a live web-based scoreboard so that users can track their progress against other users as they play.
 
-> **Note:** See [LeaderBoard on GitHub](https://github.com/apache/incubator-beam/blob/master/examples/java8/src/main/java/org/apache/beam/examples/complete/game/LeaderBoard.java) for the complete example pipeline program.
+> **Note:** See [LeaderBoard on GitHub](https://github.com/apache/beam/blob/master/examples/java8/src/main/java/org/apache/beam/examples/complete/game/LeaderBoard.java) for the complete example pipeline program.
 
 ### What Does LeaderBoard Do?
 
@@ -400,7 +400,7 @@ While `LeaderBoard` demonstrates how to use basic windowing and triggers to perf
 
 Like `LeaderBoard`, `GameStats` reads data from an unbounded source. It is best thought of as an ongoing job that provides insight into the game as users play.
 
-> **Note:** See [GameStats on GitHub](https://github.com/apache/incubator-beam/blob/master/examples/java8/src/main/java/org/apache/beam/examples/complete/game/GameStats.java) for the complete example pipeline program.
+> **Note:** See [GameStats on GitHub](https://github.com/apache/beam/blob/master/examples/java8/src/main/java/org/apache/beam/examples/complete/game/GameStats.java) for the complete example pipeline program.
 
 ### What Does GameStats Do?
 
@@ -491,7 +491,7 @@ rawEvents
 
 #### Analyzing Usage Patterns
 
-We can gain some insight on when users are playing our game, and for how long, by examining the event times for each game score and grouping scores with similar event times into _sessions_. `GameStats` uses Beam's built-in [session windowing](https://github.com/apache/incubator-beam/blob/master/sdks/java/core/src/main/java/org/apache/beam/sdk/transforms/windowing/Sessions.java) function to group user scores into sessions based on the time they occurred.
+We can gain some insight on when users are playing our game, and for how long, by examining the event times for each game score and grouping scores with similar event times into _sessions_. `GameStats` uses Beam's built-in [session windowing](https://github.com/apache/beam/blob/master/sdks/java/core/src/main/java/org/apache/beam/sdk/transforms/windowing/Sessions.java) function to group user scores into sessions based on the time they occurred.
 
 When you set session windowing, you specify a _minimum gap duration_ between events. All events whose arrival times are closer together than the minimum gap duration are grouped into the same window. Events where the difference in arrival time is greater than the gap are grouped into separate windows. Depending on how we set our minimum gap duration, we can safely assume that scores in the same session window are part of the same (relatively) uninterrupted stretch of play. Scores in a different window indicate that the user stopped playing the game for at least the minimum gap time before returning to it later.
 

http://git-wip-us.apache.org/repos/asf/beam-site/blob/50e37931/src/get-started/support.md
----------------------------------------------------------------------
diff --git a/src/get-started/support.md b/src/get-started/support.md
index cfb5212..b3c7316 100644
--- a/src/get-started/support.md
+++ b/src/get-started/support.md
@@ -30,25 +30,25 @@ The following are the mailing lists that have been established for the Apache Be
     <tr>
       <th scope="row">user@</th>
       <td>User support and questions</td>
-      <td><a href="mailto:user-subscribe@beam.incubator.apache.org">Subscribe</a></td>
-      <td><a href="mailto:user-unsubscribe@beam.incubator.apache.org">Unsubscribe</a></td>
-      <td><a href="mailto:user@beam.incubator.apache.org">Post</a></td>
+      <td><a href="mailto:user-subscribe@beam.apache.org">Subscribe</a></td>
+      <td><a href="mailto:user-unsubscribe@beam.apache.org">Unsubscribe</a></td>
+      <td><a href="mailto:user@beam.apache.org">Post</a></td>
       <td><a href="https://lists.apache.org/list.html?user@beam.apache.org">Archives</a></td>
     </tr>
     <tr>
       <th scope="row">dev@</th>
       <td>Development-related discussions</td>
-      <td><a href="mailto:dev-subscribe@beam.incubator.apache.org">Subscribe</a></td>
-      <td><a href="mailto:dev-unsubscribe@beam.incubator.apache.org">Unsubscribe</a></td>
-      <td><a href="mailto:dev@beam.incubator.apache.org">Post</a></td>
+      <td><a href="mailto:dev-subscribe@beam.apache.org">Subscribe</a></td>
+      <td><a href="mailto:dev-unsubscribe@beam.apache.org">Unsubscribe</a></td>
+      <td><a href="mailto:dev@beam.apache.org">Post</a></td>
       <td><a href="https://lists.apache.org/list.html?dev@beam.apache.org">Archives</a></td>
     </tr>
     <tr>
       <th scope="row">commits@</th>
       <td>JIRA updates, pull requests, etc.</td>
-      <td><a href="mailto:commits-subscribe@beam.incubator.apache.org">Subscribe</a></td>
-      <td><a href="mailto:commits-unsubscribe@beam.incubator.apache.org">Unsubscribe</a></td>
-      <td><a href="mailto:commits@beam.incubator.apache.org">Post</a></td>
+      <td><a href="mailto:commits-subscribe@beam.apache.org">Subscribe</a></td>
+      <td><a href="mailto:commits-unsubscribe@beam.apache.org">Unsubscribe</a></td>
+      <td><a href="mailto:commits@beam.apache.org">Post</a></td>
       <td><a href="https://lists.apache.org/list.html?commits@beam.apache.org">Archives</a></td>
     </tr>
 </tbody>

http://git-wip-us.apache.org/repos/asf/beam-site/blob/50e37931/src/get-started/wordcount-example.md
----------------------------------------------------------------------
diff --git a/src/get-started/wordcount-example.md b/src/get-started/wordcount-example.md
index 7c98a99..8182124 100644
--- a/src/get-started/wordcount-example.md
+++ b/src/get-started/wordcount-example.md
@@ -25,7 +25,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 [Beam Examples README](https://github.com/apache/incubator-beam/blob/master/examples/java/README.md#building-and-running). To view the full code, see **[MinimalWordCount](https://github.com/apache/incubator-beam/blob/master/examples/java/src/main/java/org/apache/beam/examples/MinimalWordCount.java).**
+To run this example, follow the instructions in the [Beam Examples README](https://github.com/apache/beam/blob/master/examples/java/README.md#building-and-running). 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:**
 
@@ -143,7 +143,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 [Beam Examples README](https://github.com/apache/incubator-beam/blob/master/examples/java/README.md#building-and-running). To view the full code, see **[WordCount](https://github.com/apache/incubator-beam/blob/master/examples/java/src/main/java/org/apache/beam/examples/WordCount.java).**
+To run this example, follow the instructions in the [Beam Examples README](https://github.com/apache/beam/blob/master/examples/java/README.md#building-and-running). 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:**
 
@@ -238,7 +238,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 [Beam Examples README](https://github.com/apache/incubator-beam/blob/master/examples/java/README.md#building-and-running). To view the full code, see **[DebuggingWordCount](https://github.com/apache/incubator-beam/blob/master/examples/java/src/main/java/org/apache/beam/examples/DebuggingWordCount.java).**
+To run this example, follow the instructions in the [Beam Examples README](https://github.com/apache/beam/blob/master/examples/java/README.md#building-and-running). 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:**
 
@@ -297,7 +297,7 @@ The default Dataflow worker logging configuration can be overridden by specifyin
 
 `PAssert` is a set of convenient `PTransform`s in the style of Hamcrest's collection matchers that can be used when writing Pipeline level tests to validate the contents of PCollections. `PAssert` is best used in unit tests with small data sets, but is demonstrated here as a teaching tool.
 
-Below, we verify that the set of filtered words matches our expected counts. Note that `PAssert` does not provide any output, and that successful completion of the pipeline implies that the expectations were met. See [DebuggingWordCountTest](https://github.com/apache/incubator-beam/blob/master/examples/java/src/test/java/org/apache/beam/examples/DebuggingWordCountTest.java) for an example unit test.
+Below, we verify that the set of filtered words matches our expected counts. Note that `PAssert` does not provide any output, and that successful completion of the pipeline implies that the expectations were met. See [DebuggingWordCountTest](https://github.com/apache/beam/blob/master/examples/java/src/test/java/org/apache/beam/examples/DebuggingWordCountTest.java) for an example unit test.
 
 ```java
 public static void main(String[] args) {


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

Posted by da...@apache.org.
http://git-wip-us.apache.org/repos/asf/beam-site/blob/1e4e170f/content/contribution-guide/index.html
----------------------------------------------------------------------
diff --git a/content/contribution-guide/index.html b/content/contribution-guide/index.html
index b48b19c..7fb39a9 100644
--- a/content/contribution-guide/index.html
+++ b/content/contribution-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/contribute/contribution-guide/">
-<meta http-equiv="refresh" content="0; url=http://beam.incubator.apache.org/contribute/contribution-guide/">
+<link rel="canonical" href="http://beam.apache.org/contribute/contribution-guide/">
+<meta http-equiv="refresh" content="0; url=http://beam.apache.org/contribute/contribution-guide/">
 <h1>Redirecting\u2026</h1>
-<a href="http://beam.incubator.apache.org/contribute/contribution-guide/">Click here if you are not redirected.</a>
-<script>location="http://beam.incubator.apache.org/contribute/contribution-guide/"</script>
+<a href="http://beam.apache.org/contribute/contribution-guide/">Click here if you are not redirected.</a>
+<script>location="http://beam.apache.org/contribute/contribution-guide/"</script>
 </html>

http://git-wip-us.apache.org/repos/asf/beam-site/blob/1e4e170f/content/docs/contribute.html
----------------------------------------------------------------------
diff --git a/content/docs/contribute.html b/content/docs/contribute.html
index cfae54e..e6b605f 100644
--- a/content/docs/contribute.html
+++ b/content/docs/contribute.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/">
-<meta http-equiv="refresh" content="0; url=http://beam.incubator.apache.org/contribute/">
+<link rel="canonical" href="http://beam.apache.org/contribute/">
+<meta http-equiv="refresh" content="0; url=http://beam.apache.org/contribute/">
 <h1>Redirecting\u2026</h1>
-<a href="http://beam.incubator.apache.org/contribute/">Click here if you are not redirected.</a>
-<script>location="http://beam.incubator.apache.org/contribute/"</script>
+<a href="http://beam.apache.org/contribute/">Click here if you are not redirected.</a>
+<script>location="http://beam.apache.org/contribute/"</script>
 </html>

http://git-wip-us.apache.org/repos/asf/beam-site/blob/1e4e170f/content/docs/learn/index.html
----------------------------------------------------------------------
diff --git a/content/docs/learn/index.html b/content/docs/learn/index.html
index 922447a..2431768 100644
--- a/content/docs/learn/index.html
+++ b/content/docs/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/docs/learn/programming-guide/index.html
----------------------------------------------------------------------
diff --git a/content/docs/learn/programming-guide/index.html b/content/docs/learn/programming-guide/index.html
index 14bdce8..33aac66 100644
--- a/content/docs/learn/programming-guide/index.html
+++ b/content/docs/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/docs/use/beam-overview/index.html
----------------------------------------------------------------------
diff --git a/content/docs/use/beam-overview/index.html b/content/docs/use/beam-overview/index.html
index a6cca54..df2a24a 100644
--- a/content/docs/use/beam-overview/index.html
+++ b/content/docs/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/docs/use/index.html
----------------------------------------------------------------------
diff --git a/content/docs/use/index.html b/content/docs/use/index.html
index 748b95e..6b1aa7d 100644
--- a/content/docs/use/index.html
+++ b/content/docs/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/documentation/index.html
----------------------------------------------------------------------
diff --git a/content/documentation/index.html b/content/documentation/index.html
index 787cd44..1259a66 100644
--- a/content/documentation/index.html
+++ b/content/documentation/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/documentation/" 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/documentation/" 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/documentation/pipelines/create-your-pipeline/index.html
----------------------------------------------------------------------
diff --git a/content/documentation/pipelines/create-your-pipeline/index.html b/content/documentation/pipelines/create-your-pipeline/index.html
index c1b33ad..12ed2ae 100644
--- a/content/documentation/pipelines/create-your-pipeline/index.html
+++ b/content/documentation/pipelines/create-your-pipeline/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/documentation/pipelines/create-your-pipeline/" 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/documentation/pipelines/create-your-pipeline/" 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/documentation/pipelines/design-your-pipeline/index.html
----------------------------------------------------------------------
diff --git a/content/documentation/pipelines/design-your-pipeline/index.html b/content/documentation/pipelines/design-your-pipeline/index.html
index d4c516d..e4a2329 100644
--- a/content/documentation/pipelines/design-your-pipeline/index.html
+++ b/content/documentation/pipelines/design-your-pipeline/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/documentation/pipelines/design-your-pipeline/" 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/documentation/pipelines/design-your-pipeline/" 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/documentation/pipelines/test-your-pipeline/index.html
----------------------------------------------------------------------
diff --git a/content/documentation/pipelines/test-your-pipeline/index.html b/content/documentation/pipelines/test-your-pipeline/index.html
index d142efd..5682a87 100644
--- a/content/documentation/pipelines/test-your-pipeline/index.html
+++ b/content/documentation/pipelines/test-your-pipeline/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/documentation/pipelines/test-your-pipeline/" 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/documentation/pipelines/test-your-pipeline/" 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),
@@ -185,13 +185,13 @@
   <li>You can perform an end-to-end test for an entire pipeline.</li>
 </ul>
 
-<p>To support unit testing, the Beam SDK for Java provides a number of test classes in the <a href="https://github.com/apache/incubator-beam/tree/master/sdks/java/core/src/test/java/org/apache/beam/sdk">testing package</a>. You can use these tests as references and guides.</p>
+<p>To support unit testing, the Beam SDK for Java provides a number of test classes in the <a href="https://github.com/apache/beam/tree/master/sdks/java/core/src/test/java/org/apache/beam/sdk">testing package</a>. You can use these tests as references and guides.</p>
 
 <h2 id="testing-individual-dofn-objects">Testing Individual DoFn Objects</h2>
 
 <p>The code in your pipeline\u2019s <code class="highlighter-rouge">DoFn</code> functions runs often, and often across multiple Compute Engine instances. Unit-testing your <code class="highlighter-rouge">DoFn</code> objects before running them using a runner service can save a great deal of debugging time and energy.</p>
 
-<p>The Beam SDK for Java provides a convenient way to test an individual <code class="highlighter-rouge">DoFn</code> called <a href="https://github.com/apache/incubator-beam/blob/master/sdks/java/core/src/test/java/org/apache/beam/sdk/transforms/DoFnTesterTest.java">DoFnTester</a>, which is included in the SDK <code class="highlighter-rouge">Transforms</code> package.</p>
+<p>The Beam SDK for Java provides a convenient way to test an individual <code class="highlighter-rouge">DoFn</code> called <a href="https://github.com/apache/beam/blob/master/sdks/java/core/src/test/java/org/apache/beam/sdk/transforms/DoFnTesterTest.java">DoFnTester</a>, which is included in the SDK <code class="highlighter-rouge">Transforms</code> package.</p>
 
 <p><code class="highlighter-rouge">DoFnTester</code>uses the <a href="http://junit.org">JUnit</a> framework. To use <code class="highlighter-rouge">DoFnTester</code>, you\u2019ll need to do the following:</p>
 
@@ -298,7 +298,7 @@
 
 <h3 id="testpipeline">TestPipeline</h3>
 
-<p><a href="https://github.com/apache/incubator-beam/blob/master/sdks/java/core/src/main/java/org/apache/beam/sdk/testing/TestPipeline.java">TestPipeline</a> is a class included in the Beam Java SDK specifically for testing transforms. For tests, use <code class="highlighter-rouge">TestPipeline</code> in place of <code class="highlighter-rouge">Pipeline</code> when you create the pipeline object. Unlike <code class="highlighter-rouge">Pipeline.create</code>, <code class="highlighter-rouge">TestPipeline.create</code> handles setting <code class="highlighter-rouge">PipelineOptions</code> interally.</p>
+<p><a href="https://github.com/apache/beam/blob/master/sdks/java/core/src/main/java/org/apache/beam/sdk/testing/TestPipeline.java">TestPipeline</a> is a class included in the Beam Java SDK specifically for testing transforms. For tests, use <code class="highlighter-rouge">TestPipeline</code> in place of <code class="highlighter-rouge">Pipeline</code> when you create the pipeline object. Unlike <code class="highlighter-rouge">Pipeline.create</code>, <code class="highlighter-rouge">TestPipeline.create</code> handles setting <code class="highlighter-rouge">PipelineOptions</code> interally.</p>
 
 <p>You create a <code class="highlighter-rouge">TestPipeline</code> as follows:</p>
 
@@ -342,7 +342,7 @@
 </code></pre>
 </div>
 
-<p>For more information on how these classes work, see the <a href="http://beam.incubator.apache.org/documentation/sdks/javadoc/0.3.0-incubating/org/apache/beam/sdk/testing/package-summary.html">org.apache.beam.sdk.testing</a> package documentation.</p>
+<p>For more information on how these classes work, see the <a href="http://beam.apache.org/documentation/sdks/javadoc/0.3.0-incubating/org/apache/beam/sdk/testing/package-summary.html">org.apache.beam.sdk.testing</a> package documentation.</p>
 
 <h3 id="an-example-test-for-a-composite-transform">An Example Test for a Composite Transform</h3>
 

http://git-wip-us.apache.org/repos/asf/beam-site/blob/1e4e170f/content/documentation/programming-guide/index.html
----------------------------------------------------------------------
diff --git a/content/documentation/programming-guide/index.html b/content/documentation/programming-guide/index.html
index aa97bb6..1781e53 100644
--- a/content/documentation/programming-guide/index.html
+++ b/content/documentation/programming-guide/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/documentation/programming-guide/" 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/documentation/programming-guide/" 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),
@@ -219,13 +219,13 @@
 
 <h2 id="a-namepipelineacreating-the-pipeline"><a name="pipeline"></a>Creating the Pipeline</h2>
 
-<p>The <code class="highlighter-rouge">Pipeline</code> abstraction encapsulates all the data and steps in your data processing task. Your Beam driver program typically starts by constructing a <a href="https://github.com/apache/incubator-beam/blob/master/sdks/java/core/src/main/java/org/apache/beam/sdk/Pipeline.java">Pipeline</a> object, and then using that object as the basis for creating the pipeline\u2019s data sets as <code class="highlighter-rouge">PCollection</code>s and its operations as <code class="highlighter-rouge">Transform</code>s.</p>
+<p>The <code class="highlighter-rouge">Pipeline</code> abstraction encapsulates all the data and steps in your data processing task. Your Beam driver program typically starts by constructing a <a href="https://github.com/apache/beam/blob/master/sdks/java/core/src/main/java/org/apache/beam/sdk/Pipeline.java">Pipeline</a> object, and then using that object as the basis for creating the pipeline\u2019s data sets as <code class="highlighter-rouge">PCollection</code>s and its operations as <code class="highlighter-rouge">Transform</code>s.</p>
 
 <p>To use Beam, your driver program must first create an instance of the Beam SDK class <code class="highlighter-rouge">Pipeline</code> (typically in the <code class="highlighter-rouge">main()</code> function). When you create your <code class="highlighter-rouge">Pipeline</code>, you\u2019ll also need to set some <strong>configuration options</strong>. You can set your pipeline\u2019s configuration options programatically, but it\u2019s often easier to set the options ahead of time (or read them from the command line) and pass them to the <code class="highlighter-rouge">Pipeline</code> object when you create the object.</p>
 
 <p>The pipeline configuration options determine, among other things, the <code class="highlighter-rouge">PipelineRunner</code> that determines where the pipeline gets executed: locally, or using a distributed back-end of your choice. Depending on where your pipeline gets executed and what your specifed Runner requires, the options can also help you specify other aspects of execution.</p>
 
-<p>To set your pipeline\u2019s configuration options and create the pipeline, create an object of type <a href="https://github.com/apache/incubator-beam/blob/master/sdks/java/core/src/main/java/org/apache/beam/sdk/options/PipelineOptions.java">PipelineOptions</a> and pass it to <code class="highlighter-rouge">Pipeline.Create()</code>. The most common way to do this is by parsing arguments from the command-line:</p>
+<p>To set your pipeline\u2019s configuration options and create the pipeline, create an object of type <a href="https://github.com/apache/beam/blob/master/sdks/java/core/src/main/java/org/apache/beam/sdk/options/PipelineOptions.java">PipelineOptions</a> and pass it to <code class="highlighter-rouge">Pipeline.Create()</code>. The most common way to do this is by parsing arguments from the command-line:</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="c1">// Will parse the arguments passed into the application and construct a PipelineOptions</span>
@@ -242,7 +242,7 @@
 
 <h2 id="a-namepcollectionaworking-with-pcollections"><a name="pcollection"></a>Working with PCollections</h2>
 
-<p>The <a href="https://github.com/apache/incubator-beam/blob/master/sdks/java/core/src/main/java/org/apache/beam/sdk/values/PCollection.java">PCollection</a> abstraction represents a potentially distributed, multi-element data set. You can think of a <code class="highlighter-rouge">PCollection</code> as \u201cpipeline\u201d data; Beam transforms use <code class="highlighter-rouge">PCollection</code> objects as inputs and outputs. As such, if you want to work with data in your pipeline, it must be in the form of a <code class="highlighter-rouge">PCollection</code>.</p>
+<p>The <a href="https://github.com/apache/beam/blob/master/sdks/java/core/src/main/java/org/apache/beam/sdk/values/PCollection.java">PCollection</a> abstraction represents a potentially distributed, multi-element data set. You can think of a <code class="highlighter-rouge">PCollection</code> as \u201cpipeline\u201d data; Beam transforms use <code class="highlighter-rouge">PCollection</code> objects as inputs and outputs. As such, if you want to work with data in your pipeline, it must be in the form of a <code class="highlighter-rouge">PCollection</code>.</p>
 
 <p>After you\u2019ve created your <code class="highlighter-rouge">Pipeline</code>, you\u2019ll need to begin by creating at least one <code class="highlighter-rouge">PCollection</code> in some form. The <code class="highlighter-rouge">PCollection</code> you create serves as the input for the first operation in your pipeline.</p>
 
@@ -553,7 +553,7 @@ tree, [2]
 
 <h4 id="a-nametransforms-combineausing-combine"><a name="transforms-combine"></a>Using Combine</h4>
 
-<p><span class="language-java"><a href="/documentation/sdks/javadoc/0.3.0-incubating/index.html?org/apache/beam/sdk/transforms/Combine.html"><code class="highlighter-rouge">Combine</code></a></span><span class="language-python"><a href="https://github.com/apache/incubator-beam/blob/python-sdk/sdks/python/apache_beam/transforms/core.py"><code class="highlighter-rouge">Combine</code></a></span> is a Beam transform for combining collections of elements or values in your data. <code class="highlighter-rouge">Combine</code> has variants that work on entire <code class="highlighter-rouge">PCollection</code>s, and some that combine the values for each key in <code class="highlighter-rouge">PCollection</code>s of key/value pairs.</p>
+<p><span class="language-java"><a href="/documentation/sdks/javadoc/0.3.0-incubating/index.html?org/apache/beam/sdk/transforms/Combine.html"><code class="highlighter-rouge">Combine</code></a></span><span class="language-python"><a href="https://github.com/apache/beam/blob/python-sdk/sdks/python/apache_beam/transforms/core.py"><code class="highlighter-rouge">Combine</code></a></span> is a Beam transform for combining collections of elements or values in your data. <code class="highlighter-rouge">Combine</code> has variants that work on entire <code class="highlighter-rouge">PCollection</code>s, and some that combine the values for each key in <code class="highlighter-rouge">PCollection</code>s of key/value pairs.</p>
 
 <p>When you apply a <code class="highlighter-rouge">Combine</code> transform, you must provide the function that contains the logic for combining the elements or values. The combining function should be commutative and associative, as the function is not necessarily invoked exactly once on all values with a given key. Because the input data (including the value collection) may be distributed across multiple workers, the combining function might be called multiple times to perform partial combining on subsets of the value collection. The Beam SDK also provides some pre-built combine functions for common numeric combination operations such as sum, min, and max.</p>
 
@@ -746,7 +746,7 @@ tree, [2]
 
 <h4 id="a-nametransforms-flatten-partitionausing-flatten-and-partition"><a name="transforms-flatten-partition"></a>Using Flatten and Partition</h4>
 
-<p><span class="language-java"><a href="/documentation/sdks/javadoc/0.3.0-incubating/index.html?org/apache/beam/sdk/transforms/Flatten.html"><code class="highlighter-rouge">Flatten</code></a></span><span class="language-python"><a href="https://github.com/apache/incubator-beam/blob/python-sdk/sdks/python/apache_beam/transforms/core.py"><code class="highlighter-rouge">Flatten</code></a></span> and <span class="language-java"><a href="/documentation/sdks/javadoc/0.3.0-incubating/index.html?org/apache/beam/sdk/transforms/Partition.html"><code class="highlighter-rouge">Partition</code></a></span><span class="language-python"><a href="https://github.com/apache/incubator-beam/blob/python-sdk/sdks/python/apache_beam/transforms/core.py"><code class="highlighter-rouge">Partition</code></a></span> are Beam transforms for <code class="highlighter-rouge">PCollection</code> objects that store the same data type. <code class="highlighter-rouge">Flatten</code> merges multiple <code class="highligh
 ter-rouge">PCollection</code> objects into a single logical <code class="highlighter-rouge">PCollection</code>, and <code class="highlighter-rouge">Partition</code> splits a single <code class="highlighter-rouge">PCollection</code> into a fixed number of smaller collections.</p>
+<p><span class="language-java"><a href="/documentation/sdks/javadoc/0.3.0-incubating/index.html?org/apache/beam/sdk/transforms/Flatten.html"><code class="highlighter-rouge">Flatten</code></a></span><span class="language-python"><a href="https://github.com/apache/beam/blob/python-sdk/sdks/python/apache_beam/transforms/core.py"><code class="highlighter-rouge">Flatten</code></a></span> and <span class="language-java"><a href="/documentation/sdks/javadoc/0.3.0-incubating/index.html?org/apache/beam/sdk/transforms/Partition.html"><code class="highlighter-rouge">Partition</code></a></span><span class="language-python"><a href="https://github.com/apache/beam/blob/python-sdk/sdks/python/apache_beam/transforms/core.py"><code class="highlighter-rouge">Partition</code></a></span> are Beam transforms for <code class="highlighter-rouge">PCollection</code> objects that store the same data type. <code class="highlighter-rouge">Flatten</code> merges multiple <code class="highlighter-rouge">PCollecti
 on</code> objects into a single logical <code class="highlighter-rouge">PCollection</code>, and <code class="highlighter-rouge">Partition</code> splits a single <code class="highlighter-rouge">PCollection</code> into a fixed number of smaller collections.</p>
 
 <h5 id="flatten"><strong>Flatten</strong></h5>
 

http://git-wip-us.apache.org/repos/asf/beam-site/blob/1e4e170f/content/documentation/resources/index.html
----------------------------------------------------------------------
diff --git a/content/documentation/resources/index.html b/content/documentation/resources/index.html
index 128f5cc..21a707f 100644
--- a/content/documentation/resources/index.html
+++ b/content/documentation/resources/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/documentation/resources/" 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/documentation/resources/" 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/documentation/runners/apex/index.html
----------------------------------------------------------------------
diff --git a/content/documentation/runners/apex/index.html b/content/documentation/runners/apex/index.html
index 68a5daa..9d94a8a 100644
--- a/content/documentation/runners/apex/index.html
+++ b/content/documentation/runners/apex/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/documentation/runners/apex/" 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/documentation/runners/apex/" 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/documentation/runners/capability-matrix/index.html
----------------------------------------------------------------------
diff --git a/content/documentation/runners/capability-matrix/index.html b/content/documentation/runners/capability-matrix/index.html
index c582f9e..e7917b6 100644
--- a/content/documentation/runners/capability-matrix/index.html
+++ b/content/documentation/runners/capability-matrix/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/documentation/runners/capability-matrix/" 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/documentation/runners/capability-matrix/" 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),
@@ -145,7 +145,7 @@
 
       <div class="row">
         <h1 id="beam-capability-matrix">Beam Capability Matrix</h1>
-<p>Apache Beam (incubating) provides a portable API layer for building sophisticated data-parallel processing pipelines that may be executed across a diversity of execution engines, or <i>runners</i>. The core concepts of this layer are based upon the Beam Model (formerly referred to as the <a href="http://www.vldb.org/pvldb/vol8/p1792-Akidau.pdf">Dataflow Model</a>), and implemented to varying degrees in each Beam runner. To help clarify the capabilities of individual runners, we\u2019ve created the capability matrix below.</p>
+<p>Apache Beam provides a portable API layer for building sophisticated data-parallel processing pipelines that may be executed across a diversity of execution engines, or <i>runners</i>. The core concepts of this layer are based upon the Beam Model (formerly referred to as the <a href="http://www.vldb.org/pvldb/vol8/p1792-Akidau.pdf">Dataflow Model</a>), and implemented to varying degrees in each Beam runner. To help clarify the capabilities of individual runners, we\u2019ve created the capability matrix below.</p>
 
 <p>Individual capabilities have been grouped by their corresponding <span class="wwwh-what-dark">What</span> / <span class="wwwh-where-dark">Where</span> / <span class="wwwh-when-dark">When</span> / <span class="wwwh-how-dark">How</span> question:</p>
 

http://git-wip-us.apache.org/repos/asf/beam-site/blob/1e4e170f/content/documentation/runners/dataflow/index.html
----------------------------------------------------------------------
diff --git a/content/documentation/runners/dataflow/index.html b/content/documentation/runners/dataflow/index.html
index 495a6e1..cc4e510 100644
--- a/content/documentation/runners/dataflow/index.html
+++ b/content/documentation/runners/dataflow/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/documentation/runners/dataflow/" 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/documentation/runners/dataflow/" 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),
@@ -256,7 +256,7 @@
 </tr>
 </table>
 
-<p>See the reference documentation for the  <span class="language-java"><a href="/documentation/sdks/javadoc/0.3.0-incubating/index.html?org/apache/beam/runners/dataflow/options/DataflowPipelineOptions.html">DataflowPipelineOptions</a></span><span class="language-python"><a href="https://github.com/apache/incubator-beam/blob/python-sdk/sdks/python/apache_beam/utils/options.py">PipelineOptions</a></span> interface (and its subinterfaces) for the complete list of pipeline configuration options.</p>
+<p>See the reference documentation for the  <span class="language-java"><a href="/documentation/sdks/javadoc/0.3.0-incubating/index.html?org/apache/beam/runners/dataflow/options/DataflowPipelineOptions.html">DataflowPipelineOptions</a></span><span class="language-python"><a href="https://github.com/apache/beam/blob/python-sdk/sdks/python/apache_beam/utils/options.py">PipelineOptions</a></span> interface (and its subinterfaces) for the complete list of pipeline configuration options.</p>
 
 <h2 id="additional-information-and-caveats">Additional information and caveats</h2>
 

http://git-wip-us.apache.org/repos/asf/beam-site/blob/1e4e170f/content/documentation/runners/direct/index.html
----------------------------------------------------------------------
diff --git a/content/documentation/runners/direct/index.html b/content/documentation/runners/direct/index.html
index b2f9d37..53d07db 100644
--- a/content/documentation/runners/direct/index.html
+++ b/content/documentation/runners/direct/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/documentation/runners/direct/" 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/documentation/runners/direct/" 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),
@@ -180,11 +180,11 @@
 
 <p>When executing your pipeline from the command-line, set <code class="highlighter-rouge">runner</code> to <code class="highlighter-rouge">direct</code>. The default values for the other pipeline options are generally sufficient.</p>
 
-<p>See the reference documentation for the  <span class="language-java"><a href="/documentation/sdks/javadoc/0.3.0-incubating/index.html?org/apache/beam/runners/direct/DirectOptions.html"><code class="highlighter-rouge">DirectOptions</code></a></span><span class="language-python"><a href="https://github.com/apache/incubator-beam/blob/python-sdk/sdks/python/apache_beam/utils/options.py"><code class="highlighter-rouge">PipelineOptions</code></a></span> interface (and its subinterfaces) for defaults and the complete list of pipeline configuration options.</p>
+<p>See the reference documentation for the  <span class="language-java"><a href="/documentation/sdks/javadoc/0.3.0-incubating/index.html?org/apache/beam/runners/direct/DirectOptions.html"><code class="highlighter-rouge">DirectOptions</code></a></span><span class="language-python"><a href="https://github.com/apache/beam/blob/python-sdk/sdks/python/apache_beam/utils/options.py"><code class="highlighter-rouge">PipelineOptions</code></a></span> interface (and its subinterfaces) for defaults and the complete list of pipeline configuration options.</p>
 
 <h2 id="additional-information-and-caveats">Additional information and caveats</h2>
 
-<p>Local execution is limited by the memory available in your local environment. It is highly recommended that you run your pipeline with data sets small enough to fit in local memory. You can create a small in-memory data set using a <span class="language-java"><a href="/documentation/sdks/javadoc/0.3.0-incubating/index.html?org/apache/beam/sdk/transforms/Create.html"><code class="highlighter-rouge">Create</code></a></span><span class="language-python"><a href="https://github.com/apache/incubator-beam/blob/python-sdk/sdks/python/apache_beam/transforms/core.py"><code class="highlighter-rouge">Create</code></a></span> transform, or you can use a <span class="language-java"><a href="/documentation/sdks/javadoc/0.3.0-incubating/index.html?org/apache/beam/sdk/io/Read.html"><code class="highlighter-rouge">Read</code></a></span><span class="language-python"><a href="https://github.com/apache/incubator-beam/blob/python-sdk/sdks/python/apache_beam/io/iobase.py"><code class="highlighter-roug
 e">Read</code></a></span> transform to work with small local or remote files.</p>
+<p>Local execution is limited by the memory available in your local environment. It is highly recommended that you run your pipeline with data sets small enough to fit in local memory. You can create a small in-memory data set using a <span class="language-java"><a href="/documentation/sdks/javadoc/0.3.0-incubating/index.html?org/apache/beam/sdk/transforms/Create.html"><code class="highlighter-rouge">Create</code></a></span><span class="language-python"><a href="https://github.com/apache/beam/blob/python-sdk/sdks/python/apache_beam/transforms/core.py"><code class="highlighter-rouge">Create</code></a></span> transform, or you can use a <span class="language-java"><a href="/documentation/sdks/javadoc/0.3.0-incubating/index.html?org/apache/beam/sdk/io/Read.html"><code class="highlighter-rouge">Read</code></a></span><span class="language-python"><a href="https://github.com/apache/beam/blob/python-sdk/sdks/python/apache_beam/io/iobase.py"><code class="highlighter-rouge">Read</code></a></
 span> transform to work with small local or remote files.</p>
 
 
       </div>

http://git-wip-us.apache.org/repos/asf/beam-site/blob/1e4e170f/content/documentation/runners/flink/index.html
----------------------------------------------------------------------
diff --git a/content/documentation/runners/flink/index.html b/content/documentation/runners/flink/index.html
index edd5bcd..d6fe0eb 100644
--- a/content/documentation/runners/flink/index.html
+++ b/content/documentation/runners/flink/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/documentation/runners/flink/" 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/documentation/runners/flink/" 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),
@@ -271,7 +271,7 @@
 </tr>
 </table>
 
-<p>See the reference documentation for the  <span class="language-java"><a href="/documentation/sdks/javadoc/0.3.0-incubating/index.html?org/apache/beam/runners/flink/FlinkPipelineOptions.html">FlinkPipelineOptions</a></span><span class="language-python"><a href="https://github.com/apache/incubator-beam/blob/python-sdk/sdks/python/apache_beam/utils/options.py">PipelineOptions</a></span> interface (and its subinterfaces) for the complete list of pipeline configuration options.</p>
+<p>See the reference documentation for the  <span class="language-java"><a href="/documentation/sdks/javadoc/0.3.0-incubating/index.html?org/apache/beam/runners/flink/FlinkPipelineOptions.html">FlinkPipelineOptions</a></span><span class="language-python"><a href="https://github.com/apache/beam/blob/python-sdk/sdks/python/apache_beam/utils/options.py">PipelineOptions</a></span> interface (and its subinterfaces) for the complete list of pipeline configuration options.</p>
 
 <h2 id="additional-information-and-caveats">Additional information and caveats</h2>
 

http://git-wip-us.apache.org/repos/asf/beam-site/blob/1e4e170f/content/documentation/runners/spark/index.html
----------------------------------------------------------------------
diff --git a/content/documentation/runners/spark/index.html b/content/documentation/runners/spark/index.html
index 23960e0..88df4f0 100644
--- a/content/documentation/runners/spark/index.html
+++ b/content/documentation/runners/spark/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/documentation/runners/spark/" 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/documentation/runners/spark/" 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/documentation/sdks/java/index.html
----------------------------------------------------------------------
diff --git a/content/documentation/sdks/java/index.html b/content/documentation/sdks/java/index.html
index 10801e8..3b3ead4 100644
--- a/content/documentation/sdks/java/index.html
+++ b/content/documentation/sdks/java/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/documentation/sdks/java/" 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/documentation/sdks/java/" 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/documentation/sdks/python/index.html
----------------------------------------------------------------------
diff --git a/content/documentation/sdks/python/index.html b/content/documentation/sdks/python/index.html
index aeb4d84..5c39a0d 100644
--- a/content/documentation/sdks/python/index.html
+++ b/content/documentation/sdks/python/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/documentation/sdks/python/" 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/documentation/sdks/python/" 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/feed.xml
----------------------------------------------------------------------
diff --git a/content/feed.xml b/content/feed.xml
index a91a76e..3bdc7b5 100644
--- a/content/feed.xml
+++ b/content/feed.xml
@@ -1,11 +1,11 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
   <channel>
-    <title>Apache Beam (incubating)</title>
+    <title>Apache Beam</title>
     <description>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.
 </description>
-    <link>http://beam.incubator.apache.org/</link>
-    <atom:link href="http://beam.incubator.apache.org/feed.xml" rel="self" type="application/rss+xml"/>
+    <link>http://beam.apache.org/</link>
+    <atom:link href="http://beam.apache.org/feed.xml" rel="self" type="application/rss+xml"/>
     <generator>Jekyll v3.2.0</generator>
     
       <item>
@@ -47,8 +47,8 @@ from the Mobile Gaming example series.&lt;/p&gt;
 
 &lt;h2 id=&quot;leaderboard-and-the-mobile-gaming-example&quot;&gt;LeaderBoard and the Mobile Gaming Example&lt;/h2&gt;
 
-&lt;p&gt;&lt;a href=&quot;https://github.com/apache/incubator-beam/blob/master/examples/java8/src/main/java/org/apache/beam/examples/complete/game/LeaderBoard.java#L177&quot;&gt;LeaderBoard&lt;/a&gt;
-is part of the &lt;a href=&quot;https://github.com/apache/incubator-beam/tree/master/examples/java8/src/main/java/org/apache/beam/examples/complete/game&quot;&gt;Beam mobile gaming examples&lt;/a&gt;
+&lt;p&gt;&lt;a href=&quot;https://github.com/apache/beam/blob/master/examples/java8/src/main/java/org/apache/beam/examples/complete/game/LeaderBoard.java#L177&quot;&gt;LeaderBoard&lt;/a&gt;
+is part of the &lt;a href=&quot;https://github.com/apache/beam/tree/master/examples/java8/src/main/java/org/apache/beam/examples/complete/game&quot;&gt;Beam mobile gaming examples&lt;/a&gt;
 (and &lt;a href=&quot;/get-started/mobile-gaming-example/&quot;&gt;walkthroughs&lt;/a&gt;)
 which produces a continuous accounting of user and team scores. User scores are
 calculated over the lifetime of the program, while team scores are calculated
@@ -65,7 +65,7 @@ be controlled within a test.&lt;/p&gt;
 &lt;a href=&quot;/documentation/sdks/javadoc/0.3.0-incubating/org/apache/beam/sdk/testing/PAssert.html&quot;&gt;PAssert&lt;/a&gt;
 methods, which assert properties about the contents of a PCollection from within
 a pipeline. We have expanded this infrastructure to include
-&lt;a href=&quot;https://github.com/apache/incubator-beam/blob/master/sdks/java/core/src/main/java/org/apache/beam/sdk/testing/TestStream.java&quot;&gt;TestStream&lt;/a&gt;,
+&lt;a href=&quot;https://github.com/apache/beam/blob/master/sdks/java/core/src/main/java/org/apache/beam/sdk/testing/TestStream.java&quot;&gt;TestStream&lt;/a&gt;,
 which is a PTransform that performs a series of events, consisting of adding
 additional elements to a pipeline, advancing the watermark of the TestStream,
 and advancing the pipeline processing time clock. TestStream permits tests which
@@ -313,8 +313,8 @@ Java SDK. If you have questions or comments, we\u2019d love to hear them on the
 &lt;a href=&quot;/use/mailing-lists/&quot;&gt;mailing lists&lt;/a&gt;.&lt;/p&gt;
 </description>
         <pubDate>Thu, 20 Oct 2016 11:00:00 -0700</pubDate>
-        <link>http://beam.incubator.apache.org/blog/2016/10/20/test-stream.html</link>
-        <guid isPermaLink="true">http://beam.incubator.apache.org/blog/2016/10/20/test-stream.html</guid>
+        <link>http://beam.apache.org/blog/2016/10/20/test-stream.html</link>
+        <guid isPermaLink="true">http://beam.apache.org/blog/2016/10/20/test-stream.html</guid>
         
         
         <category>blog</category>
@@ -327,13 +327,13 @@ Java SDK. If you have questions or comments, we\u2019d love to hear them on the
 
 &lt;p&gt;&lt;img src=&quot;/images/blog/IMG_20160927_170956.jpg&quot; alt=&quot;Exercise time&quot; /&gt;&lt;/p&gt;
 
-&lt;p&gt;If you want to take a look at the tutorial materials, we\u2019ve put them up &lt;a href=&quot;https://github.com/eljefe6a/beamexample&quot;&gt;on GitHub&lt;/a&gt;. This includes the &lt;a href=&quot;https://github.com/eljefe6a/beamexample/blob/master/BeamTutorial/slides.pdf&quot;&gt;actual slides&lt;/a&gt; as well as the &lt;a href=&quot;https://github.com/eljefe6a/beamexample/tree/master/BeamTutorial/src/main/java/org/apache/beam/examples/tutorial/game&quot;&gt;exercises&lt;/a&gt; that we covered. If you\u2019re looking to learn a little about Beam, this is a good way to start. The exercises are based on an imaginary mobile game where data needs processing and are based on code in the &lt;a href=&quot;https://github.com/apache/incubator-beam/tree/master/examples/java8/src/main/java/org/apache/beam/examples/complete/game&quot;&gt;Beam examples directory&lt;/a&gt;. The code has TODOs for where you need to fill in code or there are full sample solutions to look over our code. You c
 an run these examples on your own machine or on a cluster using a runner that Beam supports.&lt;/p&gt;
+&lt;p&gt;If you want to take a look at the tutorial materials, we\u2019ve put them up &lt;a href=&quot;https://github.com/eljefe6a/beamexample&quot;&gt;on GitHub&lt;/a&gt;. This includes the &lt;a href=&quot;https://github.com/eljefe6a/beamexample/blob/master/BeamTutorial/slides.pdf&quot;&gt;actual slides&lt;/a&gt; as well as the &lt;a href=&quot;https://github.com/eljefe6a/beamexample/tree/master/BeamTutorial/src/main/java/org/apache/beam/examples/tutorial/game&quot;&gt;exercises&lt;/a&gt; that we covered. If you\u2019re looking to learn a little about Beam, this is a good way to start. The exercises are based on an imaginary mobile game where data needs processing and are based on code in the &lt;a href=&quot;https://github.com/apache/beam/tree/master/examples/java8/src/main/java/org/apache/beam/examples/complete/game&quot;&gt;Beam examples directory&lt;/a&gt;. The code has TODOs for where you need to fill in code or there are full sample solutions to look over our code. You can run the
 se examples on your own machine or on a cluster using a runner that Beam supports.&lt;/p&gt;
 
 &lt;p&gt;I want to share some of takeaways I had about Beam during the conference.&lt;/p&gt;
 
 &lt;p&gt;The Data Engineers are looking to Beam as a way to &lt;a href=&quot;https://www.oreilly.com/ideas/future-proof-and-scale-proof-your-code&quot;&gt;future-proof&lt;/a&gt;, meaning that code is portable between the various Big Data frameworks. In fact, many of the attendees were still on Hadoop MapReduce and looking to transition to a new framework. They\u2019re realizing that continually rewriting code isn\u2019t the most productive approach.&lt;/p&gt;
 
-&lt;p&gt;Data Scientists are really interested in using Beam. They interested in having a single API for doing analysis instead of several different APIs. We talked about Beam\u2019s progress on the Python API. If you want to take a peek, it\u2019s being actively developed on a &lt;a href=&quot;https://github.com/apache/incubator-beam/tree/python-sdk&quot;&gt;feature branch&lt;/a&gt;. As Beam matures, we\u2019re looking to add other supported languages.&lt;/p&gt;
+&lt;p&gt;Data Scientists are really interested in using Beam. They interested in having a single API for doing analysis instead of several different APIs. We talked about Beam\u2019s progress on the Python API. If you want to take a peek, it\u2019s being actively developed on a &lt;a href=&quot;https://github.com/apache/beam/tree/python-sdk&quot;&gt;feature branch&lt;/a&gt;. As Beam matures, we\u2019re looking to add other supported languages.&lt;/p&gt;
 
 &lt;p&gt;We heard &lt;a href=&quot;https://twitter.com/jessetanderson/status/781124173108305920&quot;&gt;loud and clear&lt;/a&gt; from Beam users that great runner support is crucial to adoption. We have great Apache Flink support. During the conference we had some more volunteers offer their help on the Spark runner.&lt;/p&gt;
 
@@ -347,8 +347,8 @@ Java SDK. If you have questions or comments, we\u2019d love to hear them on the
 
 </description>
         <pubDate>Tue, 11 Oct 2016 10:00:00 -0700</pubDate>
-        <link>http://beam.incubator.apache.org/beam/update/2016/10/11/strata-hadoop-world-and-beam.html</link>
-        <guid isPermaLink="true">http://beam.incubator.apache.org/beam/update/2016/10/11/strata-hadoop-world-and-beam.html</guid>
+        <link>http://beam.apache.org/beam/update/2016/10/11/strata-hadoop-world-and-beam.html</link>
+        <guid isPermaLink="true">http://beam.apache.org/beam/update/2016/10/11/strata-hadoop-world-and-beam.html</guid>
         
         
         <category>beam</category>
@@ -400,8 +400,8 @@ Java SDK. If you have questions or comments, we\u2019d love to hear them on the
 
 </description>
         <pubDate>Wed, 03 Aug 2016 00:00:01 -0700</pubDate>
-        <link>http://beam.incubator.apache.org/blog/2016/08/03/six-months.html</link>
-        <guid isPermaLink="true">http://beam.incubator.apache.org/blog/2016/08/03/six-months.html</guid>
+        <link>http://beam.apache.org/blog/2016/08/03/six-months.html</link>
+        <guid isPermaLink="true">http://beam.apache.org/blog/2016/08/03/six-months.html</guid>
         
         
         <category>blog</category>
@@ -441,8 +441,8 @@ to us via &lt;a href=&quot;/use/mailing-lists/&quot;&gt;user\u2019s mailing list&lt
 &lt;a href=&quot;https://issues.apache.org/jira/browse/BEAM/&quot;&gt;Apache JIRA issue tracker&lt;/a&gt;.&lt;/p&gt;
 </description>
         <pubDate>Wed, 15 Jun 2016 00:00:01 -0700</pubDate>
-        <link>http://beam.incubator.apache.org/beam/release/2016/06/15/first-release.html</link>
-        <guid isPermaLink="true">http://beam.incubator.apache.org/beam/release/2016/06/15/first-release.html</guid>
+        <link>http://beam.apache.org/beam/release/2016/06/15/first-release.html</link>
+        <guid isPermaLink="true">http://beam.apache.org/beam/release/2016/06/15/first-release.html</guid>
         
         
         <category>beam</category>
@@ -478,8 +478,8 @@ to us via &lt;a href=&quot;/use/mailing-lists/&quot;&gt;user\u2019s mailing list&lt
 &lt;p&gt;We reached a major milestone in adding windowing support to the Flink Batch runner, thereby making it compatible with the Beam model. Because of the large suite of tests that can now be executed on the runner we are also confident about the correctness of the implementation and about it staying that way in the future.&lt;/p&gt;
 </description>
         <pubDate>Mon, 13 Jun 2016 09:00:00 -0700</pubDate>
-        <link>http://beam.incubator.apache.org/blog/2016/06/13/flink-batch-runner-milestone.html</link>
-        <guid isPermaLink="true">http://beam.incubator.apache.org/blog/2016/06/13/flink-batch-runner-milestone.html</guid>
+        <link>http://beam.apache.org/blog/2016/06/13/flink-batch-runner-milestone.html</link>
+        <guid isPermaLink="true">http://beam.apache.org/blog/2016/06/13/flink-batch-runner-milestone.html</guid>
         
         
         <category>blog</category>
@@ -570,8 +570,8 @@ PCollection&amp;lt;O&amp;gt; output = input
 &lt;p&gt;Although it\u2019s tempting to add methods to PCollections, such an approach is not scalable, extensible, or sufficiently expressive. Putting a single apply method on PCollection and all the logic into the operation itself lets us have the best of both worlds, and avoids hard cliffs of complexity by having a single consistent style across simple and complex pipelines, and between predefined and user-defined operations.&lt;/p&gt;
 </description>
         <pubDate>Fri, 27 May 2016 09:00:00 -0700</pubDate>
-        <link>http://beam.incubator.apache.org/blog/2016/05/27/where-is-my-pcollection-dot-map.html</link>
-        <guid isPermaLink="true">http://beam.incubator.apache.org/blog/2016/05/27/where-is-my-pcollection-dot-map.html</guid>
+        <link>http://beam.apache.org/blog/2016/05/27/where-is-my-pcollection-dot-map.html</link>
+        <guid isPermaLink="true">http://beam.apache.org/blog/2016/05/27/where-is-my-pcollection-dot-map.html</guid>
         
         
         <category>blog</category>
@@ -586,11 +586,11 @@ PCollection&amp;lt;O&amp;gt; output = input
 
 &lt;p&gt;In a large batch processing job with many tasks executing in parallel, some of the tasks \u2013 the stragglers \u2013 can take a much longer time to complete than others, perhaps due to imperfect splitting of the work into parallel chunks when issuing the job. Typically, waiting for stragglers means that the overall job completes later than it should, and may also reserve too many machines that may be underutilized at the end. Cloud Dataflow\u2019s dynamic work rebalancing can mitigate stragglers in most cases.&lt;/p&gt;
 
-&lt;p&gt;What I\u2019d like to highlight for the Apache Beam (incubating) community is that Cloud Dataflow\u2019s dynamic work rebalancing is implemented using &lt;em&gt;runner-specific&lt;/em&gt; control logic on top of Beam\u2019s &lt;em&gt;runner-independent&lt;/em&gt; &lt;a href=&quot;https://github.com/apache/incubator-beam/blob/9fa97fb2491bc784df53fb0f044409dbbc2af3d7/sdks/java/core/src/main/java/org/apache/beam/sdk/io/BoundedSource.java&quot;&gt;&lt;code class=&quot;highlighter-rouge&quot;&gt;BoundedSource API&lt;/code&gt;&lt;/a&gt;. Specifically, to steal work from a straggler, a runner need only call the reader\u2019s &lt;a href=&quot;https://github.com/apache/incubator-beam/blob/3edae9b8b4d7afefb5c803c19bb0a1c21ebba89d/sdks/java/core/src/main/java/org/apache/beam/sdk/io/BoundedSource.java#L266&quot;&gt;&lt;code class=&quot;highlighter-rouge&quot;&gt;splitAtFraction method&lt;/code&gt;&lt;/a&gt;. This will generate a new source containing leftover work, and then the runner can pass tha
 t source off to another idle worker. As Beam matures, I hope that other runners are interested in figuring out whether these APIs can help them improve performance, implementing dynamic work rebalancing, and collaborating on API changes that will help solve other pain points.&lt;/p&gt;
+&lt;p&gt;What I\u2019d like to highlight for the Apache Beam (incubating) community is that Cloud Dataflow\u2019s dynamic work rebalancing is implemented using &lt;em&gt;runner-specific&lt;/em&gt; control logic on top of Beam\u2019s &lt;em&gt;runner-independent&lt;/em&gt; &lt;a href=&quot;https://github.com/apache/beam/blob/9fa97fb2491bc784df53fb0f044409dbbc2af3d7/sdks/java/core/src/main/java/org/apache/beam/sdk/io/BoundedSource.java&quot;&gt;&lt;code class=&quot;highlighter-rouge&quot;&gt;BoundedSource API&lt;/code&gt;&lt;/a&gt;. Specifically, to steal work from a straggler, a runner need only call the reader\u2019s &lt;a href=&quot;https://github.com/apache/beam/blob/3edae9b8b4d7afefb5c803c19bb0a1c21ebba89d/sdks/java/core/src/main/java/org/apache/beam/sdk/io/BoundedSource.java#L266&quot;&gt;&lt;code class=&quot;highlighter-rouge&quot;&gt;splitAtFraction method&lt;/code&gt;&lt;/a&gt;. This will generate a new source containing leftover work, and then the runner can pass that source off to anot
 her idle worker. As Beam matures, I hope that other runners are interested in figuring out whether these APIs can help them improve performance, implementing dynamic work rebalancing, and collaborating on API changes that will help solve other pain points.&lt;/p&gt;
 </description>
         <pubDate>Wed, 18 May 2016 11:00:00 -0700</pubDate>
-        <link>http://beam.incubator.apache.org/blog/2016/05/18/splitAtFraction-method.html</link>
-        <guid isPermaLink="true">http://beam.incubator.apache.org/blog/2016/05/18/splitAtFraction-method.html</guid>
+        <link>http://beam.apache.org/blog/2016/05/18/splitAtFraction-method.html</link>
+        <guid isPermaLink="true">http://beam.apache.org/blog/2016/05/18/splitAtFraction-method.html</guid>
         
         
         <category>blog</category>
@@ -619,11 +619,11 @@ PCollection&amp;lt;O&amp;gt; output = input
   &lt;/li&gt;
 &lt;/ul&gt;
 
-&lt;p&gt;As Apache Beam grows, so will this repository of presentation materials. We are excited to add new materials as the Apache Beam ecosystem grows with new runners, SDKs, and so on. If you are interested in contributing content or have a request, please see the &lt;a href=&quot;/learn/presentation-materials/&quot;&gt;Apache Beam presentation materials&lt;/a&gt; page or email the &lt;a href=&quot;mailto:user@beam.incubator.apache.org&quot;&gt;&lt;code class=&quot;highlighter-rouge&quot;&gt;user@beam.incubator.apache.org&lt;/code&gt;&lt;/a&gt; mailing list with your ideas or questions.&lt;/p&gt;
+&lt;p&gt;As Apache Beam grows, so will this repository of presentation materials. We are excited to add new materials as the Apache Beam ecosystem grows with new runners, SDKs, and so on. If you are interested in contributing content or have a request, please see the &lt;a href=&quot;/learn/presentation-materials/&quot;&gt;Apache Beam presentation materials&lt;/a&gt; page or email the &lt;a href=&quot;mailto:user@beam.apache.org&quot;&gt;&lt;code class=&quot;highlighter-rouge&quot;&gt;user@beam.apache.org&lt;/code&gt;&lt;/a&gt; mailing list with your ideas or questions.&lt;/p&gt;
 </description>
         <pubDate>Sun, 03 Apr 2016 11:00:00 -0700</pubDate>
-        <link>http://beam.incubator.apache.org/beam/capability/2016/04/03/presentation-materials.html</link>
-        <guid isPermaLink="true">http://beam.incubator.apache.org/beam/capability/2016/04/03/presentation-materials.html</guid>
+        <link>http://beam.apache.org/beam/capability/2016/04/03/presentation-materials.html</link>
+        <guid isPermaLink="true">http://beam.apache.org/beam/capability/2016/04/03/presentation-materials.html</guid>
         
         
         <category>beam</category>
@@ -634,7 +634,7 @@ PCollection&amp;lt;O&amp;gt; output = input
     
       <item>
         <title>Clarifying &amp; Formalizing Runner Capabilities</title>
-        <description>&lt;p&gt;With initial code drops complete (&lt;a href=&quot;https://github.com/apache/incubator-beam/pull/1&quot;&gt;Dataflow SDK and Runner&lt;/a&gt;, &lt;a href=&quot;https://github.com/apache/incubator-beam/pull/12&quot;&gt;Flink Runner&lt;/a&gt;, &lt;a href=&quot;https://github.com/apache/incubator-beam/pull/42&quot;&gt;Spark Runner&lt;/a&gt;) and expressed interest in runner implementations for &lt;a href=&quot;https://issues.apache.org/jira/browse/BEAM-9&quot;&gt;Storm&lt;/a&gt;, &lt;a href=&quot;https://issues.apache.org/jira/browse/BEAM-19&quot;&gt;Hadoop&lt;/a&gt;, and &lt;a href=&quot;https://issues.apache.org/jira/browse/BEAM-79&quot;&gt;Gearpump&lt;/a&gt; (amongst others), we wanted to start addressing a big question in the Apache Beam (incubating) community: what capabilities will each runner be able to support?&lt;/p&gt;
+        <description>&lt;p&gt;With initial code drops complete (&lt;a href=&quot;https://github.com/apache/beam/pull/1&quot;&gt;Dataflow SDK and Runner&lt;/a&gt;, &lt;a href=&quot;https://github.com/apache/beam/pull/12&quot;&gt;Flink Runner&lt;/a&gt;, &lt;a href=&quot;https://github.com/apache/beam/pull/42&quot;&gt;Spark Runner&lt;/a&gt;) and expressed interest in runner implementations for &lt;a href=&quot;https://issues.apache.org/jira/browse/BEAM-9&quot;&gt;Storm&lt;/a&gt;, &lt;a href=&quot;https://issues.apache.org/jira/browse/BEAM-19&quot;&gt;Hadoop&lt;/a&gt;, and &lt;a href=&quot;https://issues.apache.org/jira/browse/BEAM-79&quot;&gt;Gearpump&lt;/a&gt; (amongst others), we wanted to start addressing a big question in the Apache Beam (incubating) community: what capabilities will each runner be able to support?&lt;/p&gt;
 
 &lt;!--more--&gt;
 
@@ -1419,8 +1419,8 @@ PCollection&amp;lt;O&amp;gt; output = input
 
 </description>
         <pubDate>Thu, 17 Mar 2016 11:00:00 -0700</pubDate>
-        <link>http://beam.incubator.apache.org/beam/capability/2016/03/17/capability-matrix.html</link>
-        <guid isPermaLink="true">http://beam.incubator.apache.org/beam/capability/2016/03/17/capability-matrix.html</guid>
+        <link>http://beam.apache.org/beam/capability/2016/03/17/capability-matrix.html</link>
+        <guid isPermaLink="true">http://beam.apache.org/beam/capability/2016/03/17/capability-matrix.html</guid>
         
         
         <category>beam</category>
@@ -1445,8 +1445,8 @@ included the &lt;a href=&quot;https://github.com/GoogleCloudPlatform/DataflowJav
 &lt;p&gt;Apache Beam Team&lt;/p&gt;
 </description>
         <pubDate>Thu, 25 Feb 2016 13:00:00 -0800</pubDate>
-        <link>http://beam.incubator.apache.org/beam/python/sdk/2016/02/25/python-sdk-now-public.html</link>
-        <guid isPermaLink="true">http://beam.incubator.apache.org/beam/python/sdk/2016/02/25/python-sdk-now-public.html</guid>
+        <link>http://beam.apache.org/beam/python/sdk/2016/02/25/python-sdk-now-public.html</link>
+        <guid isPermaLink="true">http://beam.apache.org/beam/python/sdk/2016/02/25/python-sdk-now-public.html</guid>
         
         
         <category>beam</category>

http://git-wip-us.apache.org/repos/asf/beam-site/blob/1e4e170f/content/get-started/beam-overview/index.html
----------------------------------------------------------------------
diff --git a/content/get-started/beam-overview/index.html b/content/get-started/beam-overview/index.html
index ccb4980..a8670d9 100644
--- a/content/get-started/beam-overview/index.html
+++ b/content/get-started/beam-overview/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/beam-overview/" 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/beam-overview/" 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/get-started/downloads/index.html
----------------------------------------------------------------------
diff --git a/content/get-started/downloads/index.html b/content/get-started/downloads/index.html
index c8ba406..e157e0b 100644
--- a/content/get-started/downloads/index.html
+++ b/content/get-started/downloads/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/downloads/" 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/downloads/" 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/get-started/index.html
----------------------------------------------------------------------
diff --git a/content/get-started/index.html b/content/get-started/index.html
index 8ab34c0..65bcf75 100644
--- a/content/get-started/index.html
+++ b/content/get-started/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/" 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/" 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/get-started/mobile-gaming-example/index.html
----------------------------------------------------------------------
diff --git a/content/get-started/mobile-gaming-example/index.html b/content/get-started/mobile-gaming-example/index.html
index ada7ce7..ead7405 100644
--- a/content/get-started/mobile-gaming-example/index.html
+++ b/content/get-started/mobile-gaming-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/mobile-gaming-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/mobile-gaming-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),
@@ -211,7 +211,7 @@
 <p>The <code class="highlighter-rouge">UserScore</code> pipeline is the simplest example for processing mobile game data. <code class="highlighter-rouge">UserScore</code> determines the total score per user over a finite data set (for example, one day\u2019s worth of scores stored on the game server). Pipelines like <code class="highlighter-rouge">UserScore</code> are best run periodically after all relevant data has been gathered. For example, <code class="highlighter-rouge">UserScore</code> could run as a nightly job over data gathered during that day.</p>
 
 <blockquote>
-  <p><strong>Note:</strong> See <a href="https://github.com/apache/incubator-beam/blob/master/examples/java8/src/main/java/org/apache/beam/examples/complete/game/UserScore.java">UserScore on GitHub</a> for the complete example pipeline program.</p>
+  <p><strong>Note:</strong> See <a href="https://github.com/apache/beam/blob/master/examples/java8/src/main/java/org/apache/beam/examples/complete/game/UserScore.java">UserScore on GitHub</a> for the complete example pipeline program.</p>
 </blockquote>
 
 <h3 id="what-does-userscore-do">What Does UserScore Do?</h3>
@@ -331,7 +331,7 @@
 <p>Like <code class="highlighter-rouge">UserScore</code>, <code class="highlighter-rouge">HourlyTeamScore</code> is best thought of as a job to be run periodically after all the relevant data has been gathered (such as once per day). The pipeline reads a fixed data set from a file, and writes the results to a Google Cloud BigQuery table, just like <code class="highlighter-rouge">UserScore</code>.</p>
 
 <blockquote>
-  <p><strong>Note:</strong> See <a href="https://github.com/apache/incubator-beam/blob/master/examples/java8/src/main/java/org/apache/beam/examples/complete/game/HourlyTeamScore.java">HourlyTeamScore on GitHub</a> for the complete example pipeline program.</p>
+  <p><strong>Note:</strong> See <a href="https://github.com/apache/beam/blob/master/examples/java8/src/main/java/org/apache/beam/examples/complete/game/HourlyTeamScore.java">HourlyTeamScore on GitHub</a> for the complete example pipeline program.</p>
 </blockquote>
 
 <h3 id="what-does-hourlyteamscore-do">What Does HourlyTeamScore Do?</h3>
@@ -368,7 +368,7 @@
 
 <p>Beam\u2019s windowing feature uses the <a href="/documentation/programming-guide/#pctimestamps">intrinsic timestamp information</a> attached to each element of a <code class="highlighter-rouge">PCollection</code>. Because we want our pipeline to window based on <em>event time</em>, we <strong>must first extract the timestamp</strong> that\u2019s embedded in each data record apply it to the corresponding element in the <code class="highlighter-rouge">PCollection</code> of score data. Then, the pipeline can <strong>apply the windowing function</strong> to divide the <code class="highlighter-rouge">PCollection</code> into logical windows.</p>
 
-<p>Here\u2019s the code, which shows how <code class="highlighter-rouge">HourlyTeamScore</code> uses the <a href="https://github.com/apache/incubator-beam/blob/master/sdks/java/core/src/main/java/org/apache/beam/sdk/transforms/WithTimestamps.java">WithTimestamps</a> and <a href="https://github.com/apache/incubator-beam/blob/master/sdks/java/core/src/main/java/org/apache/beam/sdk/transforms/windowing/Window.java">Window</a> transforms to perform these operations:</p>
+<p>Here\u2019s the code, which shows how <code class="highlighter-rouge">HourlyTeamScore</code> uses the <a href="https://github.com/apache/beam/blob/master/sdks/java/core/src/main/java/org/apache/beam/sdk/transforms/WithTimestamps.java">WithTimestamps</a> and <a href="https://github.com/apache/beam/blob/master/sdks/java/core/src/main/java/org/apache/beam/sdk/transforms/windowing/Window.java">Window</a> transforms to perform these operations:</p>
 
 <div class="language-java highlighter-rouge"><pre class="highlight"><code><span class="c1">// Add an element timestamp based on the event log, and apply fixed windowing.</span>
     <span class="o">.</span><span class="na">apply</span><span class="o">(</span><span class="s">"AddEventTimestamps"</span><span class="o">,</span>
@@ -467,7 +467,7 @@
 <p>Because the <code class="highlighter-rouge">LeaderBoard</code> pipeline reads the game data from an unbounded source as that data is generated, you can think of the pipeline as an ongoing job running concurrently with the game process. <code class="highlighter-rouge">LeaderBoard</code> can thus provide low-latency insights into how users are playing the game at any given moment\u2014useful if, for example, we want to provide a live web-based scoreboard so that users can track their progress against other users as they play.</p>
 
 <blockquote>
-  <p><strong>Note:</strong> See <a href="https://github.com/apache/incubator-beam/blob/master/examples/java8/src/main/java/org/apache/beam/examples/complete/game/LeaderBoard.java">LeaderBoard on GitHub</a> for the complete example pipeline program.</p>
+  <p><strong>Note:</strong> See <a href="https://github.com/apache/beam/blob/master/examples/java8/src/main/java/org/apache/beam/examples/complete/game/LeaderBoard.java">LeaderBoard on GitHub</a> for the complete example pipeline program.</p>
 </blockquote>
 
 <h3 id="what-does-leaderboard-do">What Does LeaderBoard Do?</h3>
@@ -598,7 +598,7 @@
 <p>Like <code class="highlighter-rouge">LeaderBoard</code>, <code class="highlighter-rouge">GameStats</code> reads data from an unbounded source. It is best thought of as an ongoing job that provides insight into the game as users play.</p>
 
 <blockquote>
-  <p><strong>Note:</strong> See <a href="https://github.com/apache/incubator-beam/blob/master/examples/java8/src/main/java/org/apache/beam/examples/complete/game/GameStats.java">GameStats on GitHub</a> for the complete example pipeline program.</p>
+  <p><strong>Note:</strong> See <a href="https://github.com/apache/beam/blob/master/examples/java8/src/main/java/org/apache/beam/examples/complete/game/GameStats.java">GameStats on GitHub</a> for the complete example pipeline program.</p>
 </blockquote>
 
 <h3 id="what-does-gamestats-do">What Does GameStats Do?</h3>
@@ -692,7 +692,7 @@
 
 <h4 id="analyzing-usage-patterns">Analyzing Usage Patterns</h4>
 
-<p>We can gain some insight on when users are playing our game, and for how long, by examining the event times for each game score and grouping scores with similar event times into <em>sessions</em>. <code class="highlighter-rouge">GameStats</code> uses Beam\u2019s built-in <a href="https://github.com/apache/incubator-beam/blob/master/sdks/java/core/src/main/java/org/apache/beam/sdk/transforms/windowing/Sessions.java">session windowing</a> function to group user scores into sessions based on the time they occurred.</p>
+<p>We can gain some insight on when users are playing our game, and for how long, by examining the event times for each game score and grouping scores with similar event times into <em>sessions</em>. <code class="highlighter-rouge">GameStats</code> uses Beam\u2019s built-in <a href="https://github.com/apache/beam/blob/master/sdks/java/core/src/main/java/org/apache/beam/sdk/transforms/windowing/Sessions.java">session windowing</a> function to group user scores into sessions based on the time they occurred.</p>
 
 <p>When you set session windowing, you specify a <em>minimum gap duration</em> between events. All events whose arrival times are closer together than the minimum gap duration are grouped into the same window. Events where the difference in arrival time is greater than the gap are grouped into separate windows. Depending on how we set our minimum gap duration, we can safely assume that scores in the same session window are part of the same (relatively) uninterrupted stretch of play. Scores in a different window indicate that the user stopped playing the game for at least the minimum gap time before returning to it later.</p>
 

http://git-wip-us.apache.org/repos/asf/beam-site/blob/1e4e170f/content/get-started/quickstart/index.html
----------------------------------------------------------------------
diff --git a/content/get-started/quickstart/index.html b/content/get-started/quickstart/index.html
index 2e2fc6a..97c955b 100644
--- a/content/get-started/quickstart/index.html
+++ b/content/get-started/quickstart/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/quickstart/" 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/quickstart/" 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/get-started/releases/index.html
----------------------------------------------------------------------
diff --git a/content/get-started/releases/index.html b/content/get-started/releases/index.html
index 19ec996..1c4df7d 100644
--- a/content/get-started/releases/index.html
+++ b/content/get-started/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/get-started/support/index.html
----------------------------------------------------------------------
diff --git a/content/get-started/support/index.html b/content/get-started/support/index.html
index bc6efa9..cb1b71f 100644
--- a/content/get-started/support/index.html
+++ b/content/get-started/support/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/support/" 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/support/" 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),
@@ -167,25 +167,25 @@
     <tr>
       <th scope="row">user@</th>
       <td>User support and questions</td>
-      <td><a href="mailto:user-subscribe@beam.incubator.apache.org">Subscribe</a></td>
-      <td><a href="mailto:user-unsubscribe@beam.incubator.apache.org">Unsubscribe</a></td>
-      <td><a href="mailto:user@beam.incubator.apache.org">Post</a></td>
+      <td><a href="mailto:user-subscribe@beam.apache.org">Subscribe</a></td>
+      <td><a href="mailto:user-unsubscribe@beam.apache.org">Unsubscribe</a></td>
+      <td><a href="mailto:user@beam.apache.org">Post</a></td>
       <td><a href="https://lists.apache.org/list.html?user@beam.apache.org">Archives</a></td>
     </tr>
     <tr>
       <th scope="row">dev@</th>
       <td>Development-related discussions</td>
-      <td><a href="mailto:dev-subscribe@beam.incubator.apache.org">Subscribe</a></td>
-      <td><a href="mailto:dev-unsubscribe@beam.incubator.apache.org">Unsubscribe</a></td>
-      <td><a href="mailto:dev@beam.incubator.apache.org">Post</a></td>
+      <td><a href="mailto:dev-subscribe@beam.apache.org">Subscribe</a></td>
+      <td><a href="mailto:dev-unsubscribe@beam.apache.org">Unsubscribe</a></td>
+      <td><a href="mailto:dev@beam.apache.org">Post</a></td>
       <td><a href="https://lists.apache.org/list.html?dev@beam.apache.org">Archives</a></td>
     </tr>
     <tr>
       <th scope="row">commits@</th>
       <td>JIRA updates, pull requests, etc.</td>
-      <td><a href="mailto:commits-subscribe@beam.incubator.apache.org">Subscribe</a></td>
-      <td><a href="mailto:commits-unsubscribe@beam.incubator.apache.org">Unsubscribe</a></td>
-      <td><a href="mailto:commits@beam.incubator.apache.org">Post</a></td>
+      <td><a href="mailto:commits-subscribe@beam.apache.org">Subscribe</a></td>
+      <td><a href="mailto:commits-unsubscribe@beam.apache.org">Unsubscribe</a></td>
+      <td><a href="mailto:commits@beam.apache.org">Post</a></td>
       <td><a href="https://lists.apache.org/list.html?commits@beam.apache.org">Archives</a></td>
     </tr>
 </tbody>