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

[6/9] beam git commit: Update component READMEs to remove graduation information

Update component READMEs to remove graduation information


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

Branch: refs/heads/master
Commit: 8cfea766dfca84fe9ce647e521be485bb92022a9
Parents: b0d863e
Author: Davor Bonaci <da...@google.com>
Authored: Tue Dec 27 13:17:22 2016 -0800
Committer: Davor Bonaci <da...@google.com>
Committed: Tue Dec 27 13:45:49 2016 -0800

----------------------------------------------------------------------
 runners/apex/README.md                      |  4 ++--
 runners/flink/README.md                     |  6 +++---
 runners/spark/README.md                     |  8 ++++----
 sdks/java/extensions/join-library/README.md | 10 ----------
 4 files changed, 9 insertions(+), 19 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/beam/blob/8cfea766/runners/apex/README.md
----------------------------------------------------------------------
diff --git a/runners/apex/README.md b/runners/apex/README.md
index 7aa433e..9a82731 100644
--- a/runners/apex/README.md
+++ b/runners/apex/README.md
@@ -37,13 +37,13 @@ The following shows how to run the WordCount example that is provided with the s
 To get the latest version of Beam with Apex-Runner, first clone the Beam repository:
 
 ```
-git clone https://github.com/apache/incubator\u2010beam
+git clone https://github.com/apache/beam
 ```
 
 Then switch to the newly created directory and run Maven to build the Apache Beam:
 
 ```
-cd incubator\u2010beam
+cd beam
 mvn clean install \u2010DskipTests
 ```
 

http://git-wip-us.apache.org/repos/asf/beam/blob/8cfea766/runners/flink/README.md
----------------------------------------------------------------------
diff --git a/runners/flink/README.md b/runners/flink/README.md
index c0b3830..ceb44ea 100644
--- a/runners/flink/README.md
+++ b/runners/flink/README.md
@@ -94,11 +94,11 @@ To get started using the Flink Runner, we first need to install the latest versi
 
 To retrieve the latest version of Flink-Runner, run the following command
 
-    git clone https://github.com/apache/incubator-beam
+    git clone https://github.com/apache/beam
 
 Then switch to the newly created directory and run Maven to build the Beam runner:
 
-    cd incubator-beam
+    cd beam
     mvn clean install -DskipTests
 
 Flink-Runner is now installed in your local maven repository.
@@ -169,7 +169,7 @@ The contents of the root `pom.xml` should be slightly changed afterwards (explan
     <dependency>
       <groupId>org.apache.beam</groupId>
       <artifactId>beam-runners-flink_2.10</artifactId>
-      <version>0.2.0-incubating-SNAPSHOT</version>
+      <version>0.2.0-SNAPSHOT</version>
     </dependency>
 
     <!-- Uncomment, if you want to use Flink's Kafka connector -->

http://git-wip-us.apache.org/repos/asf/beam/blob/8cfea766/runners/spark/README.md
----------------------------------------------------------------------
diff --git a/runners/spark/README.md b/runners/spark/README.md
index aad65b3..15f7081 100644
--- a/runners/spark/README.md
+++ b/runners/spark/README.md
@@ -56,7 +56,7 @@ The Spark runner provides full support for the Beam Model in batch processing vi
 
 ### Streaming
 
-Providing full support for the Beam Model in streaming pipelines is under development. To follow-up you can subscribe to our [mailing list](http://beam.incubator.apache.org/get-started/support/).
+Providing full support for the Beam Model in streaming pipelines is under development. To follow-up you can subscribe to our [mailing list](http://beam.apache.org/get-started/support/).
 
 ### issue tracking
 
@@ -67,12 +67,12 @@ See [Beam JIRA](https://issues.apache.org/jira/browse/BEAM) (runner-spark)
 
 To get the latest version of the Spark Runner, first clone the Beam repository:
 
-    git clone https://github.com/apache/incubator-beam
+    git clone https://github.com/apache/beam
 
     
 Then switch to the newly created directory and run Maven to build the Apache Beam:
 
-    cd incubator-beam
+    cd beam
     mvn clean install -DskipTests
 
 Now Apache Beam and the Spark Runner are installed in your local maven repository.
@@ -116,7 +116,7 @@ Check the output by running:
 __Note: running examples using `mvn exec:exec` only works for Spark local mode at the
 moment. See the next section for how to run on a cluster.__
 
-[wc]: https://github.com/apache/incubator-beam/blob/master/runners/spark/src/main/java/org/apache/beam/runners/spark/examples/WordCount.java
+[wc]: https://github.com/apache/beam/blob/master/runners/spark/src/main/java/org/apache/beam/runners/spark/examples/WordCount.java
 ## Running on a Cluster
 
 Spark Beam pipelines can be run on a cluster using the `spark-submit` command.

http://git-wip-us.apache.org/repos/asf/beam/blob/8cfea766/sdks/java/extensions/join-library/README.md
----------------------------------------------------------------------
diff --git a/sdks/java/extensions/join-library/README.md b/sdks/java/extensions/join-library/README.md
index fe8466a..feee64f 100644
--- a/sdks/java/extensions/join-library/README.md
+++ b/sdks/java/extensions/join-library/README.md
@@ -40,13 +40,3 @@ Example how to use join-library:
 
     PCollection<KV<String, KV<String, Long>>> joinedPcollection =
       Join.innerJoin(leftPcollection, rightPcollection);
-
-Join-library can be found on maven-central:
-
-    <dependency>
-      <groupId>org.apache.beam</groupId>
-      <artifactId>join-library</artifactId>
-      <version>0.1-incubating-SNAPSHOT</version>
-    </dependency>
-
-Questions or comments: `M.Runesson [at] gmail [dot] com`