You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by mx...@apache.org on 2016/03/08 17:28:27 UTC

[3/3] incubator-beam git commit: [docs] update README Runner section

[docs] update README Runner section

This closes #29.


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

Branch: refs/heads/master
Commit: 5a817d1123d14d8756e552027347082de015b713
Parents: b864ce8
Author: Maximilian Michels <mx...@apache.org>
Authored: Mon Mar 7 11:54:28 2016 +0100
Committer: Maximilian Michels <mx...@apache.org>
Committed: Tue Mar 8 17:25:53 2016 +0100

----------------------------------------------------------------------
 README.md | 17 ++++++++++++-----
 1 file changed, 12 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-beam/blob/5a817d11/README.md
----------------------------------------------------------------------
diff --git a/README.md b/README.md
index db4a13f..6dd4bcc 100644
--- a/README.md
+++ b/README.md
@@ -44,11 +44,14 @@ Have ideas for new SDKs or DSLs? See the [Jira](https://issues.apache.org/jira/b
 
 ### Runners
 
-Beam supports executing programs on multiple distributed processing backends. After the Beam project's initial bootstrapping completes, it will include:
-  1. The `DirectPipelineRunner` runs the pipeline on your local machine.
-  2. The `DataflowPipelineRunner` submits the pipeline to the [Google Cloud Dataflow](http://cloud.google.com/dataflow/).
-  3. The `SparkPipelineRunner` runs the pipeline on an Apache Spark cluster. See the code that will be donated at [cloudera/spark-dataflow](https://github.com/cloudera/spark-dataflow).
-  4. The `FlinkPipelineRunner` runs the pipeline on an Apache Flink cluster. See the code that will be donated at [dataArtisans/flink-dataflow](https://github.com/dataArtisans/flink-dataflow).
+Beam supports executing programs on multiple distributed processing backends through PipelineRunners. Currently, the following PipelineRunners are available:
+
+- The `DirectPipelineRunner` runs the pipeline on your local machine.
+- The `DataflowPipelineRunner` submits the pipeline to the [Google Cloud Dataflow](http://cloud.google.com/dataflow/).
+- The `FlinkPipelineRunner` runs the pipeline on an Apache Flink cluster. The code has been donated from [dataArtisans/flink-dataflow](https://github.com/dataArtisans/flink-dataflow) and is now part of Beam.
+
+After the Beam project's initial bootstrapping completes, it will include:
+- The `SparkPipelineRunner` runs the pipeline on an Apache Spark cluster. See the code that will be donated at [cloudera/spark-dataflow](https://github.com/cloudera/spark-dataflow).
 
 Have ideas for new Runners? See the [Jira](https://issues.apache.org/jira/browse/BEAM/component/12328916/).
 
@@ -57,6 +60,10 @@ Have ideas for new Runners? See the [Jira](https://issues.apache.org/jira/browse
 
 _Coming soon!_
 
+### Flink Runner
+
+See the Flink Runner [README](https://github.com/apache/incubator-beam/runners/flink).
+
 
 ## Contact Us