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 2017/01/31 22:39:56 UTC

[1/4] beam-site git commit: Cleanup of links: relative instead of absolute, https instead of http, etc.

Repository: beam-site
Updated Branches:
  refs/heads/asf-site 7f9daf5d3 -> 5b9e9ef69


Cleanup of links: relative instead of absolute, https instead of http, etc.


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

Branch: refs/heads/asf-site
Commit: 337f6fdc33d8a8a4e648b2e0b49769c723086f0b
Parents: 7f9daf5
Author: Davor Bonaci <da...@google.com>
Authored: Tue Jan 31 14:00:41 2017 -0800
Committer: Davor Bonaci <da...@google.com>
Committed: Tue Jan 31 14:39:07 2017 -0800

----------------------------------------------------------------------
 README.md                                  | 13 +++----------
 _config.yml                                |  2 +-
 src/_posts/2017-01-09-added-apex-runner.md |  6 +++---
 src/downloads/beam-doap.rdf                | 10 +++++-----
 4 files changed, 12 insertions(+), 19 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/beam-site/blob/337f6fdc/README.md
----------------------------------------------------------------------
diff --git a/README.md b/README.md
index ba70ef5..9d1db8e 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,8 @@
 # Apache Beam website
 
-This is the website for [Apache Beam](http://beam.apache.org/).
+This is the website for [Apache Beam](https://beam.apache.org/), hosted at:
+
+    https://beam.apache.org/
 
 ## About this site
 
@@ -8,11 +10,6 @@ The Beam website is built using [Jekyll](http://jekyllrb.com/). Additionally,
 for additional formatting capabilities, this website uses
 [Twitter Bootstrap](http://getbootstrap.com/).
 
-This website is hosted at:
-
-    http://beam.apache.org
-
-
 ### Repository Structure
     
 This repository contains:
@@ -20,7 +17,6 @@ This repository contains:
 1. `src/`: the source of the site, including markdown files containing the bulk of the content
 1. `content/`: html generated from the markdown (which is what is actually hosted on the website)
 
-
 ## Development Workflow
 
 ### Setup
@@ -39,7 +35,6 @@ including [Jekyll](https://jekyllrb.com/):
 	
 This will install a number of gems in a local `./vendor` directory.
 
-
 ### Active development
 
 Launch Jekyll via Bundler in order to guarantee that the appropriate versions of the dependencies are used:
@@ -61,7 +56,6 @@ get tricky, so please leave this directory out of your commits and pull request
 
 The committer doing the final merge will generate the `content/` directory at that time.
 
-
 ## Additional Information
 
 ### Writing blog posts
@@ -81,7 +75,6 @@ and then run `bundle update`, which will regenerate the complete `Gemfile.lock`.
 Make sure that the updated `Gemfile.lock` is included in your pull request. For more information,
 see the Bundler [documentation](http://bundler.io/v1.3/rationale.html).
 
-
 ## Apache License
 
 Except as otherwise noted this software is licensed under the

http://git-wip-us.apache.org/repos/asf/beam-site/blob/337f6fdc/_config.yml
----------------------------------------------------------------------
diff --git a/_config.yml b/_config.yml
index feca284..3a0c70a 100644
--- a/_config.yml
+++ b/_config.yml
@@ -25,7 +25,7 @@ source: src
 destination: content
 
 # the base hostname & protocol for your site
-url: "http://beam.apache.org"
+url: "https://beam.apache.org"
 
 twitter_username: apachebeam
 

http://git-wip-us.apache.org/repos/asf/beam-site/blob/337f6fdc/src/_posts/2017-01-09-added-apex-runner.md
----------------------------------------------------------------------
diff --git a/src/_posts/2017-01-09-added-apex-runner.md b/src/_posts/2017-01-09-added-apex-runner.md
index 2e28fd6..4a7c140 100644
--- a/src/_posts/2017-01-09-added-apex-runner.md
+++ b/src/_posts/2017-01-09-added-apex-runner.md
@@ -8,11 +8,11 @@ authors:
   - thw
 ---
 
-The latest release 0.4.0 of [Apache Beam](https://beam.apache.org) adds a new runner for [Apache Apex](http://apex.apache.org/). We are excited to reach this initial milestone and are looking forward to continued collaboration between the Beam and Apex communities to advance the runner.
+The latest release 0.4.0 of [Apache Beam]({{ site.baseurl }}/) adds a new runner for [Apache Apex](http://apex.apache.org/). We are excited to reach this initial milestone and are looking forward to continued collaboration between the Beam and Apex communities to advance the runner.
 
 <!--more-->
 
-Beam evolved from the Google Dataflow SDK and as incubator project has quickly adapted the Apache way, grown the community and attracts increasing interest from users that hope to benefit from a conceptual strong unified programming model that is portable between different big data processing frameworks (see [Streaming-101](https://www.oreilly.com/ideas/the-world-beyond-batch-streaming-101) and [Streaming-102](https://www.oreilly.com/ideas/the-world-beyond-batch-streaming-102)). Multiple Apache projects already provide runners for Beam (see [runners and capabilities matrix](http://beam.apache.org/documentation/runners/capability-matrix/)).
+Beam evolved from the Google Dataflow SDK and as incubator project has quickly adapted the Apache way, grown the community and attracts increasing interest from users that hope to benefit from a conceptual strong unified programming model that is portable between different big data processing frameworks (see [Streaming-101](https://www.oreilly.com/ideas/the-world-beyond-batch-streaming-101) and [Streaming-102](https://www.oreilly.com/ideas/the-world-beyond-batch-streaming-102)). Multiple Apache projects already provide runners for Beam (see [runners and capabilities matrix]({{ site.baseurl }}/documentation/runners/capability-matrix/)).
 
 Apex is a stream processing framework for low-latency, high-throughput, stateful and reliable processing of complex analytics pipelines on clusters. Apex was developed since 2012 and is used in production by large companies for real-time and batch processing at scale.
 
@@ -28,7 +28,7 @@ A Beam runner needs to implement the translation from the Beam model to the unde
 
 ## Execution and Testing
 
-In this release, the Apex runner executes the pipelines in embedded mode, where, similar to the direct runner, everything is executed in a single JVM. See [quickstart](https://beam.apache.org/get-started/quickstart/) on how to run the Beam examples with the Apex runner.
+In this release, the Apex runner executes the pipelines in embedded mode, where, similar to the direct runner, everything is executed in a single JVM. See [quickstart]({{ site.baseurl }}/get-started/quickstart/) on how to run the Beam examples with the Apex runner.
 
 Embedded mode is useful for development and debugging. Apex in production runs distributed on Apache Hadoop YARN clusters. An example how a Beam pipeline can be embedded into an Apex application package to run on YARN can be found [here](https://github.com/tweise/apex-samples/tree/master/beam-apex-wordcount) and support for direct launch in the runner is currently being worked on. 
 

http://git-wip-us.apache.org/repos/asf/beam-site/blob/337f6fdc/src/downloads/beam-doap.rdf
----------------------------------------------------------------------
diff --git a/src/downloads/beam-doap.rdf b/src/downloads/beam-doap.rdf
index 8b1cbd8..e59d49d 100644
--- a/src/downloads/beam-doap.rdf
+++ b/src/downloads/beam-doap.rdf
@@ -21,17 +21,17 @@
     See the License for the specific language governing permissions and
     limitations under the License.
 -->
-  <Project rdf:about="http://beam.apache.org">
+  <Project rdf:about="https://beam.apache.org">
     <created>2016-12-21</created>
     <license rdf:resource="http://www.apache.org/licenses/LICENSE-2.0" />
     <name>Apache Beam</name>
-    <homepage rdf:resource="http://beam.apache.org" />
-    <asfext:pmc rdf:resource="http://beam.apache.org" />
+    <homepage rdf:resource="https://beam.apache.org" />
+    <asfext:pmc rdf:resource="https://beam.apache.org" />
     <shortdesc>Apache Beam is a programming model, SDKs, and runners for defining and executing data processing pipelines.</shortdesc>
     <description>Apache Beam is a unified programming model for both batch and streaming data processing, enabling efficient execution across diverse distributed execution engines and providing extensibility points for connecting to different technologies and user communities.</description>
     <bug-database rdf:resource="https://issues.apache.org/jira/browse/BEAM" />
-    <mailing-list rdf:resource="http://beam.apache.org/get-started/support/" />
-    <download-page rdf:resource="http://beam.apache.org/get-started/downloads/" />
+    <mailing-list rdf:resource="https://beam.apache.org/get-started/support/" />
+    <download-page rdf:resource="https://beam.apache.org/get-started/downloads/" />
     <programming-language>Java</programming-language>
     <programming-language>Python</programming-language>
     <category rdf:resource="http://projects.apache.org/category/big-data" />


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

Posted by da...@apache.org.
http://git-wip-us.apache.org/repos/asf/beam-site/blob/63f48409/content/get-started/index.html
----------------------------------------------------------------------
diff --git a/content/get-started/index.html b/content/get-started/index.html
index 76ba604..69a71c0 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.apache.org/get-started/" data-proofer-ignore>
-  <link rel="alternate" type="application/rss+xml" title="Apache Beam" href="http://beam.apache.org/feed.xml">
+  <link rel="canonical" href="https://beam.apache.org/get-started/" data-proofer-ignore>
+  <link rel="alternate" type="application/rss+xml" title="Apache Beam" href="https://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/63f48409/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 ced93cb..6c46596 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.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">
+  <link rel="canonical" href="https://beam.apache.org/get-started/mobile-gaming-example/" data-proofer-ignore>
+  <link rel="alternate" type="application/rss+xml" title="Apache Beam" href="https://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/63f48409/content/get-started/quickstart-java/index.html
----------------------------------------------------------------------
diff --git a/content/get-started/quickstart-java/index.html b/content/get-started/quickstart-java/index.html
index 751c35b..dfdd337 100644
--- a/content/get-started/quickstart-java/index.html
+++ b/content/get-started/quickstart-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.apache.org/get-started/quickstart-java/" data-proofer-ignore>
-  <link rel="alternate" type="application/rss+xml" title="Apache Beam" href="http://beam.apache.org/feed.xml">
+  <link rel="canonical" href="https://beam.apache.org/get-started/quickstart-java/" data-proofer-ignore>
+  <link rel="alternate" type="application/rss+xml" title="Apache Beam" href="https://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/63f48409/content/get-started/quickstart-py/index.html
----------------------------------------------------------------------
diff --git a/content/get-started/quickstart-py/index.html b/content/get-started/quickstart-py/index.html
index 9645c74..2cc61d5 100644
--- a/content/get-started/quickstart-py/index.html
+++ b/content/get-started/quickstart-py/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.apache.org/get-started/quickstart-py/" data-proofer-ignore>
-  <link rel="alternate" type="application/rss+xml" title="Apache Beam" href="http://beam.apache.org/feed.xml">
+  <link rel="canonical" href="https://beam.apache.org/get-started/quickstart-py/" data-proofer-ignore>
+  <link rel="alternate" type="application/rss+xml" title="Apache Beam" href="https://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/63f48409/content/get-started/quickstart/index.html
----------------------------------------------------------------------
diff --git a/content/get-started/quickstart/index.html b/content/get-started/quickstart/index.html
index 87e96c0..84a649d 100644
--- a/content/get-started/quickstart/index.html
+++ b/content/get-started/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.apache.org/get-started/quickstart-java/">
-<meta http-equiv="refresh" content="0; url=http://beam.apache.org/get-started/quickstart-java/">
+<link rel="canonical" href="https://beam.apache.org/get-started/quickstart-java/">
+<meta http-equiv="refresh" content="0; url=https://beam.apache.org/get-started/quickstart-java/">
 <h1>Redirecting\u2026</h1>
-<a href="http://beam.apache.org/get-started/quickstart-java/">Click here if you are not redirected.</a>
-<script>location="http://beam.apache.org/get-started/quickstart-java/"</script>
+<a href="https://beam.apache.org/get-started/quickstart-java/">Click here if you are not redirected.</a>
+<script>location="https://beam.apache.org/get-started/quickstart-java/"</script>
 </html>

http://git-wip-us.apache.org/repos/asf/beam-site/blob/63f48409/content/get-started/releases/index.html
----------------------------------------------------------------------
diff --git a/content/get-started/releases/index.html b/content/get-started/releases/index.html
index 1c4df7d..ace5175 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.apache.org/get-started/downloads/">
-<meta http-equiv="refresh" content="0; url=http://beam.apache.org/get-started/downloads/">
+<link rel="canonical" href="https://beam.apache.org/get-started/downloads/">
+<meta http-equiv="refresh" content="0; url=https://beam.apache.org/get-started/downloads/">
 <h1>Redirecting\u2026</h1>
-<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>
+<a href="https://beam.apache.org/get-started/downloads/">Click here if you are not redirected.</a>
+<script>location="https://beam.apache.org/get-started/downloads/"</script>
 </html>

http://git-wip-us.apache.org/repos/asf/beam-site/blob/63f48409/content/get-started/support/index.html
----------------------------------------------------------------------
diff --git a/content/get-started/support/index.html b/content/get-started/support/index.html
index 53cba70..94edf0f 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.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">
+  <link rel="canonical" href="https://beam.apache.org/get-started/support/" data-proofer-ignore>
+  <link rel="alternate" type="application/rss+xml" title="Apache Beam" href="https://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/63f48409/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 3809656..1cc4f9a 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.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">
+  <link rel="canonical" href="https://beam.apache.org/get-started/wordcount-example/" data-proofer-ignore>
+  <link rel="alternate" type="application/rss+xml" title="Apache Beam" href="https://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/63f48409/content/getting-started/index.html
----------------------------------------------------------------------
diff --git a/content/getting-started/index.html b/content/getting-started/index.html
index 87e96c0..84a649d 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.apache.org/get-started/quickstart-java/">
-<meta http-equiv="refresh" content="0; url=http://beam.apache.org/get-started/quickstart-java/">
+<link rel="canonical" href="https://beam.apache.org/get-started/quickstart-java/">
+<meta http-equiv="refresh" content="0; url=https://beam.apache.org/get-started/quickstart-java/">
 <h1>Redirecting\u2026</h1>
-<a href="http://beam.apache.org/get-started/quickstart-java/">Click here if you are not redirected.</a>
-<script>location="http://beam.apache.org/get-started/quickstart-java/"</script>
+<a href="https://beam.apache.org/get-started/quickstart-java/">Click here if you are not redirected.</a>
+<script>location="https://beam.apache.org/get-started/quickstart-java/"</script>
 </html>

http://git-wip-us.apache.org/repos/asf/beam-site/blob/63f48409/content/index.html
----------------------------------------------------------------------
diff --git a/content/index.html b/content/index.html
index 129ef79..ac208ff 100644
--- a/content/index.html
+++ b/content/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.apache.org/" data-proofer-ignore>
-  <link rel="alternate" type="application/rss+xml" title="Apache Beam" href="http://beam.apache.org/feed.xml">
+  <link rel="canonical" href="https://beam.apache.org/" data-proofer-ignore>
+  <link rel="alternate" type="application/rss+xml" title="Apache Beam" href="https://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/63f48409/content/learn/index.html
----------------------------------------------------------------------
diff --git a/content/learn/index.html b/content/learn/index.html
index 2431768..6b3f30a 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.apache.org/documentation/">
-<meta http-equiv="refresh" content="0; url=http://beam.apache.org/documentation/">
+<link rel="canonical" href="https://beam.apache.org/documentation/">
+<meta http-equiv="refresh" content="0; url=https://beam.apache.org/documentation/">
 <h1>Redirecting\u2026</h1>
-<a href="http://beam.apache.org/documentation/">Click here if you are not redirected.</a>
-<script>location="http://beam.apache.org/documentation/"</script>
+<a href="https://beam.apache.org/documentation/">Click here if you are not redirected.</a>
+<script>location="https://beam.apache.org/documentation/"</script>
 </html>

http://git-wip-us.apache.org/repos/asf/beam-site/blob/63f48409/content/learn/presentation-materials/index.html
----------------------------------------------------------------------
diff --git a/content/learn/presentation-materials/index.html b/content/learn/presentation-materials/index.html
index 0909ae8..f3d0f69 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.apache.org/contribute/presentation-materials/">
-<meta http-equiv="refresh" content="0; url=http://beam.apache.org/contribute/presentation-materials/">
+<link rel="canonical" href="https://beam.apache.org/contribute/presentation-materials/">
+<meta http-equiv="refresh" content="0; url=https://beam.apache.org/contribute/presentation-materials/">
 <h1>Redirecting\u2026</h1>
-<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>
+<a href="https://beam.apache.org/contribute/presentation-materials/">Click here if you are not redirected.</a>
+<script>location="https://beam.apache.org/contribute/presentation-materials/"</script>
 </html>

http://git-wip-us.apache.org/repos/asf/beam-site/blob/63f48409/content/learn/programming-guide/index.html
----------------------------------------------------------------------
diff --git a/content/learn/programming-guide/index.html b/content/learn/programming-guide/index.html
index 33aac66..003301c 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.apache.org/documentation/programming-guide/">
-<meta http-equiv="refresh" content="0; url=http://beam.apache.org/documentation/programming-guide/">
+<link rel="canonical" href="https://beam.apache.org/documentation/programming-guide/">
+<meta http-equiv="refresh" content="0; url=https://beam.apache.org/documentation/programming-guide/">
 <h1>Redirecting\u2026</h1>
-<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>
+<a href="https://beam.apache.org/documentation/programming-guide/">Click here if you are not redirected.</a>
+<script>location="https://beam.apache.org/documentation/programming-guide/"</script>
 </html>

http://git-wip-us.apache.org/repos/asf/beam-site/blob/63f48409/content/learn/resources/index.html
----------------------------------------------------------------------
diff --git a/content/learn/resources/index.html b/content/learn/resources/index.html
index fa0aea2..fcf4f56 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.apache.org/documentation/resources/">
-<meta http-equiv="refresh" content="0; url=http://beam.apache.org/documentation/resources/">
+<link rel="canonical" href="https://beam.apache.org/documentation/resources/">
+<meta http-equiv="refresh" content="0; url=https://beam.apache.org/documentation/resources/">
 <h1>Redirecting\u2026</h1>
-<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>
+<a href="https://beam.apache.org/documentation/resources/">Click here if you are not redirected.</a>
+<script>location="https://beam.apache.org/documentation/resources/"</script>
 </html>

http://git-wip-us.apache.org/repos/asf/beam-site/blob/63f48409/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 a6de601..d7f8025 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.apache.org/documentation/runners/capability-matrix/">
-<meta http-equiv="refresh" content="0; url=http://beam.apache.org/documentation/runners/capability-matrix/">
+<link rel="canonical" href="https://beam.apache.org/documentation/runners/capability-matrix/">
+<meta http-equiv="refresh" content="0; url=https://beam.apache.org/documentation/runners/capability-matrix/">
 <h1>Redirecting\u2026</h1>
-<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>
+<a href="https://beam.apache.org/documentation/runners/capability-matrix/">Click here if you are not redirected.</a>
+<script>location="https://beam.apache.org/documentation/runners/capability-matrix/"</script>
 </html>

http://git-wip-us.apache.org/repos/asf/beam-site/blob/63f48409/content/learn/runners/dataflow/index.html
----------------------------------------------------------------------
diff --git a/content/learn/runners/dataflow/index.html b/content/learn/runners/dataflow/index.html
index 5d9077a..2334316 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.apache.org/documentation/runners/dataflow/">
-<meta http-equiv="refresh" content="0; url=http://beam.apache.org/documentation/runners/dataflow/">
+<link rel="canonical" href="https://beam.apache.org/documentation/runners/dataflow/">
+<meta http-equiv="refresh" content="0; url=https://beam.apache.org/documentation/runners/dataflow/">
 <h1>Redirecting\u2026</h1>
-<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>
+<a href="https://beam.apache.org/documentation/runners/dataflow/">Click here if you are not redirected.</a>
+<script>location="https://beam.apache.org/documentation/runners/dataflow/"</script>
 </html>

http://git-wip-us.apache.org/repos/asf/beam-site/blob/63f48409/content/learn/runners/direct/index.html
----------------------------------------------------------------------
diff --git a/content/learn/runners/direct/index.html b/content/learn/runners/direct/index.html
index ac7c0fa..fcc8a56 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.apache.org/documentation/runners/direct/">
-<meta http-equiv="refresh" content="0; url=http://beam.apache.org/documentation/runners/direct/">
+<link rel="canonical" href="https://beam.apache.org/documentation/runners/direct/">
+<meta http-equiv="refresh" content="0; url=https://beam.apache.org/documentation/runners/direct/">
 <h1>Redirecting\u2026</h1>
-<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>
+<a href="https://beam.apache.org/documentation/runners/direct/">Click here if you are not redirected.</a>
+<script>location="https://beam.apache.org/documentation/runners/direct/"</script>
 </html>

http://git-wip-us.apache.org/repos/asf/beam-site/blob/63f48409/content/learn/runners/flink/index.html
----------------------------------------------------------------------
diff --git a/content/learn/runners/flink/index.html b/content/learn/runners/flink/index.html
index e0c2448..6b41b9d 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.apache.org/documentation/runners/flink/">
-<meta http-equiv="refresh" content="0; url=http://beam.apache.org/documentation/runners/flink/">
+<link rel="canonical" href="https://beam.apache.org/documentation/runners/flink/">
+<meta http-equiv="refresh" content="0; url=https://beam.apache.org/documentation/runners/flink/">
 <h1>Redirecting\u2026</h1>
-<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>
+<a href="https://beam.apache.org/documentation/runners/flink/">Click here if you are not redirected.</a>
+<script>location="https://beam.apache.org/documentation/runners/flink/"</script>
 </html>

http://git-wip-us.apache.org/repos/asf/beam-site/blob/63f48409/content/learn/runners/spark/index.html
----------------------------------------------------------------------
diff --git a/content/learn/runners/spark/index.html b/content/learn/runners/spark/index.html
index 1b9b0a5..226f776 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.apache.org/documentation/runners/spark/">
-<meta http-equiv="refresh" content="0; url=http://beam.apache.org/documentation/runners/spark/">
+<link rel="canonical" href="https://beam.apache.org/documentation/runners/spark/">
+<meta http-equiv="refresh" content="0; url=https://beam.apache.org/documentation/runners/spark/">
 <h1>Redirecting\u2026</h1>
-<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>
+<a href="https://beam.apache.org/documentation/runners/spark/">Click here if you are not redirected.</a>
+<script>location="https://beam.apache.org/documentation/runners/spark/"</script>
 </html>

http://git-wip-us.apache.org/repos/asf/beam-site/blob/63f48409/content/learn/sdks/java/index.html
----------------------------------------------------------------------
diff --git a/content/learn/sdks/java/index.html b/content/learn/sdks/java/index.html
index c231048..625887b 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.apache.org/documentation/sdks/java/">
-<meta http-equiv="refresh" content="0; url=http://beam.apache.org/documentation/sdks/java/">
+<link rel="canonical" href="https://beam.apache.org/documentation/sdks/java/">
+<meta http-equiv="refresh" content="0; url=https://beam.apache.org/documentation/sdks/java/">
 <h1>Redirecting\u2026</h1>
-<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>
+<a href="https://beam.apache.org/documentation/sdks/java/">Click here if you are not redirected.</a>
+<script>location="https://beam.apache.org/documentation/sdks/java/"</script>
 </html>

http://git-wip-us.apache.org/repos/asf/beam-site/blob/63f48409/content/learn/sdks/javadoc/index.html
----------------------------------------------------------------------
diff --git a/content/learn/sdks/javadoc/index.html b/content/learn/sdks/javadoc/index.html
index deaab27..84bf865 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.apache.org/documentation/sdks/javadoc/">
-<meta http-equiv="refresh" content="0; url=http://beam.apache.org/documentation/sdks/javadoc/">
+<link rel="canonical" href="https://beam.apache.org/documentation/sdks/javadoc/">
+<meta http-equiv="refresh" content="0; url=https://beam.apache.org/documentation/sdks/javadoc/">
 <h1>Redirecting\u2026</h1>
-<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>
+<a href="https://beam.apache.org/documentation/sdks/javadoc/">Click here if you are not redirected.</a>
+<script>location="https://beam.apache.org/documentation/sdks/javadoc/"</script>
 </html>

http://git-wip-us.apache.org/repos/asf/beam-site/blob/63f48409/content/material/index.html
----------------------------------------------------------------------
diff --git a/content/material/index.html b/content/material/index.html
index 4fc2371..bde6f01 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.apache.org/contribute/logos/">
-<meta http-equiv="refresh" content="0; url=http://beam.apache.org/contribute/logos/">
+<link rel="canonical" href="https://beam.apache.org/contribute/logos/">
+<meta http-equiv="refresh" content="0; url=https://beam.apache.org/contribute/logos/">
 <h1>Redirecting\u2026</h1>
-<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>
+<a href="https://beam.apache.org/contribute/logos/">Click here if you are not redirected.</a>
+<script>location="https://beam.apache.org/contribute/logos/"</script>
 </html>

http://git-wip-us.apache.org/repos/asf/beam-site/blob/63f48409/content/privacy_policy/index.html
----------------------------------------------------------------------
diff --git a/content/privacy_policy/index.html b/content/privacy_policy/index.html
index bed2e5d..816aa21 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.apache.org/privacy_policy/" data-proofer-ignore>
-  <link rel="alternate" type="application/rss+xml" title="Apache Beam" href="http://beam.apache.org/feed.xml">
+  <link rel="canonical" href="https://beam.apache.org/privacy_policy/" data-proofer-ignore>
+  <link rel="alternate" type="application/rss+xml" title="Apache Beam" href="https://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/63f48409/content/project/logos/index.html
----------------------------------------------------------------------
diff --git a/content/project/logos/index.html b/content/project/logos/index.html
index 4fc2371..bde6f01 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.apache.org/contribute/logos/">
-<meta http-equiv="refresh" content="0; url=http://beam.apache.org/contribute/logos/">
+<link rel="canonical" href="https://beam.apache.org/contribute/logos/">
+<meta http-equiv="refresh" content="0; url=https://beam.apache.org/contribute/logos/">
 <h1>Redirecting\u2026</h1>
-<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>
+<a href="https://beam.apache.org/contribute/logos/">Click here if you are not redirected.</a>
+<script>location="https://beam.apache.org/contribute/logos/"</script>
 </html>

http://git-wip-us.apache.org/repos/asf/beam-site/blob/63f48409/content/project/team/index.html
----------------------------------------------------------------------
diff --git a/content/project/team/index.html b/content/project/team/index.html
index 98c98e8..e6e6bbf 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.apache.org/contribute/team/">
-<meta http-equiv="refresh" content="0; url=http://beam.apache.org/contribute/team/">
+<link rel="canonical" href="https://beam.apache.org/contribute/team/">
+<meta http-equiv="refresh" content="0; url=https://beam.apache.org/contribute/team/">
 <h1>Redirecting\u2026</h1>
-<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>
+<a href="https://beam.apache.org/contribute/team/">Click here if you are not redirected.</a>
+<script>location="https://beam.apache.org/contribute/team/"</script>
 </html>

http://git-wip-us.apache.org/repos/asf/beam-site/blob/63f48409/content/releases/index.html
----------------------------------------------------------------------
diff --git a/content/releases/index.html b/content/releases/index.html
index 1c4df7d..ace5175 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.apache.org/get-started/downloads/">
-<meta http-equiv="refresh" content="0; url=http://beam.apache.org/get-started/downloads/">
+<link rel="canonical" href="https://beam.apache.org/get-started/downloads/">
+<meta http-equiv="refresh" content="0; url=https://beam.apache.org/get-started/downloads/">
 <h1>Redirecting\u2026</h1>
-<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>
+<a href="https://beam.apache.org/get-started/downloads/">Click here if you are not redirected.</a>
+<script>location="https://beam.apache.org/get-started/downloads/"</script>
 </html>

http://git-wip-us.apache.org/repos/asf/beam-site/blob/63f48409/content/source_repository/index.html
----------------------------------------------------------------------
diff --git a/content/source_repository/index.html b/content/source_repository/index.html
index 80fbcba..c72852c 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.apache.org/contribute/source-repository/">
-<meta http-equiv="refresh" content="0; url=http://beam.apache.org/contribute/source-repository/">
+<link rel="canonical" href="https://beam.apache.org/contribute/source-repository/">
+<meta http-equiv="refresh" content="0; url=https://beam.apache.org/contribute/source-repository/">
 <h1>Redirecting\u2026</h1>
-<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>
+<a href="https://beam.apache.org/contribute/source-repository/">Click here if you are not redirected.</a>
+<script>location="https://beam.apache.org/contribute/source-repository/"</script>
 </html>

http://git-wip-us.apache.org/repos/asf/beam-site/blob/63f48409/content/team/index.html
----------------------------------------------------------------------
diff --git a/content/team/index.html b/content/team/index.html
index 98c98e8..e6e6bbf 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.apache.org/contribute/team/">
-<meta http-equiv="refresh" content="0; url=http://beam.apache.org/contribute/team/">
+<link rel="canonical" href="https://beam.apache.org/contribute/team/">
+<meta http-equiv="refresh" content="0; url=https://beam.apache.org/contribute/team/">
 <h1>Redirecting\u2026</h1>
-<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>
+<a href="https://beam.apache.org/contribute/team/">Click here if you are not redirected.</a>
+<script>location="https://beam.apache.org/contribute/team/"</script>
 </html>

http://git-wip-us.apache.org/repos/asf/beam-site/blob/63f48409/content/use/beam-overview/index.html
----------------------------------------------------------------------
diff --git a/content/use/beam-overview/index.html b/content/use/beam-overview/index.html
index df2a24a..b62c77a 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.apache.org/get-started/beam-overview/">
-<meta http-equiv="refresh" content="0; url=http://beam.apache.org/get-started/beam-overview/">
+<link rel="canonical" href="https://beam.apache.org/get-started/beam-overview/">
+<meta http-equiv="refresh" content="0; url=https://beam.apache.org/get-started/beam-overview/">
 <h1>Redirecting\u2026</h1>
-<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>
+<a href="https://beam.apache.org/get-started/beam-overview/">Click here if you are not redirected.</a>
+<script>location="https://beam.apache.org/get-started/beam-overview/"</script>
 </html>

http://git-wip-us.apache.org/repos/asf/beam-site/blob/63f48409/content/use/index.html
----------------------------------------------------------------------
diff --git a/content/use/index.html b/content/use/index.html
index 6b1aa7d..deeef1a 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.apache.org/get-started/">
-<meta http-equiv="refresh" content="0; url=http://beam.apache.org/get-started/">
+<link rel="canonical" href="https://beam.apache.org/get-started/">
+<meta http-equiv="refresh" content="0; url=https://beam.apache.org/get-started/">
 <h1>Redirecting\u2026</h1>
-<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>
+<a href="https://beam.apache.org/get-started/">Click here if you are not redirected.</a>
+<script>location="https://beam.apache.org/get-started/"</script>
 </html>

http://git-wip-us.apache.org/repos/asf/beam-site/blob/63f48409/content/use/issue-tracking/index.html
----------------------------------------------------------------------
diff --git a/content/use/issue-tracking/index.html b/content/use/issue-tracking/index.html
index a03afd1..c009f95 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.apache.org/get-started/support/">
-<meta http-equiv="refresh" content="0; url=http://beam.apache.org/get-started/support/">
+<link rel="canonical" href="https://beam.apache.org/get-started/support/">
+<meta http-equiv="refresh" content="0; url=https://beam.apache.org/get-started/support/">
 <h1>Redirecting\u2026</h1>
-<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>
+<a href="https://beam.apache.org/get-started/support/">Click here if you are not redirected.</a>
+<script>location="https://beam.apache.org/get-started/support/"</script>
 </html>

http://git-wip-us.apache.org/repos/asf/beam-site/blob/63f48409/content/use/mailing-lists/index.html
----------------------------------------------------------------------
diff --git a/content/use/mailing-lists/index.html b/content/use/mailing-lists/index.html
index a03afd1..c009f95 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.apache.org/get-started/support/">
-<meta http-equiv="refresh" content="0; url=http://beam.apache.org/get-started/support/">
+<link rel="canonical" href="https://beam.apache.org/get-started/support/">
+<meta http-equiv="refresh" content="0; url=https://beam.apache.org/get-started/support/">
 <h1>Redirecting\u2026</h1>
-<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>
+<a href="https://beam.apache.org/get-started/support/">Click here if you are not redirected.</a>
+<script>location="https://beam.apache.org/get-started/support/"</script>
 </html>

http://git-wip-us.apache.org/repos/asf/beam-site/blob/63f48409/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 6a0e21d..662d695 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.apache.org/get-started/mobile-gaming-example/">
-<meta http-equiv="refresh" content="0; url=http://beam.apache.org/get-started/mobile-gaming-example/">
+<link rel="canonical" href="https://beam.apache.org/get-started/mobile-gaming-example/">
+<meta http-equiv="refresh" content="0; url=https://beam.apache.org/get-started/mobile-gaming-example/">
 <h1>Redirecting\u2026</h1>
-<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>
+<a href="https://beam.apache.org/get-started/mobile-gaming-example/">Click here if you are not redirected.</a>
+<script>location="https://beam.apache.org/get-started/mobile-gaming-example/"</script>
 </html>

http://git-wip-us.apache.org/repos/asf/beam-site/blob/63f48409/content/use/quickstart/index.html
----------------------------------------------------------------------
diff --git a/content/use/quickstart/index.html b/content/use/quickstart/index.html
index 87e96c0..84a649d 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.apache.org/get-started/quickstart-java/">
-<meta http-equiv="refresh" content="0; url=http://beam.apache.org/get-started/quickstart-java/">
+<link rel="canonical" href="https://beam.apache.org/get-started/quickstart-java/">
+<meta http-equiv="refresh" content="0; url=https://beam.apache.org/get-started/quickstart-java/">
 <h1>Redirecting\u2026</h1>
-<a href="http://beam.apache.org/get-started/quickstart-java/">Click here if you are not redirected.</a>
-<script>location="http://beam.apache.org/get-started/quickstart-java/"</script>
+<a href="https://beam.apache.org/get-started/quickstart-java/">Click here if you are not redirected.</a>
+<script>location="https://beam.apache.org/get-started/quickstart-java/"</script>
 </html>

http://git-wip-us.apache.org/repos/asf/beam-site/blob/63f48409/content/use/releases/index.html
----------------------------------------------------------------------
diff --git a/content/use/releases/index.html b/content/use/releases/index.html
index 1c4df7d..ace5175 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.apache.org/get-started/downloads/">
-<meta http-equiv="refresh" content="0; url=http://beam.apache.org/get-started/downloads/">
+<link rel="canonical" href="https://beam.apache.org/get-started/downloads/">
+<meta http-equiv="refresh" content="0; url=https://beam.apache.org/get-started/downloads/">
 <h1>Redirecting\u2026</h1>
-<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>
+<a href="https://beam.apache.org/get-started/downloads/">Click here if you are not redirected.</a>
+<script>location="https://beam.apache.org/get-started/downloads/"</script>
 </html>

http://git-wip-us.apache.org/repos/asf/beam-site/blob/63f48409/content/use/wordcount-example/index.html
----------------------------------------------------------------------
diff --git a/content/use/wordcount-example/index.html b/content/use/wordcount-example/index.html
index c25de22..d67de1f 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.apache.org/get-started/wordcount-example/">
-<meta http-equiv="refresh" content="0; url=http://beam.apache.org/get-started/wordcount-example/">
+<link rel="canonical" href="https://beam.apache.org/get-started/wordcount-example/">
+<meta http-equiv="refresh" content="0; url=https://beam.apache.org/get-started/wordcount-example/">
 <h1>Redirecting\u2026</h1>
-<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>
+<a href="https://beam.apache.org/get-started/wordcount-example/">Click here if you are not redirected.</a>
+<script>location="https://beam.apache.org/get-started/wordcount-example/"</script>
 </html>


[4/4] beam-site git commit: This closes #137

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


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

Branch: refs/heads/asf-site
Commit: 5b9e9ef69b934232167d0afad3c609fdec82b89b
Parents: 7f9daf5 63f4840
Author: Davor Bonaci <da...@google.com>
Authored: Tue Jan 31 14:39:27 2017 -0800
Committer: Davor Bonaci <da...@google.com>
Committed: Tue Jan 31 14:39:27 2017 -0800

----------------------------------------------------------------------
 README.md                                       | 13 ++---
 _config.yml                                     |  2 +-
 .../2016/03/17/capability-matrix.html           |  4 +-
 .../2016/04/03/presentation-materials.html      |  4 +-
 .../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     |  4 +-
 .../website/2016/02/22/beam-has-a-logo.html     |  4 +-
 .../blog/2016/05/18/splitAtFraction-method.html |  4 +-
 .../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        |  4 +-
 content/blog/2017/01/09/added-apex-runner.html  | 10 ++--
 content/blog/2017/01/10/beam-graduates.html     |  4 +-
 content/blog/index.html                         |  6 +--
 content/capability-matrix/index.html            |  8 ++--
 content/coming-soon.html                        |  4 +-
 .../contribute/contribution-guide/index.html    |  4 +-
 content/contribute/design-principles/index.html |  4 +-
 content/contribute/index.html                   |  4 +-
 content/contribute/logos/index.html             |  4 +-
 content/contribute/maturity-model/index.html    |  4 +-
 .../presentation-materials/index.html           |  4 +-
 .../ptransform-style-guide/index.html           |  4 +-
 content/contribute/release-guide/index.html     |  4 +-
 content/contribute/source-repository/index.html |  4 +-
 content/contribute/team/index.html              |  4 +-
 content/contribute/testing/index.html           |  4 +-
 content/contribute/work-in-progress/index.html  |  4 +-
 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     |  4 +-
 .../documentation/programming-guide/index.html  |  4 +-
 content/documentation/resources/index.html      |  4 +-
 content/documentation/runners/apex/index.html   |  4 +-
 .../runners/capability-matrix/index.html        |  4 +-
 .../documentation/runners/dataflow/index.html   |  4 +-
 content/documentation/runners/direct/index.html |  4 +-
 content/documentation/runners/flink/index.html  |  4 +-
 content/documentation/runners/spark/index.html  |  4 +-
 content/documentation/sdks/java/index.html      |  4 +-
 content/documentation/sdks/python/index.html    |  4 +-
 content/downloads/beam-doap.rdf                 | 10 ++--
 content/feed.xml                                | 50 ++++++++++----------
 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            |  4 +-
 content/get-started/quickstart-java/index.html  |  4 +-
 content/get-started/quickstart-py/index.html    |  4 +-
 content/get-started/quickstart/index.html       |  8 ++--
 content/get-started/releases/index.html         |  8 ++--
 content/get-started/support/index.html          |  4 +-
 .../get-started/wordcount-example/index.html    |  4 +-
 content/getting-started/index.html              |  8 ++--
 content/index.html                              |  4 +-
 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/2017-01-09-added-apex-runner.md      |  6 +--
 src/downloads/beam-doap.rdf                     | 10 ++--
 92 files changed, 288 insertions(+), 295 deletions(-)
----------------------------------------------------------------------



[3/4] 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/63f48409
Tree: http://git-wip-us.apache.org/repos/asf/beam-site/tree/63f48409
Diff: http://git-wip-us.apache.org/repos/asf/beam-site/diff/63f48409

Branch: refs/heads/asf-site
Commit: 63f48409ad577c91103a4106de3abee30b70a03c
Parents: 337f6fd
Author: Davor Bonaci <da...@google.com>
Authored: Tue Jan 31 14:39:27 2017 -0800
Committer: Davor Bonaci <da...@google.com>
Committed: Tue Jan 31 14:39:27 2017 -0800

----------------------------------------------------------------------
 .../2016/03/17/capability-matrix.html           |  4 +-
 .../2016/04/03/presentation-materials.html      |  4 +-
 .../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     |  4 +-
 .../website/2016/02/22/beam-has-a-logo.html     |  4 +-
 .../blog/2016/05/18/splitAtFraction-method.html |  4 +-
 .../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        |  4 +-
 content/blog/2017/01/09/added-apex-runner.html  | 10 ++--
 content/blog/2017/01/10/beam-graduates.html     |  4 +-
 content/blog/index.html                         |  6 +--
 content/capability-matrix/index.html            |  8 ++--
 content/coming-soon.html                        |  4 +-
 .../contribute/contribution-guide/index.html    |  4 +-
 content/contribute/design-principles/index.html |  4 +-
 content/contribute/index.html                   |  4 +-
 content/contribute/logos/index.html             |  4 +-
 content/contribute/maturity-model/index.html    |  4 +-
 .../presentation-materials/index.html           |  4 +-
 .../ptransform-style-guide/index.html           |  4 +-
 content/contribute/release-guide/index.html     |  4 +-
 content/contribute/source-repository/index.html |  4 +-
 content/contribute/team/index.html              |  4 +-
 content/contribute/testing/index.html           |  4 +-
 content/contribute/work-in-progress/index.html  |  4 +-
 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     |  4 +-
 .../documentation/programming-guide/index.html  |  4 +-
 content/documentation/resources/index.html      |  4 +-
 content/documentation/runners/apex/index.html   |  4 +-
 .../runners/capability-matrix/index.html        |  4 +-
 .../documentation/runners/dataflow/index.html   |  4 +-
 content/documentation/runners/direct/index.html |  4 +-
 content/documentation/runners/flink/index.html  |  4 +-
 content/documentation/runners/spark/index.html  |  4 +-
 content/documentation/sdks/java/index.html      |  4 +-
 content/documentation/sdks/python/index.html    |  4 +-
 content/downloads/beam-doap.rdf                 | 10 ++--
 content/feed.xml                                | 50 ++++++++++----------
 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            |  4 +-
 content/get-started/quickstart-java/index.html  |  4 +-
 content/get-started/quickstart-py/index.html    |  4 +-
 content/get-started/quickstart/index.html       |  8 ++--
 content/get-started/releases/index.html         |  8 ++--
 content/get-started/support/index.html          |  4 +-
 .../get-started/wordcount-example/index.html    |  4 +-
 content/getting-started/index.html              |  8 ++--
 content/index.html                              |  4 +-
 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 ++--
 88 files changed, 276 insertions(+), 276 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/beam-site/blob/63f48409/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 72d5dfc..6f34cb0 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.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">
+  <link rel="canonical" href="https://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="https://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/63f48409/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 13b8e18..5511074 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.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">
+  <link rel="canonical" href="https://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="https://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/63f48409/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 25cdaad..1379f69 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.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">
+  <link rel="canonical" href="https://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="https://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/63f48409/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 309ea7b..ce35472 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.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">
+  <link rel="canonical" href="https://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="https://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/63f48409/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 defada4..a6a1caa 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.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">
+  <link rel="canonical" href="https://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="https://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/63f48409/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 897b0b6..371920f 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.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">
+  <link rel="canonical" href="https://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="https://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/63f48409/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 283f617..065c566 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.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">
+  <link rel="canonical" href="https://beam.apache.org/blog/2016/05/18/splitAtFraction-method.html" data-proofer-ignore>
+  <link rel="alternate" type="application/rss+xml" title="Apache Beam" href="https://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/63f48409/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 de021f0..0a8d7f3 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.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">
+  <link rel="canonical" href="https://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="https://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/63f48409/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 a4ee820..4d68330 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.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">
+  <link rel="canonical" href="https://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="https://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/63f48409/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 e84c0c8..c371689 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.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">
+  <link rel="canonical" href="https://beam.apache.org/blog/2016/08/03/six-months.html" data-proofer-ignore>
+  <link rel="alternate" type="application/rss+xml" title="Apache Beam" href="https://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/63f48409/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 69dcc97..79c449a 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.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">
+  <link rel="canonical" href="https://beam.apache.org/blog/2016/10/20/test-stream.html" data-proofer-ignore>
+  <link rel="alternate" type="application/rss+xml" title="Apache Beam" href="https://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/63f48409/content/blog/2017/01/09/added-apex-runner.html
----------------------------------------------------------------------
diff --git a/content/blog/2017/01/09/added-apex-runner.html b/content/blog/2017/01/09/added-apex-runner.html
index d9a740d..7c42b7a 100644
--- a/content/blog/2017/01/09/added-apex-runner.html
+++ b/content/blog/2017/01/09/added-apex-runner.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.apache.org/blog/2017/01/09/added-apex-runner.html" data-proofer-ignore>
-  <link rel="alternate" type="application/rss+xml" title="Apache Beam" href="http://beam.apache.org/feed.xml">
+  <link rel="canonical" href="https://beam.apache.org/blog/2017/01/09/added-apex-runner.html" data-proofer-ignore>
+  <link rel="alternate" type="application/rss+xml" title="Apache Beam" href="https://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),
@@ -156,11 +156,11 @@
   </header>
 
   <div class="post-content" itemprop="articleBody">
-    <p>The latest release 0.4.0 of <a href="https://beam.apache.org">Apache Beam</a> adds a new runner for <a href="http://apex.apache.org/">Apache Apex</a>. We are excited to reach this initial milestone and are looking forward to continued collaboration between the Beam and Apex communities to advance the runner.</p>
+    <p>The latest release 0.4.0 of <a href="/">Apache Beam</a> adds a new runner for <a href="http://apex.apache.org/">Apache Apex</a>. We are excited to reach this initial milestone and are looking forward to continued collaboration between the Beam and Apex communities to advance the runner.</p>
 
 <!--more-->
 
-<p>Beam evolved from the Google Dataflow SDK and as incubator project has quickly adapted the Apache way, grown the community and attracts increasing interest from users that hope to benefit from a conceptual strong unified programming model that is portable between different big data processing frameworks (see <a href="https://www.oreilly.com/ideas/the-world-beyond-batch-streaming-101">Streaming-101</a> and <a href="https://www.oreilly.com/ideas/the-world-beyond-batch-streaming-102">Streaming-102</a>). Multiple Apache projects already provide runners for Beam (see <a href="http://beam.apache.org/documentation/runners/capability-matrix/">runners and capabilities matrix</a>).</p>
+<p>Beam evolved from the Google Dataflow SDK and as incubator project has quickly adapted the Apache way, grown the community and attracts increasing interest from users that hope to benefit from a conceptual strong unified programming model that is portable between different big data processing frameworks (see <a href="https://www.oreilly.com/ideas/the-world-beyond-batch-streaming-101">Streaming-101</a> and <a href="https://www.oreilly.com/ideas/the-world-beyond-batch-streaming-102">Streaming-102</a>). Multiple Apache projects already provide runners for Beam (see <a href="/documentation/runners/capability-matrix/">runners and capabilities matrix</a>).</p>
 
 <p>Apex is a stream processing framework for low-latency, high-throughput, stateful and reliable processing of complex analytics pipelines on clusters. Apex was developed since 2012 and is used in production by large companies for real-time and batch processing at scale.</p>
 
@@ -176,7 +176,7 @@
 
 <h2 id="execution-and-testing">Execution and Testing</h2>
 
-<p>In this release, the Apex runner executes the pipelines in embedded mode, where, similar to the direct runner, everything is executed in a single JVM. See <a href="https://beam.apache.org/get-started/quickstart/">quickstart</a> on how to run the Beam examples with the Apex runner.</p>
+<p>In this release, the Apex runner executes the pipelines in embedded mode, where, similar to the direct runner, everything is executed in a single JVM. See <a href="/get-started/quickstart/">quickstart</a> on how to run the Beam examples with the Apex runner.</p>
 
 <p>Embedded mode is useful for development and debugging. Apex in production runs distributed on Apache Hadoop YARN clusters. An example how a Beam pipeline can be embedded into an Apex application package to run on YARN can be found <a href="https://github.com/tweise/apex-samples/tree/master/beam-apex-wordcount">here</a> and support for direct launch in the runner is currently being worked on.</p>
 

http://git-wip-us.apache.org/repos/asf/beam-site/blob/63f48409/content/blog/2017/01/10/beam-graduates.html
----------------------------------------------------------------------
diff --git a/content/blog/2017/01/10/beam-graduates.html b/content/blog/2017/01/10/beam-graduates.html
index a4edd6e..359314f 100644
--- a/content/blog/2017/01/10/beam-graduates.html
+++ b/content/blog/2017/01/10/beam-graduates.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.apache.org/blog/2017/01/10/beam-graduates.html" data-proofer-ignore>
-  <link rel="alternate" type="application/rss+xml" title="Apache Beam" href="http://beam.apache.org/feed.xml">
+  <link rel="canonical" href="https://beam.apache.org/blog/2017/01/10/beam-graduates.html" data-proofer-ignore>
+  <link rel="alternate" type="application/rss+xml" title="Apache Beam" href="https://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/63f48409/content/blog/index.html
----------------------------------------------------------------------
diff --git a/content/blog/index.html b/content/blog/index.html
index 5b5397d..5c27ebd 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.apache.org/blog/" data-proofer-ignore>
-  <link rel="alternate" type="application/rss+xml" title="Apache Beam" href="http://beam.apache.org/feed.xml">
+  <link rel="canonical" href="https://beam.apache.org/blog/" data-proofer-ignore>
+  <link rel="alternate" type="application/rss+xml" title="Apache Beam" href="https://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,7 +175,7 @@ Read more&nbsp;<span class="glyphicon glyphicon-menu-right" aria-hidden="true"><
 <p><i>Jan 9, 2017 \u2022  Thomas Weise [<a href="https://twitter.com/thweise">@thweise</a>]
 </i></p>
 
-<p>The latest release 0.4.0 of <a href="https://beam.apache.org">Apache Beam</a> adds a new runner for <a href="http://apex.apache.org/">Apache Apex</a>. We are excited to reach this initial milestone and are looking forward to continued collaboration between the Beam and Apex communities to advance the runner.</p>
+<p>The latest release 0.4.0 of <a href="/">Apache Beam</a> adds a new runner for <a href="http://apex.apache.org/">Apache Apex</a>. We are excited to reach this initial milestone and are looking forward to continued collaboration between the Beam and Apex communities to advance the runner.</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/63f48409/content/capability-matrix/index.html
----------------------------------------------------------------------
diff --git a/content/capability-matrix/index.html b/content/capability-matrix/index.html
index a6de601..d7f8025 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.apache.org/documentation/runners/capability-matrix/">
-<meta http-equiv="refresh" content="0; url=http://beam.apache.org/documentation/runners/capability-matrix/">
+<link rel="canonical" href="https://beam.apache.org/documentation/runners/capability-matrix/">
+<meta http-equiv="refresh" content="0; url=https://beam.apache.org/documentation/runners/capability-matrix/">
 <h1>Redirecting\u2026</h1>
-<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>
+<a href="https://beam.apache.org/documentation/runners/capability-matrix/">Click here if you are not redirected.</a>
+<script>location="https://beam.apache.org/documentation/runners/capability-matrix/"</script>
 </html>

http://git-wip-us.apache.org/repos/asf/beam-site/blob/63f48409/content/coming-soon.html
----------------------------------------------------------------------
diff --git a/content/coming-soon.html b/content/coming-soon.html
index 603b93e..39b2876 100644
--- a/content/coming-soon.html
+++ b/content/coming-soon.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.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">
+  <link rel="canonical" href="https://beam.apache.org/coming-soon.html" data-proofer-ignore>
+  <link rel="alternate" type="application/rss+xml" title="Apache Beam" href="https://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/63f48409/content/contribute/contribution-guide/index.html
----------------------------------------------------------------------
diff --git a/content/contribute/contribution-guide/index.html b/content/contribute/contribution-guide/index.html
index 9bd596d..083cf01 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.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">
+  <link rel="canonical" href="https://beam.apache.org/contribute/contribution-guide/" data-proofer-ignore>
+  <link rel="alternate" type="application/rss+xml" title="Apache Beam" href="https://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/63f48409/content/contribute/design-principles/index.html
----------------------------------------------------------------------
diff --git a/content/contribute/design-principles/index.html b/content/contribute/design-principles/index.html
index 78cebf4..27f2737 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.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">
+  <link rel="canonical" href="https://beam.apache.org/contribute/design-principles/" data-proofer-ignore>
+  <link rel="alternate" type="application/rss+xml" title="Apache Beam" href="https://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/63f48409/content/contribute/index.html
----------------------------------------------------------------------
diff --git a/content/contribute/index.html b/content/contribute/index.html
index 9c3dbea..7db7ef9 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.apache.org/contribute/" data-proofer-ignore>
-  <link rel="alternate" type="application/rss+xml" title="Apache Beam" href="http://beam.apache.org/feed.xml">
+  <link rel="canonical" href="https://beam.apache.org/contribute/" data-proofer-ignore>
+  <link rel="alternate" type="application/rss+xml" title="Apache Beam" href="https://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/63f48409/content/contribute/logos/index.html
----------------------------------------------------------------------
diff --git a/content/contribute/logos/index.html b/content/contribute/logos/index.html
index 816e031..006460f 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.apache.org/contribute/logos/" data-proofer-ignore>
-  <link rel="alternate" type="application/rss+xml" title="Apache Beam" href="http://beam.apache.org/feed.xml">
+  <link rel="canonical" href="https://beam.apache.org/contribute/logos/" data-proofer-ignore>
+  <link rel="alternate" type="application/rss+xml" title="Apache Beam" href="https://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/63f48409/content/contribute/maturity-model/index.html
----------------------------------------------------------------------
diff --git a/content/contribute/maturity-model/index.html b/content/contribute/maturity-model/index.html
index 946a891..a3b6896 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.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">
+  <link rel="canonical" href="https://beam.apache.org/contribute/maturity-model/" data-proofer-ignore>
+  <link rel="alternate" type="application/rss+xml" title="Apache Beam" href="https://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/63f48409/content/contribute/presentation-materials/index.html
----------------------------------------------------------------------
diff --git a/content/contribute/presentation-materials/index.html b/content/contribute/presentation-materials/index.html
index 995cb07..c9c7b87 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.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">
+  <link rel="canonical" href="https://beam.apache.org/contribute/presentation-materials/" data-proofer-ignore>
+  <link rel="alternate" type="application/rss+xml" title="Apache Beam" href="https://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/63f48409/content/contribute/ptransform-style-guide/index.html
----------------------------------------------------------------------
diff --git a/content/contribute/ptransform-style-guide/index.html b/content/contribute/ptransform-style-guide/index.html
index 426b83c..9d9e3a3 100644
--- a/content/contribute/ptransform-style-guide/index.html
+++ b/content/contribute/ptransform-style-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.apache.org/contribute/ptransform-style-guide/" data-proofer-ignore>
-  <link rel="alternate" type="application/rss+xml" title="Apache Beam" href="http://beam.apache.org/feed.xml">
+  <link rel="canonical" href="https://beam.apache.org/contribute/ptransform-style-guide/" data-proofer-ignore>
+  <link rel="alternate" type="application/rss+xml" title="Apache Beam" href="https://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/63f48409/content/contribute/release-guide/index.html
----------------------------------------------------------------------
diff --git a/content/contribute/release-guide/index.html b/content/contribute/release-guide/index.html
index 92f43cd..7a92529 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.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">
+  <link rel="canonical" href="https://beam.apache.org/contribute/release-guide/" data-proofer-ignore>
+  <link rel="alternate" type="application/rss+xml" title="Apache Beam" href="https://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/63f48409/content/contribute/source-repository/index.html
----------------------------------------------------------------------
diff --git a/content/contribute/source-repository/index.html b/content/contribute/source-repository/index.html
index 87bcd98..7cf008e 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.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">
+  <link rel="canonical" href="https://beam.apache.org/contribute/source-repository/" data-proofer-ignore>
+  <link rel="alternate" type="application/rss+xml" title="Apache Beam" href="https://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/63f48409/content/contribute/team/index.html
----------------------------------------------------------------------
diff --git a/content/contribute/team/index.html b/content/contribute/team/index.html
index 47dcc98..216008c 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.apache.org/contribute/team/" data-proofer-ignore>
-  <link rel="alternate" type="application/rss+xml" title="Apache Beam" href="http://beam.apache.org/feed.xml">
+  <link rel="canonical" href="https://beam.apache.org/contribute/team/" data-proofer-ignore>
+  <link rel="alternate" type="application/rss+xml" title="Apache Beam" href="https://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/63f48409/content/contribute/testing/index.html
----------------------------------------------------------------------
diff --git a/content/contribute/testing/index.html b/content/contribute/testing/index.html
index 683c8e3..e15f732 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.apache.org/contribute/testing/" data-proofer-ignore>
-  <link rel="alternate" type="application/rss+xml" title="Apache Beam" href="http://beam.apache.org/feed.xml">
+  <link rel="canonical" href="https://beam.apache.org/contribute/testing/" data-proofer-ignore>
+  <link rel="alternate" type="application/rss+xml" title="Apache Beam" href="https://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/63f48409/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 caa00d5..4bd4de2 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.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">
+  <link rel="canonical" href="https://beam.apache.org/contribute/work-in-progress/" data-proofer-ignore>
+  <link rel="alternate" type="application/rss+xml" title="Apache Beam" href="https://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/63f48409/content/contribution-guide/index.html
----------------------------------------------------------------------
diff --git a/content/contribution-guide/index.html b/content/contribution-guide/index.html
index 7fb39a9..bc80fb2 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.apache.org/contribute/contribution-guide/">
-<meta http-equiv="refresh" content="0; url=http://beam.apache.org/contribute/contribution-guide/">
+<link rel="canonical" href="https://beam.apache.org/contribute/contribution-guide/">
+<meta http-equiv="refresh" content="0; url=https://beam.apache.org/contribute/contribution-guide/">
 <h1>Redirecting\u2026</h1>
-<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>
+<a href="https://beam.apache.org/contribute/contribution-guide/">Click here if you are not redirected.</a>
+<script>location="https://beam.apache.org/contribute/contribution-guide/"</script>
 </html>

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

http://git-wip-us.apache.org/repos/asf/beam-site/blob/63f48409/content/docs/learn/index.html
----------------------------------------------------------------------
diff --git a/content/docs/learn/index.html b/content/docs/learn/index.html
index 2431768..6b3f30a 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.apache.org/documentation/">
-<meta http-equiv="refresh" content="0; url=http://beam.apache.org/documentation/">
+<link rel="canonical" href="https://beam.apache.org/documentation/">
+<meta http-equiv="refresh" content="0; url=https://beam.apache.org/documentation/">
 <h1>Redirecting\u2026</h1>
-<a href="http://beam.apache.org/documentation/">Click here if you are not redirected.</a>
-<script>location="http://beam.apache.org/documentation/"</script>
+<a href="https://beam.apache.org/documentation/">Click here if you are not redirected.</a>
+<script>location="https://beam.apache.org/documentation/"</script>
 </html>

http://git-wip-us.apache.org/repos/asf/beam-site/blob/63f48409/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 33aac66..003301c 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.apache.org/documentation/programming-guide/">
-<meta http-equiv="refresh" content="0; url=http://beam.apache.org/documentation/programming-guide/">
+<link rel="canonical" href="https://beam.apache.org/documentation/programming-guide/">
+<meta http-equiv="refresh" content="0; url=https://beam.apache.org/documentation/programming-guide/">
 <h1>Redirecting\u2026</h1>
-<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>
+<a href="https://beam.apache.org/documentation/programming-guide/">Click here if you are not redirected.</a>
+<script>location="https://beam.apache.org/documentation/programming-guide/"</script>
 </html>

http://git-wip-us.apache.org/repos/asf/beam-site/blob/63f48409/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 df2a24a..b62c77a 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.apache.org/get-started/beam-overview/">
-<meta http-equiv="refresh" content="0; url=http://beam.apache.org/get-started/beam-overview/">
+<link rel="canonical" href="https://beam.apache.org/get-started/beam-overview/">
+<meta http-equiv="refresh" content="0; url=https://beam.apache.org/get-started/beam-overview/">
 <h1>Redirecting\u2026</h1>
-<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>
+<a href="https://beam.apache.org/get-started/beam-overview/">Click here if you are not redirected.</a>
+<script>location="https://beam.apache.org/get-started/beam-overview/"</script>
 </html>

http://git-wip-us.apache.org/repos/asf/beam-site/blob/63f48409/content/docs/use/index.html
----------------------------------------------------------------------
diff --git a/content/docs/use/index.html b/content/docs/use/index.html
index 6b1aa7d..deeef1a 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.apache.org/get-started/">
-<meta http-equiv="refresh" content="0; url=http://beam.apache.org/get-started/">
+<link rel="canonical" href="https://beam.apache.org/get-started/">
+<meta http-equiv="refresh" content="0; url=https://beam.apache.org/get-started/">
 <h1>Redirecting\u2026</h1>
-<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>
+<a href="https://beam.apache.org/get-started/">Click here if you are not redirected.</a>
+<script>location="https://beam.apache.org/get-started/"</script>
 </html>

http://git-wip-us.apache.org/repos/asf/beam-site/blob/63f48409/content/documentation/index.html
----------------------------------------------------------------------
diff --git a/content/documentation/index.html b/content/documentation/index.html
index 88234b7..7e68cd2 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.apache.org/documentation/" data-proofer-ignore>
-  <link rel="alternate" type="application/rss+xml" title="Apache Beam" href="http://beam.apache.org/feed.xml">
+  <link rel="canonical" href="https://beam.apache.org/documentation/" data-proofer-ignore>
+  <link rel="alternate" type="application/rss+xml" title="Apache Beam" href="https://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/63f48409/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 d3763d9..321c3e5 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.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">
+  <link rel="canonical" href="https://beam.apache.org/documentation/pipelines/create-your-pipeline/" data-proofer-ignore>
+  <link rel="alternate" type="application/rss+xml" title="Apache Beam" href="https://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/63f48409/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 ed233d2..4dd493d 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.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">
+  <link rel="canonical" href="https://beam.apache.org/documentation/pipelines/design-your-pipeline/" data-proofer-ignore>
+  <link rel="alternate" type="application/rss+xml" title="Apache Beam" href="https://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/63f48409/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 6116ac2..6ee2c05 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.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">
+  <link rel="canonical" href="https://beam.apache.org/documentation/pipelines/test-your-pipeline/" data-proofer-ignore>
+  <link rel="alternate" type="application/rss+xml" title="Apache Beam" href="https://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/63f48409/content/documentation/programming-guide/index.html
----------------------------------------------------------------------
diff --git a/content/documentation/programming-guide/index.html b/content/documentation/programming-guide/index.html
index bee08bc..d6ccda9 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.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">
+  <link rel="canonical" href="https://beam.apache.org/documentation/programming-guide/" data-proofer-ignore>
+  <link rel="alternate" type="application/rss+xml" title="Apache Beam" href="https://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/63f48409/content/documentation/resources/index.html
----------------------------------------------------------------------
diff --git a/content/documentation/resources/index.html b/content/documentation/resources/index.html
index 6ef61a6..2be316c 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.apache.org/documentation/resources/" data-proofer-ignore>
-  <link rel="alternate" type="application/rss+xml" title="Apache Beam" href="http://beam.apache.org/feed.xml">
+  <link rel="canonical" href="https://beam.apache.org/documentation/resources/" data-proofer-ignore>
+  <link rel="alternate" type="application/rss+xml" title="Apache Beam" href="https://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/63f48409/content/documentation/runners/apex/index.html
----------------------------------------------------------------------
diff --git a/content/documentation/runners/apex/index.html b/content/documentation/runners/apex/index.html
index fb30535..786a344 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.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">
+  <link rel="canonical" href="https://beam.apache.org/documentation/runners/apex/" data-proofer-ignore>
+  <link rel="alternate" type="application/rss+xml" title="Apache Beam" href="https://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/63f48409/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 cd29ec3..b759b6c 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.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">
+  <link rel="canonical" href="https://beam.apache.org/documentation/runners/capability-matrix/" data-proofer-ignore>
+  <link rel="alternate" type="application/rss+xml" title="Apache Beam" href="https://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/63f48409/content/documentation/runners/dataflow/index.html
----------------------------------------------------------------------
diff --git a/content/documentation/runners/dataflow/index.html b/content/documentation/runners/dataflow/index.html
index 04d1861..753a294 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.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">
+  <link rel="canonical" href="https://beam.apache.org/documentation/runners/dataflow/" data-proofer-ignore>
+  <link rel="alternate" type="application/rss+xml" title="Apache Beam" href="https://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/63f48409/content/documentation/runners/direct/index.html
----------------------------------------------------------------------
diff --git a/content/documentation/runners/direct/index.html b/content/documentation/runners/direct/index.html
index 631a792..cb44308 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.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">
+  <link rel="canonical" href="https://beam.apache.org/documentation/runners/direct/" data-proofer-ignore>
+  <link rel="alternate" type="application/rss+xml" title="Apache Beam" href="https://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/63f48409/content/documentation/runners/flink/index.html
----------------------------------------------------------------------
diff --git a/content/documentation/runners/flink/index.html b/content/documentation/runners/flink/index.html
index e70099f..3af284f 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.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">
+  <link rel="canonical" href="https://beam.apache.org/documentation/runners/flink/" data-proofer-ignore>
+  <link rel="alternate" type="application/rss+xml" title="Apache Beam" href="https://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/63f48409/content/documentation/runners/spark/index.html
----------------------------------------------------------------------
diff --git a/content/documentation/runners/spark/index.html b/content/documentation/runners/spark/index.html
index 4854673..254e22b 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.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">
+  <link rel="canonical" href="https://beam.apache.org/documentation/runners/spark/" data-proofer-ignore>
+  <link rel="alternate" type="application/rss+xml" title="Apache Beam" href="https://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/63f48409/content/documentation/sdks/java/index.html
----------------------------------------------------------------------
diff --git a/content/documentation/sdks/java/index.html b/content/documentation/sdks/java/index.html
index 22de4ae..fa8fc53 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.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">
+  <link rel="canonical" href="https://beam.apache.org/documentation/sdks/java/" data-proofer-ignore>
+  <link rel="alternate" type="application/rss+xml" title="Apache Beam" href="https://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/63f48409/content/documentation/sdks/python/index.html
----------------------------------------------------------------------
diff --git a/content/documentation/sdks/python/index.html b/content/documentation/sdks/python/index.html
index f2955cd..f6236b0 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.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">
+  <link rel="canonical" href="https://beam.apache.org/documentation/sdks/python/" data-proofer-ignore>
+  <link rel="alternate" type="application/rss+xml" title="Apache Beam" href="https://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/63f48409/content/downloads/beam-doap.rdf
----------------------------------------------------------------------
diff --git a/content/downloads/beam-doap.rdf b/content/downloads/beam-doap.rdf
index 8b1cbd8..e59d49d 100644
--- a/content/downloads/beam-doap.rdf
+++ b/content/downloads/beam-doap.rdf
@@ -21,17 +21,17 @@
     See the License for the specific language governing permissions and
     limitations under the License.
 -->
-  <Project rdf:about="http://beam.apache.org">
+  <Project rdf:about="https://beam.apache.org">
     <created>2016-12-21</created>
     <license rdf:resource="http://www.apache.org/licenses/LICENSE-2.0" />
     <name>Apache Beam</name>
-    <homepage rdf:resource="http://beam.apache.org" />
-    <asfext:pmc rdf:resource="http://beam.apache.org" />
+    <homepage rdf:resource="https://beam.apache.org" />
+    <asfext:pmc rdf:resource="https://beam.apache.org" />
     <shortdesc>Apache Beam is a programming model, SDKs, and runners for defining and executing data processing pipelines.</shortdesc>
     <description>Apache Beam is a unified programming model for both batch and streaming data processing, enabling efficient execution across diverse distributed execution engines and providing extensibility points for connecting to different technologies and user communities.</description>
     <bug-database rdf:resource="https://issues.apache.org/jira/browse/BEAM" />
-    <mailing-list rdf:resource="http://beam.apache.org/get-started/support/" />
-    <download-page rdf:resource="http://beam.apache.org/get-started/downloads/" />
+    <mailing-list rdf:resource="https://beam.apache.org/get-started/support/" />
+    <download-page rdf:resource="https://beam.apache.org/get-started/downloads/" />
     <programming-language>Java</programming-language>
     <programming-language>Python</programming-language>
     <category rdf:resource="http://projects.apache.org/category/big-data" />

http://git-wip-us.apache.org/repos/asf/beam-site/blob/63f48409/content/feed.xml
----------------------------------------------------------------------
diff --git a/content/feed.xml b/content/feed.xml
index a7e3bf7..2a28be7 100644
--- a/content/feed.xml
+++ b/content/feed.xml
@@ -4,8 +4,8 @@
     <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.apache.org/</link>
-    <atom:link href="http://beam.apache.org/feed.xml" rel="self" type="application/rss+xml"/>
+    <link>https://beam.apache.org/</link>
+    <atom:link href="https://beam.apache.org/feed.xml" rel="self" type="application/rss+xml"/>
     <generator>Jekyll v3.2.0</generator>
     
       <item>
@@ -67,8 +67,8 @@ contribution and participation from anyone through our mailing lists, issue
 tracker, pull requests, and events.&lt;/p&gt;
 </description>
         <pubDate>Tue, 10 Jan 2017 00:00:01 -0800</pubDate>
-        <link>http://beam.apache.org/blog/2017/01/10/beam-graduates.html</link>
-        <guid isPermaLink="true">http://beam.apache.org/blog/2017/01/10/beam-graduates.html</guid>
+        <link>https://beam.apache.org/blog/2017/01/10/beam-graduates.html</link>
+        <guid isPermaLink="true">https://beam.apache.org/blog/2017/01/10/beam-graduates.html</guid>
         
         
         <category>blog</category>
@@ -77,11 +77,11 @@ tracker, pull requests, and events.&lt;/p&gt;
     
       <item>
         <title>Release 0.4.0 adds a runner for Apache Apex</title>
-        <description>&lt;p&gt;The latest release 0.4.0 of &lt;a href=&quot;https://beam.apache.org&quot;&gt;Apache Beam&lt;/a&gt; adds a new runner for &lt;a href=&quot;http://apex.apache.org/&quot;&gt;Apache Apex&lt;/a&gt;. We are excited to reach this initial milestone and are looking forward to continued collaboration between the Beam and Apex communities to advance the runner.&lt;/p&gt;
+        <description>&lt;p&gt;The latest release 0.4.0 of &lt;a href=&quot;/&quot;&gt;Apache Beam&lt;/a&gt; adds a new runner for &lt;a href=&quot;http://apex.apache.org/&quot;&gt;Apache Apex&lt;/a&gt;. We are excited to reach this initial milestone and are looking forward to continued collaboration between the Beam and Apex communities to advance the runner.&lt;/p&gt;
 
 &lt;!--more--&gt;
 
-&lt;p&gt;Beam evolved from the Google Dataflow SDK and as incubator project has quickly adapted the Apache way, grown the community and attracts increasing interest from users that hope to benefit from a conceptual strong unified programming model that is portable between different big data processing frameworks (see &lt;a href=&quot;https://www.oreilly.com/ideas/the-world-beyond-batch-streaming-101&quot;&gt;Streaming-101&lt;/a&gt; and &lt;a href=&quot;https://www.oreilly.com/ideas/the-world-beyond-batch-streaming-102&quot;&gt;Streaming-102&lt;/a&gt;). Multiple Apache projects already provide runners for Beam (see &lt;a href=&quot;http://beam.apache.org/documentation/runners/capability-matrix/&quot;&gt;runners and capabilities matrix&lt;/a&gt;).&lt;/p&gt;
+&lt;p&gt;Beam evolved from the Google Dataflow SDK and as incubator project has quickly adapted the Apache way, grown the community and attracts increasing interest from users that hope to benefit from a conceptual strong unified programming model that is portable between different big data processing frameworks (see &lt;a href=&quot;https://www.oreilly.com/ideas/the-world-beyond-batch-streaming-101&quot;&gt;Streaming-101&lt;/a&gt; and &lt;a href=&quot;https://www.oreilly.com/ideas/the-world-beyond-batch-streaming-102&quot;&gt;Streaming-102&lt;/a&gt;). Multiple Apache projects already provide runners for Beam (see &lt;a href=&quot;/documentation/runners/capability-matrix/&quot;&gt;runners and capabilities matrix&lt;/a&gt;).&lt;/p&gt;
 
 &lt;p&gt;Apex is a stream processing framework for low-latency, high-throughput, stateful and reliable processing of complex analytics pipelines on clusters. Apex was developed since 2012 and is used in production by large companies for real-time and batch processing at scale.&lt;/p&gt;
 
@@ -97,7 +97,7 @@ tracker, pull requests, and events.&lt;/p&gt;
 
 &lt;h2 id=&quot;execution-and-testing&quot;&gt;Execution and Testing&lt;/h2&gt;
 
-&lt;p&gt;In this release, the Apex runner executes the pipelines in embedded mode, where, similar to the direct runner, everything is executed in a single JVM. See &lt;a href=&quot;https://beam.apache.org/get-started/quickstart/&quot;&gt;quickstart&lt;/a&gt; on how to run the Beam examples with the Apex runner.&lt;/p&gt;
+&lt;p&gt;In this release, the Apex runner executes the pipelines in embedded mode, where, similar to the direct runner, everything is executed in a single JVM. See &lt;a href=&quot;/get-started/quickstart/&quot;&gt;quickstart&lt;/a&gt; on how to run the Beam examples with the Apex runner.&lt;/p&gt;
 
 &lt;p&gt;Embedded mode is useful for development and debugging. Apex in production runs distributed on Apache Hadoop YARN clusters. An example how a Beam pipeline can be embedded into an Apex application package to run on YARN can be found &lt;a href=&quot;https://github.com/tweise/apex-samples/tree/master/beam-apex-wordcount&quot;&gt;here&lt;/a&gt; and support for direct launch in the runner is currently being worked on.&lt;/p&gt;
 
@@ -108,8 +108,8 @@ tracker, pull requests, and events.&lt;/p&gt;
 &lt;p&gt;The next step is to take the Apex runner from functional to ready for real applications that run distributed, leveraging the scalability and performance features of Apex, similar to its native API. This includes chaining of ParDos, partitioning, optimizing combine operations etc. To get involved, please see &lt;a href=&quot;https://issues.apache.org/jira/issues/?jql=project%20%3D%20BEAM%20and%20component%20%3D%20runner-apex%20and%20resolution%20%3D%20unresolved&quot;&gt;JIRA&lt;/a&gt; and join the Beam community.&lt;/p&gt;
 </description>
         <pubDate>Mon, 09 Jan 2017 09:00:01 -0800</pubDate>
-        <link>http://beam.apache.org/blog/2017/01/09/added-apex-runner.html</link>
-        <guid isPermaLink="true">http://beam.apache.org/blog/2017/01/09/added-apex-runner.html</guid>
+        <link>https://beam.apache.org/blog/2017/01/09/added-apex-runner.html</link>
+        <guid isPermaLink="true">https://beam.apache.org/blog/2017/01/09/added-apex-runner.html</guid>
         
         
         <category>blog</category>
@@ -421,8 +421,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.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>
+        <link>https://beam.apache.org/blog/2016/10/20/test-stream.html</link>
+        <guid isPermaLink="true">https://beam.apache.org/blog/2016/10/20/test-stream.html</guid>
         
         
         <category>blog</category>
@@ -455,8 +455,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.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>
+        <link>https://beam.apache.org/beam/update/2016/10/11/strata-hadoop-world-and-beam.html</link>
+        <guid isPermaLink="true">https://beam.apache.org/beam/update/2016/10/11/strata-hadoop-world-and-beam.html</guid>
         
         
         <category>beam</category>
@@ -508,8 +508,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.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>
+        <link>https://beam.apache.org/blog/2016/08/03/six-months.html</link>
+        <guid isPermaLink="true">https://beam.apache.org/blog/2016/08/03/six-months.html</guid>
         
         
         <category>blog</category>
@@ -549,8 +549,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.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>
+        <link>https://beam.apache.org/beam/release/2016/06/15/first-release.html</link>
+        <guid isPermaLink="true">https://beam.apache.org/beam/release/2016/06/15/first-release.html</guid>
         
         
         <category>beam</category>
@@ -586,8 +586,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.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>
+        <link>https://beam.apache.org/blog/2016/06/13/flink-batch-runner-milestone.html</link>
+        <guid isPermaLink="true">https://beam.apache.org/blog/2016/06/13/flink-batch-runner-milestone.html</guid>
         
         
         <category>blog</category>
@@ -678,8 +678,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.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>
+        <link>https://beam.apache.org/blog/2016/05/27/where-is-my-pcollection-dot-map.html</link>
+        <guid isPermaLink="true">https://beam.apache.org/blog/2016/05/27/where-is-my-pcollection-dot-map.html</guid>
         
         
         <category>blog</category>
@@ -697,8 +697,8 @@ PCollection&amp;lt;O&amp;gt; output = input
 &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.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>
+        <link>https://beam.apache.org/blog/2016/05/18/splitAtFraction-method.html</link>
+        <guid isPermaLink="true">https://beam.apache.org/blog/2016/05/18/splitAtFraction-method.html</guid>
         
         
         <category>blog</category>
@@ -730,8 +730,8 @@ PCollection&amp;lt;O&amp;gt; output = input
 &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.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>
+        <link>https://beam.apache.org/beam/capability/2016/04/03/presentation-materials.html</link>
+        <guid isPermaLink="true">https://beam.apache.org/beam/capability/2016/04/03/presentation-materials.html</guid>
         
         
         <category>beam</category>

http://git-wip-us.apache.org/repos/asf/beam-site/blob/63f48409/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 7cf3f44..9d891e5 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.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">
+  <link rel="canonical" href="https://beam.apache.org/get-started/beam-overview/" data-proofer-ignore>
+  <link rel="alternate" type="application/rss+xml" title="Apache Beam" href="https://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/63f48409/content/get-started/downloads/index.html
----------------------------------------------------------------------
diff --git a/content/get-started/downloads/index.html b/content/get-started/downloads/index.html
index 514e452..02ed060 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.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">
+  <link rel="canonical" href="https://beam.apache.org/get-started/downloads/" data-proofer-ignore>
+  <link rel="alternate" type="application/rss+xml" title="Apache Beam" href="https://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),