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 <[email protected]> Authored: Tue Jan 31 14:00:41 2017 -0800 Committer: Davor Bonaci <[email protected]> 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" />
