Repository: apex-malhar Updated Branches: refs/heads/master 15e42c991 -> d6f9ed580
APEXMALHAR-2494 Added description for the demo apps Project: http://git-wip-us.apache.org/repos/asf/apex-malhar/repo Commit: http://git-wip-us.apache.org/repos/asf/apex-malhar/commit/d6f9ed58 Tree: http://git-wip-us.apache.org/repos/asf/apex-malhar/tree/d6f9ed58 Diff: http://git-wip-us.apache.org/repos/asf/apex-malhar/diff/d6f9ed58 Branch: refs/heads/master Commit: d6f9ed580d07f79ce825ff2403fccaa8a47e1764 Parents: 15e42c9 Author: chaitanya <[email protected]> Authored: Fri May 19 14:08:52 2017 +0530 Committer: chaitanya <[email protected]> Committed: Mon Jun 5 14:30:39 2017 +0530 ---------------------------------------------------------------------- examples/iteration/READEME.md | 6 ++++++ examples/iteration/pom.xml | 5 +++++ examples/machinedata/READEME.md | 6 ++++++ examples/machinedata/pom.xml | 5 +++++ examples/mobile/READEME.md | 7 +++++++ examples/mobile/pom.xml | 2 ++ examples/pi/READEME.md | 6 ++++++ examples/pi/pom.xml | 5 +++++ examples/twitter/READEME.md | 8 ++++++++ examples/twitter/pom.xml | 2 ++ examples/wordcount/READEME.md | 7 +++++++ examples/wordcount/pom.xml | 2 ++ 12 files changed, 61 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/apex-malhar/blob/d6f9ed58/examples/iteration/READEME.md ---------------------------------------------------------------------- diff --git a/examples/iteration/READEME.md b/examples/iteration/READEME.md new file mode 100644 index 0000000..73e4761 --- /dev/null +++ b/examples/iteration/READEME.md @@ -0,0 +1,6 @@ +## Iteration Example + +This application demonstrates Apex platform capabilities such as +- Iterative processing in a loop to send window data back to upstream operator +- Fault Tolerance without data loss +- High scalability and throughput http://git-wip-us.apache.org/repos/asf/apex-malhar/blob/d6f9ed58/examples/iteration/pom.xml ---------------------------------------------------------------------- diff --git a/examples/iteration/pom.xml b/examples/iteration/pom.xml index 481c49b..9cbfc09 100644 --- a/examples/iteration/pom.xml +++ b/examples/iteration/pom.xml @@ -28,6 +28,11 @@ <name>Apache Apex Malhar Iteration Example</name> <description>DataTorrent example applications that demonstrates the iteration feature.</description> + <properties> + <apex.apppackage.tags>demos, iteration</apex.apppackage.tags> + <apex.apppackage.longDescription>README.md</apex.apppackage.longDescription> + </properties> + <parent> <groupId>org.apache.apex</groupId> <artifactId>malhar-examples</artifactId> http://git-wip-us.apache.org/repos/asf/apex-malhar/blob/d6f9ed58/examples/machinedata/READEME.md ---------------------------------------------------------------------- diff --git a/examples/machinedata/READEME.md b/examples/machinedata/READEME.md new file mode 100644 index 0000000..316d642 --- /dev/null +++ b/examples/machinedata/READEME.md @@ -0,0 +1,6 @@ +## Machine Data Example + +This application demonstrates Apex platform capabilities such as +- Massive throughput with dimensional computation at very low latency +- Fault Tolerance without data loss + http://git-wip-us.apache.org/repos/asf/apex-malhar/blob/d6f9ed58/examples/machinedata/pom.xml ---------------------------------------------------------------------- diff --git a/examples/machinedata/pom.xml b/examples/machinedata/pom.xml index e4879cd..6ee07db 100644 --- a/examples/machinedata/pom.xml +++ b/examples/machinedata/pom.xml @@ -34,6 +34,11 @@ <version>3.8.0-SNAPSHOT</version> </parent> + <properties> + <apex.apppackage.tags>demos, machinedata</apex.apppackage.tags> + <apex.apppackage.longDescription>README.md</apex.apppackage.longDescription> + </properties> + <dependencies> <dependency> <groupId>org.apache.apex</groupId> http://git-wip-us.apache.org/repos/asf/apex-malhar/blob/d6f9ed58/examples/mobile/READEME.md ---------------------------------------------------------------------- diff --git a/examples/mobile/READEME.md b/examples/mobile/READEME.md new file mode 100644 index 0000000..48423a2 --- /dev/null +++ b/examples/mobile/READEME.md @@ -0,0 +1,7 @@ +## Mobile Example + +This application demonstrates Apex platform capabilities such as +- Dynamic Scalability +- Fault Tolerance without data loss +- High scalability and throughput + http://git-wip-us.apache.org/repos/asf/apex-malhar/blob/d6f9ed58/examples/mobile/pom.xml ---------------------------------------------------------------------- diff --git a/examples/mobile/pom.xml b/examples/mobile/pom.xml index ebbf6a2..64489b4 100644 --- a/examples/mobile/pom.xml +++ b/examples/mobile/pom.xml @@ -36,6 +36,8 @@ <properties> <skipTests>true</skipTests> + <apex.apppackage.tags>demos, mobile</apex.apppackage.tags> + <apex.apppackage.longDescription>README.md</apex.apppackage.longDescription> </properties> <dependencies> http://git-wip-us.apache.org/repos/asf/apex-malhar/blob/d6f9ed58/examples/pi/READEME.md ---------------------------------------------------------------------- diff --git a/examples/pi/READEME.md b/examples/pi/READEME.md new file mode 100644 index 0000000..11a73fd --- /dev/null +++ b/examples/pi/READEME.md @@ -0,0 +1,6 @@ +## Pi Example + +This application demonstrates Apex platform capabilities such as +- Parallel CPU intensive computations +- Fault Tolerance without data loss +- High scalability and throughput http://git-wip-us.apache.org/repos/asf/apex-malhar/blob/d6f9ed58/examples/pi/pom.xml ---------------------------------------------------------------------- diff --git a/examples/pi/pom.xml b/examples/pi/pom.xml index 330a884..701699d 100644 --- a/examples/pi/pom.xml +++ b/examples/pi/pom.xml @@ -34,6 +34,11 @@ <version>3.8.0-SNAPSHOT</version> </parent> + <properties> + <apex.apppackage.tags>demos, pi</apex.apppackage.tags> + <apex.apppackage.longDescription>README.md</apex.apppackage.longDescription> + </properties> + <dependencies> <dependency> <groupId>it.unimi.dsi</groupId> http://git-wip-us.apache.org/repos/asf/apex-malhar/blob/d6f9ed58/examples/twitter/READEME.md ---------------------------------------------------------------------- diff --git a/examples/twitter/READEME.md b/examples/twitter/READEME.md new file mode 100644 index 0000000..c66a2a5 --- /dev/null +++ b/examples/twitter/READEME.md @@ -0,0 +1,8 @@ +## Twitter Example + +This application demonstrates Apex platform capabilities such as +- Read unstructured data at scale +- Top N computations in real time +- Fault Tolerance without data loss +- High scalability and throughput + http://git-wip-us.apache.org/repos/asf/apex-malhar/blob/d6f9ed58/examples/twitter/pom.xml ---------------------------------------------------------------------- diff --git a/examples/twitter/pom.xml b/examples/twitter/pom.xml index 5f51c51..e17db40 100644 --- a/examples/twitter/pom.xml +++ b/examples/twitter/pom.xml @@ -36,6 +36,8 @@ <properties> <skipTests>true</skipTests> + <apex.apppackage.tags>demos, twitter</apex.apppackage.tags> + <apex.apppackage.longDescription>README.md</apex.apppackage.longDescription> </properties> <dependencies> http://git-wip-us.apache.org/repos/asf/apex-malhar/blob/d6f9ed58/examples/wordcount/READEME.md ---------------------------------------------------------------------- diff --git a/examples/wordcount/READEME.md b/examples/wordcount/READEME.md new file mode 100644 index 0000000..cff17a7 --- /dev/null +++ b/examples/wordcount/READEME.md @@ -0,0 +1,7 @@ +## Word Count Example + +This is the Hadoop hello world example. This application demonstrates Apex platform capabilities such as +- Distributed processing to count words parallely +- Fault Tolerance without data loss +- High scalability and throughput + http://git-wip-us.apache.org/repos/asf/apex-malhar/blob/d6f9ed58/examples/wordcount/pom.xml ---------------------------------------------------------------------- diff --git a/examples/wordcount/pom.xml b/examples/wordcount/pom.xml index 65e329b..446c238 100644 --- a/examples/wordcount/pom.xml +++ b/examples/wordcount/pom.xml @@ -36,6 +36,8 @@ <properties> <skipTests>true</skipTests> + <apex.apppackage.tags>demos, wordcount</apex.apppackage.tags> + <apex.apppackage.longDescription>README.md</apex.apppackage.longDescription> </properties> <dependencies>
