Revert "Add a first README.md file (at least to trigger the github mirroring)"

This reverts commit 11e842717f70298a4ea8436363b3101117685f60 in preparation for 
the initial code drop.


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

Branch: refs/heads/master
Commit: 41e5cc9e50be887e079ab746153745ee9e445664
Parents: 11e8427
Author: Frances Perry <[email protected]>
Authored: Fri Feb 26 12:00:44 2016 -0800
Committer: Frances Perry <[email protected]>
Committed: Fri Feb 26 12:00:44 2016 -0800

----------------------------------------------------------------------
 README.md | 68 ----------------------------------------------------------
 1 file changed, 68 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-beam/blob/41e5cc9e/README.md
----------------------------------------------------------------------
diff --git a/README.md b/README.md
deleted file mode 100644
index f353381..0000000
--- a/README.md
+++ /dev/null
@@ -1,68 +0,0 @@
-# Apache Beam
-
-[Apache Beam](http://beam.incubator.apache.org) provides a simple, powerful
-programming model for building both batch and streaming parallel data 
processing
-pipelines. It also covers the data integration processus.
-
-[General 
usage](http://beam.incubator.apache.org/documentation/getting-started) is
-a good starting point for Apache Beam.
-
-You can take a look on the [Beam 
Examples](http://git-wip-us.apache.org/repos/asf/incubator-beam/examples).
-
-## Status [Build Status](http://builds.apache.org/job/beam-master)
-
-## Overview
-
-The key concepts in this programming model are:
-
-* `PCollection`: represents a collection of data, which could be bounded or 
unbounded in size.
-* `PTransform`: represents a computation that transforms input PCollections 
into output PCollections.
-* `Pipeline`: manages a directed acyclic graph of PTransforms and PCollections 
that is ready for execution.
-* `PipelineRunner`: specifies where and how the pipeline should execute.
-
-We provide the following PipelineRunners:
-
-  1. The `DirectPipelineRunner` runs the pipeline on your local machine.
-  2. The `BlockingDataflowPipelineRunner` submits the pipeline to the Dataflow 
Service via the `DataflowPipelineRunner`
-and then prints messages about the job status until the execution is complete.
-  3. The `SparkPipelineRunner` runs the pipeline on an Apache Spark cluster.
-  4. The `FlinkPipelineRunner` runs the pipeline on an Apache Flink cluster.
-
-## Getting Started
-
-The following command will build both the `sdk` and `example` modules and
-install them in your local Maven repository:
-
-    mvn clean install
-
-You can speed up the build and install process by using the following options:
-
-  1. To skip execution of the unit tests, run:
-
-        mvn install -DskipTests
-
-  2. While iterating on a specific module, use the following command to compile
-  and reinstall it. For example, to reinstall the `examples` module, run:
-
-        mvn install -pl examples
-
-  Be careful, however, as this command will use the most recently installed SDK
-  from the local repository (or Maven Central) even if you have changed it
-  locally.
-
-After building and installing, you can execute the `WordCount` and other
-example pipelines by following the instructions in this 
[README](https://git-wip-us.apache.org/repos/asf/incubator-beam/examples/README.md).
-
-## Contact Us
-
-You can subscribe on the mailing lists to discuss and get involved in Apache 
Beam:
-
-* [Subscribe](mailto:[email protected]) on the 
[[email protected]](mailto:[email protected])
-* [Subscribe](mailto:[email protected]) on the 
[[email protected]](mailto:[email protected])
-
-You can report issue on [Jira](https://issues.apache.org/jira/browse/BEAM).
-
-## More Information
-
-* [Apache Beam](http://beam.incubator.apache.org)
-* [Apache Beam Documentation](http://beam.incubator.apache.org/documentation)

Reply via email to