You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apex.apache.org by da...@apache.org on 2016/10/08 23:45:36 UTC

[6/9] apex-site git commit: from 94aed6786dc3576fff91aed3f2f962fc995a3dc0

http://git-wip-us.apache.org/repos/asf/apex-site/blob/5e4c0641/content/content/docs.html
----------------------------------------------------------------------
diff --git a/content/content/docs.html b/content/content/docs.html
new file mode 100644
index 0000000..0e7e904
--- /dev/null
+++ b/content/content/docs.html
@@ -0,0 +1,148 @@
+<html lang="en"><head>
+    
+    <meta charset="utf-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1">
+    <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
+    <meta name="description" content="Apex is an enterprise grade native YARN big data-in-motion platform that unifies stream processing as well as batch processing.">
+    <meta name="author" content="Apache Software Foundation">
+    <link rel="icon" href="favicon.ico">
+
+    <title>Apache Apex</title>
+
+    <!-- Main Stylesheet -->
+    <link href="css/main.css" rel="stylesheet">
+
+  </head>
+
+  <body>
+    <nav class="navbar navbar-default navbar-static-top" id="main-nav">
+      <div class="container">
+
+      <div class="navbar-header">
+        <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
+          <span class="sr-only">Toggle navigation</span>
+          <span class="icon-bar"></span>
+          <span class="icon-bar"></span>
+          <span class="icon-bar"></span>
+        </button>
+        <a class="navbar-brand" href="/">
+          <img src="images/apex-logo.svg" class="logo" alt="Apache Apex Logo">
+          Apache Apex<span class="trademark">&trade;</span>
+        </a>
+      </div>
+
+      <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
+        <ul class="nav navbar-right navbar-nav">
+          <li class="nav-item">
+            <a class="nav-link " href="/">Home</a>
+          </li>
+          <li class="nav-item">
+            <a class="nav-link " href="/announcements.html">Announcements</a>
+          </li>
+          <li class="nav-item">
+            <a class="nav-link " href="/community.html">Community</a>
+          </li>
+          <li class="nav-item">
+            <a class="nav-link " href="/docs.html">Docs</a>
+          </li>
+          <li class="nav-item">
+            <a href="#" data-toggle="dropdown" class="dropdown-toggle nav-link">Source<b class="caret"></b></a>
+             <ul class="dropdown-menu">
+              <li><a href="https://git-wip-us.apache.org/repos/asf?p&#x3D;apex-core.git">Apex Core (ASF)</a></li>
+              <li><a href="https://github.com/apache/apex-core">Apex Core (Github Mirror)</a></li>
+              <li><a href="https://git-wip-us.apache.org/repos/asf?p&#x3D;apex-malhar.git">Apex Malhar (ASF)</a></li>
+              <li><a href="https://github.com/apache/apex-malhar">Apex Malhar (Github Mirror)</a></li>
+            </ul>
+          </li>
+          <li class="nav-item">
+            <a href="#" data-toggle="dropdown" class="dropdown-toggle nav-link">Apache<b class="caret"></b></a>
+             <ul class="dropdown-menu">
+              <li><a href="http://www.apache.org/foundation/how-it-works.html">Apache Foundation</a></li>
+              <li><a href="http://www.apache.org/licenses/">Apache License</a></li>
+              <li><a href="http://www.apache.org/foundation/sponsorship.html">Sponsorship</a></li>
+              <li><a href="http://www.apache.org/foundation/thanks.html">Thanks</a></li>
+            </ul>
+          </li>
+          <li class="nav-item">
+            <a class="nav-link btn btn-success" href="/downloads.html">Download</a>
+          </li>
+        </ul>
+        
+      </div>
+    </nav>
+
+<div class="container">
+  
+  <h1 id="documentation">Documentation</h1>
+<ul>
+<li><strong><a href="/docs/apex/">Apache Apex Core Documentation</a></strong> including overviews of the product, security, application development, operators and the commandline tool.</li>
+<li><strong><a href="/docs/malhar/">Apache Apex Malhar Documentation</a></strong> for the operator library including a diagrammatic taxonomy and some in-depth tutorials for selected operators (such as Kafka Input).</li>
+<li><strong><a href="https://www.datatorrent.com/docs/apidocs/" rel="nofollow">Java API documentation</a></strong> for both the platform and the operator library.</li>
+</ul>
+<p>Documentation for previous releases is available in <a href="/downloads.html">Downloads</a>.</p>
+<h3 id="writing-apache-apex-applications">Writing Apache Apex Applications</h3>
+<ul>
+<li><a href="http://docs.datatorrent.com/beginner/" rel="nofollow">Beginner&#39;s Guide to Apache Apex</a> This document provides a comprehensive overview of Apex and is recommended for developers just starting out with Apex.</li>
+<li><a href="https://youtu.be/LwRWBudOjg4">Building Your First Apache Apex Application</a> This video has a hands-on demonstration of how to check out the source code repositories and build them, then run the maven archetype command to generate a new Apache Apex project, populate the project with Java source files for a new application, and finally, build and run the application -- all on a virtual machine running Linux with Apache Hadoop installed.</li>
+<li><a href="http://files.meetup.com/18978602/University%20program%20-%20Writing%20an%20Apache%20Apex%20application.pdf">Writing an Apache Apex application</a> A PDF document that frames a hands-on exercise of building a basic application; also includes a diagram illustrating the life-cycle of operators.</li>
+<li><a href="http://docs.datatorrent.com/tutorials/topnwords/" rel="nofollow">Top N Words Application Tutorial</a> This document provides a detailed step-by-step description of how to build and run a
+word counting application with Apache Apex starting with setting up your development environment, progressing to building, running and monitoring the application, visualizing the output and concluding with some advanced features such as assessing operator memory requirements, partitioning, and debugging.</li>
+<li><a href="http://docs.datatorrent.com/tutorials/salesdimensions/" rel="nofollow">Sales Dimensions Application Tutorial</a> Similar to the Top N Words application but covers
+dimensional computations on a simulated sales data stream.</li>
+<li><a href="https://github.com/DataTorrent/examples" rel="nofollow">Example Applications</a> Sample code for specialized tutorials covering a variety of topics such as large key-value state management (HDHT), custom partitioning using stream codecs, etc.</li>
+<li><a href="https://github.com/apache/apex-malhar/tree/master/demos">Malhar Demos</a> This is part of the source repository for Apache Apex Malhar and contains a number of more substantial sample applications that developers will find especially useful.  They include an application that computes some statistics (such as moving averages) from a live stream of stock transactions from <em>Yahoo! Finance</em>; one that analyzes a synthetic stream of eruption event data for the <em>Old Faithful</em> geyser; a Twitter stream analyzer; and a simulated fraud detector.</li>
+</ul>
+<h3 id="presentations">Presentations</h3>
+<ul>
+<li><a href="http://www.slideshare.net/ApacheApex/presentations">Slideshare/ApacheApex</a> Presentations from past meetup events and other talks covering Apache Apex introduction, feature deep dive, integration, customer use cases and more.</li>
+<li><a href="https://www.youtube.com/watch?v=98EW5NGM3u0">Next Gen Decision Making in &lt; 2ms</a> A video discussing CapitalOne&#39;s experience with Apache Apex and evaluation of competing technologies along with the <a href="http://www.slideshare.net/ApacheApex/capital-ones-next-generation-decision-in-less-than-2-ms">slides</a>. </li>
+<li><a href="https://www.brighttalk.com/webcast/13685/190407">Introducing Apache Apex</a> A webinar that begins with the historical context for the rise of Hadoop and Big Data, discusses why the promise of Hadoop remains largely unfulfilled and why moving beyond Map-Reduce model is essential and why operability is critically important. It continues with a discussion of the programming model, the various components of a running application on a YARN cluster and the large library of operators and connectors available with Apache Apex for reading data from and writing data to external systems. Concludes with a brief description of the visualization dashboards.</li>
+<li><a href="https://www.youtube.com/watch?v=1DVMSRTNdIQ">Stream Processing with Apache Apex (video)</a> and <a href="http://www.slideshare.net/ApacheApex/hadoop-summit-sj-2016-next-gen-big-data-analytics-with-apache-apex">(slides)</a> A broad overview slide deck covering topics such as windowing, static and dynamic partitioning, unification, fault tolerance, locality, monitoring, etc.</li>
+<li><a href="https://www.youtube.com/watch?v=FCMY6Ii89Nw">Fault Tolerance and Processing Semantics (video)</a> and <a href="http://www.slideshare.net/ApacheApexOrganizer/webinar-fault-toleranceandprocessingsemantics">(slides)</a> A webinar covering core Apache Apex features including checkpointing and fault tolerance with fast, incremental recovery via a buffer server which uses a publish-subscribe model for inter-operator data transport. A variety of failure scenarios and processing guarantees are discussed.</li>
+<li><a href="https://www.youtube.com/watch?v=kJWMajIjGG0">Smart Partitioning with Apache Apex (video)</a> and <a href="http://www.slideshare.net/ApacheApex/smart-partitioning-with-apache-apex-webinar">(slides)</a> Webinar covering partitioning, including unique Apex features such as elasticity with dynamic resource allocation, parallel partitions for speculative execution and processing SLA etc.</li>
+<li><a href="http://www.slideshare.net/DevendraVyavahare/windowing-in-apex">Windows in Apache Apex</a> Discusses the various flavors of windows available in Apache Apex and how to configure and
+use them via callbacks. Contrasts windows with micro-batches.</li>
+<li><a href="http://www.slideshare.net/DevendraVyavahare/batch-processing-vs-real-time-data-processing-streaming">Real Time Stream Processing Versus Batch</a> Slide deck compares and contrasts the needs, use cases and challenges of stream processing with those of batch processing.</li>
+</ul>
+<h3 id="blogs">Blogs</h3>
+<ul>
+<li><a href="https://www.datatorrent.com/blog/introducing-apache-apex-incubating/" rel="nofollow">Introducing Apache Apex</a> Introduces Apache Apex and discusses how it addresses the current challenges of Big Data in the areas of code reuse, operability, ease of use and the benefits of a YARN-native solution.</li>
+<li><a href="https://www.datatorrent.com/blog/tracing-dags-from-specification-to-execution/" rel="nofollow">Tracing DAGs from Specification to Execution</a> Discusses DAGs (Directed Acyclic Graphs) as an application model, how they can be specified in Java or via JSON, how the platform transforms them to physical plans for scaling and how they can be monitored via the REST API.</li>
+<li><a href="https://www.datatorrent.com/blog/blog-introduction-to-checkpoint/" rel="nofollow">An Introduction to Checkpointing in Apache Apex</a> Discusses checkpointing by saving serializing operator state to HDFS and how to configure the frequency of checkpointing (or skip it altogether) via attributes or annotations.</li>
+<li><a href="https://www.datatorrent.com/blog/blog-operability-the-graveyard-of-big-data-projects" rel="nofollow">Operability \u2014 The Graveyard of Big Data Projects</a> Argues that operability is a critical aspect of Big Data projects which implementors ignore at their peril. Features of Apache Apex that solve operability issues are discussed broadly.</li>
+<li><a href="https://www.datatorrent.com/blog/end-to-end-exactly-once-with-apache-apex" rel="nofollow"> End-to-end <em>Exactly-Once</em> with Apache Apex</a> Details how Apache Apex can work in conjunction with transactional systems to provide <em>exactly-once</em> semantics. A simple example of reading data from a Kafka topic and writing processed results to a SQL database is discussed along with the relevant operators (already provided in the Apex Malhar library) and the importance of idempotency.</li>
+<li><a href="https://www.datatorrent.com/blog/blog-dimensions-computation-aggregate-navigator-part-1-intro/" rel="nofollow">Dimensions Computation - Part 1: Introduction</a> A two-part blog that discusses dimensions computation in Apache Apex in considerable detail. The first part introduces the domain, shows an <em>AdEvent</em> object to model tuples in the data stream and analyzes the various dimensions of interest.</li>
+<li><a href="https://www.datatorrent.com/blog/dimensions-computation-aggregate-navigator-part-2-implementation/" rel="nofollow">Dimensions Computation - Part 2: Implementation</a> The second part continues with discussion of the three phases involved (<em>pre-aggregation</em>, <em>unification</em> and <em>storage</em>) the JSON schema to encapsulate the various keys and aggregates, code fragments and, finally, concludes with visualization of the results.</li>
+<li><a href="https://www.datatorrent.com/blog/blog-apex-performance-benchmark" rel="nofollow">Apache Apex Performance Benchmarks</a> Discusses the performance suite used to certify releases.</li>
+<li><a href="https://blogs.apache.org/foundation/entry/celebrating_17_years_of_the">Apache Software Foundation</a> Discusses the history of the foundation, guiding principles, current statistics and provides numerous additional links for details of how the foundation operates and is managed.</li>
+<li><a href="https://techblog.xavient.com/real-time-data-ingestion-dip-apache-apex-co-dev-opportunity">Data Ingestion Platform  - Xavient Information Systems</a> Discusses usage of Apache Apex in their data ingestion platform.</li>
+</ul>
+<h3 id="trouble-shooting">Trouble Shooting</h3>
+<ul>
+<li><a href="http://docs.datatorrent.com/troubleshooting/" rel="nofollow">Troubleshooting Guide</a></li>
+</ul>
+
+</div>
+
+  <hr>
+  <div class="container">
+    <footer id="main-footer">
+      <p>
+        Copyright &copy; <span id="copyright-year">2015</span> <a href="http://apache.org">The Apache Software Foundation</a>,
+        Licensed under the Apache License, Version 2.0<br>
+        Apache and the Apache feather logo are trademarks of The Apache Software Foundation.<br>
+        <a class="footer-link-img" href="http://apache.org"><img src="/images/asf_logo.svg" alt="The Apache Software Foundation"></a>
+      </p>
+    </footer>
+  </div> <!-- /container -->
+
+  <!-- Placed at the end of the document so the pages load faster -->
+  <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
+  <script src="/js/bootstrap.min.js"></script>
+  <script>
+    $('#copyright-year').text((new Date()).getFullYear());
+  </script>
+
+</body>
+</html>

http://git-wip-us.apache.org/repos/asf/apex-site/blob/5e4c0641/content/content/downloads.html
----------------------------------------------------------------------
diff --git a/content/content/downloads.html b/content/content/downloads.html
new file mode 100644
index 0000000..bfed53c
--- /dev/null
+++ b/content/content/downloads.html
@@ -0,0 +1,299 @@
+<html lang="en"><head>
+    
+    <meta charset="utf-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1">
+    <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
+    <meta name="description" content="Apex is an enterprise grade native YARN big data-in-motion platform that unifies stream processing as well as batch processing.">
+    <meta name="author" content="Apache Software Foundation">
+    <link rel="icon" href="favicon.ico">
+
+    <title>Apache Apex</title>
+
+    <!-- Main Stylesheet -->
+    <link href="css/main.css" rel="stylesheet">
+
+  </head>
+
+  <body>
+    <nav class="navbar navbar-default navbar-static-top" id="main-nav">
+      <div class="container">
+
+      <div class="navbar-header">
+        <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
+          <span class="sr-only">Toggle navigation</span>
+          <span class="icon-bar"></span>
+          <span class="icon-bar"></span>
+          <span class="icon-bar"></span>
+        </button>
+        <a class="navbar-brand" href="/">
+          <img src="images/apex-logo.svg" class="logo" alt="Apache Apex Logo">
+          Apache Apex<span class="trademark">&trade;</span>
+        </a>
+      </div>
+
+      <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
+        <ul class="nav navbar-right navbar-nav">
+          <li class="nav-item">
+            <a class="nav-link " href="/">Home</a>
+          </li>
+          <li class="nav-item">
+            <a class="nav-link " href="/announcements.html">Announcements</a>
+          </li>
+          <li class="nav-item">
+            <a class="nav-link " href="/community.html">Community</a>
+          </li>
+          <li class="nav-item">
+            <a class="nav-link " href="/docs.html">Docs</a>
+          </li>
+          <li class="nav-item">
+            <a href="#" data-toggle="dropdown" class="dropdown-toggle nav-link">Source<b class="caret"></b></a>
+             <ul class="dropdown-menu">
+              <li><a href="https://git-wip-us.apache.org/repos/asf?p&#x3D;apex-core.git">Apex Core (ASF)</a></li>
+              <li><a href="https://github.com/apache/apex-core">Apex Core (Github Mirror)</a></li>
+              <li><a href="https://git-wip-us.apache.org/repos/asf?p&#x3D;apex-malhar.git">Apex Malhar (ASF)</a></li>
+              <li><a href="https://github.com/apache/apex-malhar">Apex Malhar (Github Mirror)</a></li>
+            </ul>
+          </li>
+          <li class="nav-item">
+            <a href="#" data-toggle="dropdown" class="dropdown-toggle nav-link">Apache<b class="caret"></b></a>
+             <ul class="dropdown-menu">
+              <li><a href="http://www.apache.org/foundation/how-it-works.html">Apache Foundation</a></li>
+              <li><a href="http://www.apache.org/licenses/">Apache License</a></li>
+              <li><a href="http://www.apache.org/foundation/sponsorship.html">Sponsorship</a></li>
+              <li><a href="http://www.apache.org/foundation/thanks.html">Thanks</a></li>
+            </ul>
+          </li>
+          <li class="nav-item">
+            <a class="nav-link btn btn-success" href="/downloads.html">Download</a>
+          </li>
+        </ul>
+        
+      </div>
+    </nav>
+
+<div class="container">
+  
+  <h1>Downloads</h1>
+
+  <!-- APEX CORE SOURCE RELEASES TABLE -->
+  <h2>Apex Source Releases</h2>
+  <table class="table table-bordered table-striped">
+    <thead>
+      <tr>
+        <th scope="col">Version</th>
+        <th scope="col">Date</th>
+        <th scope="col">Source (zip)</th>
+        <th scope="col">Source (tarball)</th>
+        <th scope="col">Docs</th>
+      </tr>
+    </thead>
+    <tbody>
+      <tr>
+        <td>
+          3.4.0
+          <span class="latest-tag">(latest)</span>
+        </td>
+        <td>
+          2016-05-10
+        </td>
+        <td>
+          <a href="http://www.apache.org/dyn/closer.lua/apex/apache-apex-core-3.4.0/apex-3.4.0-source-release.zip">apex-3.4.0-source-release.zip</a><br>
+          <small>
+            (
+              <a href="https://dist.apache.org/repos/dist/release/apex/apache-apex-core-3.4.0/apex-3.4.0-source-release.zip.asc">pgp</a>,
+              <a href="https://dist.apache.org/repos/dist/release/apex/apache-apex-core-3.4.0/apex-3.4.0-source-release.zip.md5">md5</a>,
+              <a href="https://dist.apache.org/repos/dist/release/apex/apache-apex-core-3.4.0/apex-3.4.0-source-release.zip.sha">sha1</a>
+            )
+          </small>
+        </td>
+        <td>
+          <a href="http://www.apache.org/dyn/closer.lua/apex/apache-apex-core-3.4.0/apex-3.4.0-source-release.tar.gz">apex-3.4.0-source-release.tar.gz</a><br>
+          <small>
+            (
+              <a href="https://dist.apache.org/repos/dist/release/apex/apache-apex-core-3.4.0/apex-3.4.0-source-release.tar.gz.asc">pgp</a>,
+              <a href="https://dist.apache.org/repos/dist/release/apex/apache-apex-core-3.4.0/apex-3.4.0-source-release.tar.gz.md5">md5</a>,
+              <a href="https://dist.apache.org/repos/dist/release/apex/apache-apex-core-3.4.0/apex-3.4.0-source-release.tar.gz.sha">sha1</a>
+            )
+          </small>
+        </td>
+        <td>
+          <a href="/docs/apex-3.4">apex-3.4</a><br>
+        </td>
+      </tr>
+      <tr>
+        <td>
+          3.2.1-incubating
+          <span class="latest-tag">(latest)</span>
+        </td>
+        <td>
+          2016-04-20
+        </td>
+        <td>
+          <a href="http://www.apache.org/dyn/closer.lua/apex/apache-apex-core-3.2.1-incubating/apex-3.2.1-incubating-source-release.zip">apex-3.2.1-incubating-source-release.zip</a><br>
+          <small>
+            (
+              <a href="https://dist.apache.org/repos/dist/release/apex/apache-apex-core-3.2.1-incubating/apex-3.2.1-incubating-source-release.zip.asc">pgp</a>,
+              <a href="https://dist.apache.org/repos/dist/release/apex/apache-apex-core-3.2.1-incubating/apex-3.2.1-incubating-source-release.zip.md5">md5</a>,
+              <a href="https://dist.apache.org/repos/dist/release/apex/apache-apex-core-3.2.1-incubating/apex-3.2.1-incubating-source-release.zip.sha">sha1</a>
+            )
+          </small>
+        </td>
+        <td>
+          <a href="http://www.apache.org/dyn/closer.lua/apex/apache-apex-core-3.2.1-incubating/apex-3.2.1-incubating-source-release.tar.gz">apex-3.2.1-incubating-source-release.tar.gz</a><br>
+          <small>
+            (
+              <a href="https://dist.apache.org/repos/dist/release/apex/apache-apex-core-3.2.1-incubating/apex-3.2.1-incubating-source-release.tar.gz.asc">pgp</a>,
+              <a href="https://dist.apache.org/repos/dist/release/apex/apache-apex-core-3.2.1-incubating/apex-3.2.1-incubating-source-release.tar.gz.md5">md5</a>,
+              <a href="https://dist.apache.org/repos/dist/release/apex/apache-apex-core-3.2.1-incubating/apex-3.2.1-incubating-source-release.tar.gz.sha">sha1</a>
+            )
+          </small>
+        </td>
+        <td>
+          <a href="/docs/apex-3.2">apex-3.2</a><br>
+        </td>
+      </tr>
+    </tbody>
+  </table>
+
+  <!-- APEX MALHAR SOURCE RELEASES TABLE -->
+  <h2>Malhar Source Releases</h2>
+  <table class="table table-bordered table-striped">
+    <thead>
+      <tr>
+        <th scope="col">Version</th>
+        <th scope="col">Date</th>
+        <th scope="col">Source (zip)</th>
+        <th scope="col">Source (tarball)</th>
+        <th scope="col">Docs</th>
+      </tr>
+    </thead>
+    <tbody>
+      <tr>
+        <td>
+          3.5.0
+          <span class="latest-tag">(latest)</span>
+        </td>
+        <td>
+          2016-08-30
+        </td>
+        <td>
+          <a href="http://www.apache.org/dyn/closer.lua/apex/apache-apex-malhar-3.5.0/apache-apex-malhar-3.5.0-source-release.zip">malhar-3.5.0-source-release.zip</a><br>
+          <small>
+            (
+              <a href="https://dist.apache.org/repos/dist/release/apex/apache-apex-malhar-3.5.0/apache-apex-malhar-3.5.0-source-release.zip.asc">pgp</a>,
+              <a href="https://dist.apache.org/repos/dist/release/apex/apache-apex-malhar-3.5.0/apache-apex-malhar-3.5.0-source-release.zip.md5">md5</a>,
+              <a href="https://dist.apache.org/repos/dist/release/apex/apache-apex-malhar-3.5.0/apache-apex-malhar-3.5.0-source-release.zip.sha">sha1</a>
+            )
+          </small>
+        </td>
+        <td>
+          <a href="http://www.apache.org/dyn/closer.lua/apex/apache-apex-malhar-3.5.0/apache-apex-malhar-3.5.0-source-release.tar.gz">malhar-3.5.0-source-release.tar.gz</a><br>
+          <small>
+            (
+              <a href="https://dist.apache.org/repos/dist/release/apex/apache-apex-malhar-3.5.0/apache-apex-malhar-3.5.0-source-release.tar.gz.asc">pgp</a>,
+              <a href="https://dist.apache.org/repos/dist/release/apex/apache-apex-malhar-3.5.0/apache-apex-malhar-3.5.0-source-release.tar.gz.md5">md5</a>,
+              <a href="https://dist.apache.org/repos/dist/release/apex/apache-apex-malhar-3.5.0/apache-apex-malhar-3.5.0-source-release.tar.gz.sha">sha1</a>
+            )
+          </small>
+        </td>
+        <td>
+          <a href="/docs/malhar-3.5">malhar-3.5</a><br>
+        </td>
+      </tr>
+      <tr>
+        <td>
+          3.4.0
+          <span class="latest-tag">(latest)</span>
+        </td>
+        <td>
+          2016-05-24
+        </td>
+        <td>
+          <a href="http://www.apache.org/dyn/closer.lua/apex/apache-apex-malhar-3.4.0/apache-apex-malhar-3.4.0-source-release.zip">malhar-3.4.0-source-release.zip</a><br>
+          <small>
+            (
+              <a href="https://dist.apache.org/repos/dist/release/apex/apache-apex-malhar-3.4.0/apache-apex-malhar-3.4.0-source-release.zip.asc">pgp</a>,
+              <a href="https://dist.apache.org/repos/dist/release/apex/apache-apex-malhar-3.4.0/apache-apex-malhar-3.4.0-source-release.zip.md5">md5</a>,
+              <a href="https://dist.apache.org/repos/dist/release/apex/apache-apex-malhar-3.4.0/apache-apex-malhar-3.4.0-source-release.zip.sha">sha1</a>
+            )
+          </small>
+        </td>
+        <td>
+          <a href="http://www.apache.org/dyn/closer.lua/apex/apache-apex-malhar-3.4.0/apache-apex-malhar-3.4.0-source-release.tar.gz">malhar-3.4.0-source-release.tar.gz</a><br>
+          <small>
+            (
+              <a href="https://dist.apache.org/repos/dist/release/apex/apache-apex-malhar-3.4.0/apache-apex-malhar-3.4.0-source-release.tar.gz.asc">pgp</a>,
+              <a href="https://dist.apache.org/repos/dist/release/apex/apache-apex-malhar-3.4.0/apache-apex-malhar-3.4.0-source-release.tar.gz.md5">md5</a>,
+              <a href="https://dist.apache.org/repos/dist/release/apex/apache-apex-malhar-3.4.0/apache-apex-malhar-3.4.0-source-release.tar.gz.sha">sha1</a>
+            )
+          </small>
+        </td>
+        <td>
+          <a href="/docs/malhar-3.3">malhar-3.3</a><br>
+        </td>
+      </tr>
+    </tbody>
+  </table>
+
+
+  <h2 id="third-party-downloads">Third-Party Downloads</h2>
+<p>This is a list of 3rd party binary packages based on Apache Apex. The Apache Apex project does not endorse or maintain any 3rd party binary packages.</p>
+<ul>
+<li><a href="https://www.datatorrent.com/download/" rel="nofollow">DataTorrent RTS</a> is a binary build of Apache Apex created by <a href="https://www.datatorrent.com/" rel="nofollow">DataTorrent</a>.</li>
+<li>Apache Apex Sandbox Docker image using <a href="http://bigtop.apache.org/">Bigtop</a> packages<ul>
+<li>This is a ready to use sandbox environment where bigtop-hadoop and bigtop-apex is pre-installed</li>
+<li>To use, run following commands and then launch apex cli/dtcli from docker container:<pre><code class="lang-bash">docker pull apacheapex/sandbox
+docker run -it --name=apex-sandbox apacheapex/sandbox
+</code></pre>
+</li>
+<li>For advanced usage, click <a href="https://hub.docker.com/r/apacheapex/sandbox/">here</a></li>
+</ul>
+</li>
+<li><p><a href="http://bigtop.apache.org/">Bigtop</a> CI based distribution binaries:</p>
+<ul>
+<li><p>Setup Bigtop Environment:</p>
+<ol>
+<li>Grab the repo/list file for your favourite linux distribution from <a href="http://www.apache.org/dist/bigtop/bigtop-1.1.0/repos/">here</a></li>
+<li>Install bigtop hadoop:<ul>
+<li>For RPM based systems: <strong> yum install hadoop* </strong></li>
+<li>For DEB baed systems: <strong> apt-get install hadoop* </strong></li>
+</ul>
+</li>
+<li>Follow steps <a href="https://cwiki.apache.org/confluence/display/BIGTOP/How+to+install+Hadoop+distribution+from+Bigtop+0.5.0#HowtoinstallHadoopdistributionfromBigtop0.5.0-RunningHadoop">here</a> to start hadoop services.</li>
+</ol>
+</li>
+<li><p>Apex packages available are:</p>
+<ul>
+<li>RPM: <a href="https://ci.bigtop.apache.org/job/Bigtop-trunk-packages/BUILD_ENVIRONMENTS=centos-6,COMPONENTS=apex,label=docker-slave/lastSuccessfulBuild/artifact/output/apex/noarch/apex-3.3.0-1.el6.noarch.rpm">CentOS 6</a>, <a href="https://ci.bigtop.apache.org/job/Bigtop-trunk-packages/BUILD_ENVIRONMENTS=centos-7,COMPONENTS=apex,label=docker-slave/lastSuccessfulBuild/artifact/output/apex/noarch/apex-3.3.0-1.el7.centos.noarch.rpm">CentOS 7</a>, <a href="https://ci.bigtop.apache.org/job/Bigtop-trunk-packages/BUILD_ENVIRONMENTS=fedora-20,COMPONENTS=apex,label=docker-slave/lastSuccessfulBuild/artifact/output/apex/noarch/apex-3.3.0-1.fc20.noarch.rpm">Fedora 20</a>, <a href="https://ci.bigtop.apache.org/job/Bigtop-trunk-packages/BUILD_ENVIRONMENTS=opensuse-13.2,COMPONENTS=apex,label=docker-slave/lastSuccessfulBuild/artifact/output/apex/noarch/apex-3.3.0-1.noarch.rpm">OpenSUSE 13.2</a> </li>
+<li>DEB: <a href="https://ci.bigtop.apache.org/job/Bigtop-trunk-packages/BUILD_ENVIRONMENTS=ubuntu-14.04,COMPONENTS=apex,label=docker-slave/lastSuccessfulBuild/artifact/output/apex/apex_3.3.0-1_all.deb">Ubuntu 14.04</a>, <a href="https://ci.bigtop.apache.org/job/Bigtop-trunk-packages/BUILD_ENVIRONMENTS=debian-8,COMPONENTS=apex,label=docker-slave/lastSuccessfulBuild/artifact/output/apex/apex_3.3.0-1_all.">Debian 8</a></li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+<p>If you would like to provide your own edition of Apache Apex here, please send email to <a href="mailto:dev@apex.apache.org">dev@apex.apache.org</a>.</p>
+
+</div>
+
+  <hr>
+  <div class="container">
+    <footer id="main-footer">
+      <p>
+        Copyright &copy; <span id="copyright-year">2015</span> <a href="http://apache.org">The Apache Software Foundation</a>,
+        Licensed under the Apache License, Version 2.0<br>
+        Apache and the Apache feather logo are trademarks of The Apache Software Foundation.<br>
+        <a class="footer-link-img" href="http://apache.org"><img src="/images/asf_logo.svg" alt="The Apache Software Foundation"></a>
+      </p>
+    </footer>
+  </div> <!-- /container -->
+
+  <!-- Placed at the end of the document so the pages load faster -->
+  <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
+  <script src="/js/bootstrap.min.js"></script>
+  <script>
+    $('#copyright-year').text((new Date()).getFullYear());
+  </script>
+
+</body>
+</html>

http://git-wip-us.apache.org/repos/asf/apex-site/blob/5e4c0641/content/content/fonts/glyphicons-halflings-regular.eot
----------------------------------------------------------------------
diff --git a/content/content/fonts/glyphicons-halflings-regular.eot b/content/content/fonts/glyphicons-halflings-regular.eot
new file mode 100644
index 0000000..b93a495
Binary files /dev/null and b/content/content/fonts/glyphicons-halflings-regular.eot differ