Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 5E330200BFB for ; Wed, 28 Dec 2016 01:49:30 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 5CD69160B3D; Wed, 28 Dec 2016 00:49:30 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id A727E160B31 for ; Wed, 28 Dec 2016 01:49:29 +0100 (CET) Received: (qmail 86921 invoked by uid 500); 28 Dec 2016 00:49:23 -0000 Mailing-List: contact commits-help@beam.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@beam.apache.org Delivered-To: mailing list commits@beam.apache.org Received: (qmail 86691 invoked by uid 99); 28 Dec 2016 00:49:23 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 28 Dec 2016 00:49:23 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id A3CA0DFDDE; Wed, 28 Dec 2016 00:49:23 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit From: davor@apache.org To: commits@beam.apache.org Date: Wed, 28 Dec 2016 00:49:28 -0000 Message-Id: <0b49f1d10b9040c693005fd5292a1a22@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [6/9] beam git commit: Update component READMEs to remove graduation information archived-at: Wed, 28 Dec 2016 00:49:30 -0000 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 Authored: Tue Dec 27 13:17:22 2016 -0800 Committer: Davor Bonaci 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‐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 ``` 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 org.apache.beam beam-runners-flink_2.10 - 0.2.0-incubating-SNAPSHOT + 0.2.0-SNAPSHOT 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>> joinedPcollection = Join.innerJoin(leftPcollection, rightPcollection); - -Join-library can be found on maven-central: - - - org.apache.beam - join-library - 0.1-incubating-SNAPSHOT - - -Questions or comments: `M.Runesson [at] gmail [dot] com`