You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@datafu.apache.org by mh...@apache.org on 2018/01/29 20:32:24 UTC

svn commit: r1822583 [2/2] - in /incubator/datafu/site: ./ blog/ blog/2012/01/10/ blog/2013/01/24/ blog/2013/09/04/ blog/2013/10/03/ blog/2014/04/27/ blog/2015/11/17/ blog/2016/08/10/ blog/2017/ blog/2017/03/ blog/2017/03/10/ blog/2018/ blog/2018/01/ b...

Modified: incubator/datafu/site/docs/datafu/guide/set-operations.html
URL: http://svn.apache.org/viewvc/incubator/datafu/site/docs/datafu/guide/set-operations.html?rev=1822583&r1=1822582&r2=1822583&view=diff
==============================================================================
--- incubator/datafu/site/docs/datafu/guide/set-operations.html (original)
+++ incubator/datafu/site/docs/datafu/guide/set-operations.html Mon Jan 29 20:32:24 2018
@@ -37,7 +37,6 @@
 <div class="header">
 
   <ul class="nav nav-pills pull-right">
-    <li><a href="/">Home</a></li>
     <li><a href="/blog">Blog</a></li>
   </ul>
 
@@ -50,24 +49,33 @@
   <div class="row">
     <div class="col-md-3">
       
-<h4>Apache DataFu</h4>
+<h4>Getting Started</h4>
 <ul class="nav nav-pills nav-stacked">
-  <li><a href="/">Home</a></li>
-  <li><a href="/docs/quick-start.html">Quick Start</a></li>
+  <li><a href="/docs/download.html">Download</a></li>
+  <li><a href="/docs/datafu/getting-started.html">DataFu Pig</a></li>
+  <li><a href="/docs/hourglass/getting-started.html">DataFu Hourglass</a></li>
 </ul>
 
-<h4>Apache DataFu Pig</h4>
+<h4>DataFu Pig Docs</h4>
 <ul class="nav nav-pills nav-stacked">
-  <li><a href="/docs/datafu/getting-started.html">Getting Started</a></li>
+
   <li><a href="/docs/datafu/guide.html">Guide</a></li>
-  <li><a href="/docs/datafu/javadoc.html">Javadoc</a></li>
+  <li><a href="http://datafu.incubator.apache.org/docs/datafu/1.3.3/">Javadocs</a></li>
 </ul>
 
-<h4>Apache DataFu Hourglass</h4>
+<h4>DataFu Hourglass Docs</h4>
 <ul class="nav nav-pills nav-stacked">
-  <li><a href="/docs/hourglass/getting-started.html">Getting Started</a></li>
+
   <li><a href="/docs/hourglass/concepts.html">Concepts</a></li>
-  <li><a href="/docs/hourglass/javadoc.html">Javadoc</a></li>
+  <li><a href="http://datafu.incubator.apache.org/docs/hourglass/1.3.3/">Javadocs</a></li>
+</ul>
+
+<h4>Community</h4>
+<ul class="nav nav-pills nav-stacked">
+  <li><a href="/community/mailing-lists.html">Mailing Lists</a></li>
+  <li><a href="/community/contributing.html">Contributing</a></li>
+  <li><a href="/community/issues.html">Issues</a></li>
+  <li><a href="https://cwiki.apache.org/confluence/display/DATAFU/DataFu+Home">Wiki</a></li>
 </ul>
 
 <h4>Apache Software Foundation</h4>
@@ -78,13 +86,6 @@
   <li><a href="http://www.apache.org/security/" target="_blank">Security</a></li>
   <li><a href="http://www.apache.org/foundation/thanks.html" target="_blank">Thanks</a></li>
 </ul>
-
-<h4>Community</h4>
-<ul class="nav nav-pills nav-stacked">
-  <li><a href="/community/contributing.html">Contributing</a></li>
-  <li><a href="/community/issues.html">Issues</a></li>
-  <li><a href="/community/mailing-lists.html">Mailing Lists</a></li>
-</ul>
     </div>
     <div class="col-md-7">
       <h4 class="text-muted">Apache DataFu Pig - Guide</h4>
@@ -94,7 +95,7 @@
 
 <h3 id="set-intersection">Set Intersection</h3>
 
-<p>Compute the <a href="http://en.wikipedia.org/wiki/Set_%28mathematics%29#Intersections">set intersection</a> with <a href="/docs/datafu/1.3.1/datafu/pig/sets/SetIntersect.html">SetIntersect</a>:</p>
+<p>Compute the <a href="http://en.wikipedia.org/wiki/Set_%28mathematics%29#Intersections">set intersection</a> with <a href="http://datafu.incubator.apache.org/docs/datafu/1.3.3/datafu/pig/sets/SetIntersect.html">SetIntersect</a>:</p>
 <pre class="highlight pig"><code><span class="k">define</span> <span class="n">SetIntersect</span> <span class="n">datafu</span><span class="p">.</span><span class="n">pig</span><span class="p">.</span><span class="n">sets</span><span class="p">.</span><span class="n">SetIntersect</span><span class="p">();</span>
 
 <span class="c1">-- ({(3),(4),(1),(2),(7),(5),(6)},{(0),(5),(10),(1),(4)})
@@ -112,7 +113,7 @@
 
 <h3 id="set-union">Set Union</h3>
 
-<p>Compute the <a href="http://en.wikipedia.org/wiki/Set_%28mathematics%29#Unions">set union</a> with <a href="/docs/datafu/1.3.1/datafu/pig/sets/SetUnion.html">SetUnion</a>:</p>
+<p>Compute the <a href="http://en.wikipedia.org/wiki/Set_%28mathematics%29#Unions">set union</a> with <a href="http://datafu.incubator.apache.org/docs/datafu/1.3.3/datafu/pig/sets/SetUnion.html">SetUnion</a>:</p>
 <pre class="highlight pig"><code><span class="k">define</span> <span class="n">SetUnion</span> <span class="n">datafu</span><span class="p">.</span><span class="n">pig</span><span class="p">.</span><span class="n">sets</span><span class="p">.</span><span class="n">SetUnion</span><span class="p">();</span>
 
 <span class="c1">-- ({(3),(4),(1),(2),(7),(5),(6)},{(0),(5),(10),(1),(4)})
@@ -130,7 +131,7 @@
 
 <h3 id="set-difference">Set Difference</h3>
 
-<p>Compute the <a href="http://en.wikipedia.org/wiki/Set_%28mathematics%29#Complements">set difference</a> with <a href="/docs/datafu/1.3.1/datafu/pig/sets/SetDifference.html">SetDifference</a>:</p>
+<p>Compute the <a href="http://en.wikipedia.org/wiki/Set_%28mathematics%29#Complements">set difference</a> with <a href="http://datafu.incubator.apache.org/docs/datafu/1.3.3/datafu/pig/sets/SetDifference.html">SetDifference</a>:</p>
 <pre class="highlight pig"><code><span class="k">define</span> <span class="n">SetDifference</span> <span class="n">datafu</span><span class="p">.</span><span class="n">pig</span><span class="p">.</span><span class="n">sets</span><span class="p">.</span><span class="n">SetDifference</span><span class="p">();</span>
 
 <span class="c1">-- ({(3),(4),(1),(2),(7),(5),(6)},{(1),(3),(5),(12)})
@@ -160,7 +161,7 @@
 </div>
 
 <div class="copyright">
-  Copyright &copy; 2011-2017 The Apache Software Foundation, Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.<br>
+  Copyright &copy; 2011-2018 The Apache Software Foundation, Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.<br>
   Apache DataFu, DataFu, Apache Pig, Apache Hadoop, Hadoop, Apache, and the Apache feather logo are either registered trademarks or trademarks of the <a href="http://www.apache.org/">Apache Software Foundation</a> in the United States and other countries.
 </div>
 </div>

Modified: incubator/datafu/site/docs/datafu/guide/statistics.html
URL: http://svn.apache.org/viewvc/incubator/datafu/site/docs/datafu/guide/statistics.html?rev=1822583&r1=1822582&r2=1822583&view=diff
==============================================================================
--- incubator/datafu/site/docs/datafu/guide/statistics.html (original)
+++ incubator/datafu/site/docs/datafu/guide/statistics.html Mon Jan 29 20:32:24 2018
@@ -37,7 +37,6 @@
 <div class="header">
 
   <ul class="nav nav-pills pull-right">
-    <li><a href="/">Home</a></li>
     <li><a href="/blog">Blog</a></li>
   </ul>
 
@@ -50,24 +49,33 @@
   <div class="row">
     <div class="col-md-3">
       
-<h4>Apache DataFu</h4>
+<h4>Getting Started</h4>
 <ul class="nav nav-pills nav-stacked">
-  <li><a href="/">Home</a></li>
-  <li><a href="/docs/quick-start.html">Quick Start</a></li>
+  <li><a href="/docs/download.html">Download</a></li>
+  <li><a href="/docs/datafu/getting-started.html">DataFu Pig</a></li>
+  <li><a href="/docs/hourglass/getting-started.html">DataFu Hourglass</a></li>
 </ul>
 
-<h4>Apache DataFu Pig</h4>
+<h4>DataFu Pig Docs</h4>
 <ul class="nav nav-pills nav-stacked">
-  <li><a href="/docs/datafu/getting-started.html">Getting Started</a></li>
+
   <li><a href="/docs/datafu/guide.html">Guide</a></li>
-  <li><a href="/docs/datafu/javadoc.html">Javadoc</a></li>
+  <li><a href="http://datafu.incubator.apache.org/docs/datafu/1.3.3/">Javadocs</a></li>
 </ul>
 
-<h4>Apache DataFu Hourglass</h4>
+<h4>DataFu Hourglass Docs</h4>
 <ul class="nav nav-pills nav-stacked">
-  <li><a href="/docs/hourglass/getting-started.html">Getting Started</a></li>
+
   <li><a href="/docs/hourglass/concepts.html">Concepts</a></li>
-  <li><a href="/docs/hourglass/javadoc.html">Javadoc</a></li>
+  <li><a href="http://datafu.incubator.apache.org/docs/hourglass/1.3.3/">Javadocs</a></li>
+</ul>
+
+<h4>Community</h4>
+<ul class="nav nav-pills nav-stacked">
+  <li><a href="/community/mailing-lists.html">Mailing Lists</a></li>
+  <li><a href="/community/contributing.html">Contributing</a></li>
+  <li><a href="/community/issues.html">Issues</a></li>
+  <li><a href="https://cwiki.apache.org/confluence/display/DATAFU/DataFu+Home">Wiki</a></li>
 </ul>
 
 <h4>Apache Software Foundation</h4>
@@ -78,13 +86,6 @@
   <li><a href="http://www.apache.org/security/" target="_blank">Security</a></li>
   <li><a href="http://www.apache.org/foundation/thanks.html" target="_blank">Thanks</a></li>
 </ul>
-
-<h4>Community</h4>
-<ul class="nav nav-pills nav-stacked">
-  <li><a href="/community/contributing.html">Contributing</a></li>
-  <li><a href="/community/issues.html">Issues</a></li>
-  <li><a href="/community/mailing-lists.html">Mailing Lists</a></li>
-</ul>
     </div>
     <div class="col-md-7">
       <h4 class="text-muted">Apache DataFu Pig - Guide</h4>
@@ -93,8 +94,8 @@
 <h3 id="median">Median</h3>
 
 <p>Apache DataFu has two UDFs that can be used to compute the <a href="http://en.wikipedia.org/wiki/Median">median</a> of a bag.
-<a href="/docs/datafu/1.3.1/datafu/pig/stats/Median.html">Median</a> computes the median exactly, but
-requires that the input bag be sorted.  <a href="/docs/datafu/1.3.1/datafu/pig/stats/StreamingMedian.html">StreamingMedian</a>,
+<a href="http://datafu.incubator.apache.org/docs/datafu/1.3.3/datafu/pig/stats/Median.html">Median</a> computes the median exactly, but
+requires that the input bag be sorted.  <a href="http://datafu.incubator.apache.org/docs/datafu/1.3.3/datafu/pig/stats/StreamingMedian.html">StreamingMedian</a>,
 on the other hand, does not require that the bag be sorted, however it computes only an estimate of the median.  But, because it does not require
 the input bag to be sorted, it is more efficient.</p>
 
@@ -115,8 +116,8 @@ we divide an ordered data set into segme
 most familiar with are those for median and percentiles.</p>
 
 <p>Similar to median, DataFu has two UDFs that can compute quantiles.  The median UDFs are in fact just wrappers around the quantile UDFs.
-<a href="/docs/datafu/1.3.1/datafu/pig/stats/Quantile.html">Quantile</a> computes the quantiles of a sorted bag exactly,
-and <a href="/docs/datafu/1.3.1/datafu/pig/stats/StreamingQuantile.html">StreamingQuantile</a> computes an estimate of
+<a href="http://datafu.incubator.apache.org/docs/datafu/1.3.3/datafu/pig/stats/Quantile.html">Quantile</a> computes the quantiles of a sorted bag exactly,
+and <a href="http://datafu.incubator.apache.org/docs/datafu/1.3.3/datafu/pig/stats/StreamingQuantile.html">StreamingQuantile</a> computes an estimate of
 the quantiles of a bag that does not need to be sorted.</p>
 
 <p>Let&#39;s take a look at computing the median using <code>StreamingQuantile</code>:</p>
@@ -131,7 +132,7 @@ the quantiles of a bag that does not nee
 
 <h3 id="variance">Variance</h3>
 
-<p><a href="http://en.wikipedia.org/wiki/Variance">Variance</a> can be computed using the <a href="/docs/datafu/1.3.1/datafu/pig/stats/VAR.html">VAR</a>
+<p><a href="http://en.wikipedia.org/wiki/Variance">Variance</a> can be computed using the <a href="http://datafu.incubator.apache.org/docs/datafu/1.3.3/datafu/pig/stats/VAR.html">VAR</a>
 UDF:</p>
 <pre class="highlight pig"><code><span class="k">define</span> <span class="n">VAR</span> <span class="n">datafu</span><span class="p">.</span><span class="n">pig</span><span class="p">.</span><span class="n">stats</span><span class="p">.</span><span class="n">VAR</span><span class="p">();</span>
 
@@ -155,7 +156,7 @@ UDF:</p>
 </div>
 
 <div class="copyright">
-  Copyright &copy; 2011-2017 The Apache Software Foundation, Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.<br>
+  Copyright &copy; 2011-2018 The Apache Software Foundation, Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.<br>
   Apache DataFu, DataFu, Apache Pig, Apache Hadoop, Hadoop, Apache, and the Apache feather logo are either registered trademarks or trademarks of the <a href="http://www.apache.org/">Apache Software Foundation</a> in the United States and other countries.
 </div>
 </div>

Added: incubator/datafu/site/docs/download.html
URL: http://svn.apache.org/viewvc/incubator/datafu/site/docs/download.html?rev=1822583&view=auto
==============================================================================
--- incubator/datafu/site/docs/download.html (added)
+++ incubator/datafu/site/docs/download.html Mon Jan 29 20:32:24 2018
@@ -0,0 +1,221 @@
+
+
+<!doctype html>
+<html>
+  <head>
+    <meta charset="utf-8">
+
+    <!-- Always force latest IE rendering engine or request Chrome Frame -->
+    <meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible">
+    <meta name="google-site-verification" content="9N7qTOUYyX4kYfXYc0OIomWJku3PVvGrf6oTNWg2CHI" />
+
+
+    <!-- Use title if it's in the page YAML frontmatter -->
+    <title>Download - Apache DataFu</title>
+
+    <link href="/stylesheets/all.css" rel="stylesheet" /><link href="/stylesheets/highlight.css" rel="stylesheet" />
+    <script src="/javascripts/all.js"></script>
+
+    <script type="text/javascript">
+      var _gaq = _gaq || [];
+      _gaq.push(['_setAccount', 'UA-30533336-2']);
+      _gaq.push(['_trackPageview']);
+
+      (function() {
+        var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+        ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+        var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+      })();
+    </script>
+  </head>
+
+  <body class="docs docs_download">
+
+    <div class="container">
+
+      
+<div class="header">
+
+  <ul class="nav nav-pills pull-right">
+    <li><a href="/blog">Blog</a></li>
+  </ul>
+
+  <h3 class="header-title"><a href="/">Apache DataFu&trade; (incubating)</a></h3>
+
+</div>
+
+
+      
+  <div class="row">
+    <div class="col-md-3">
+      
+<h4>Getting Started</h4>
+<ul class="nav nav-pills nav-stacked">
+  <li><a href="/docs/download.html">Download</a></li>
+  <li><a href="/docs/datafu/getting-started.html">DataFu Pig</a></li>
+  <li><a href="/docs/hourglass/getting-started.html">DataFu Hourglass</a></li>
+</ul>
+
+<h4>DataFu Pig Docs</h4>
+<ul class="nav nav-pills nav-stacked">
+
+  <li><a href="/docs/datafu/guide.html">Guide</a></li>
+  <li><a href="http://datafu.incubator.apache.org/docs/datafu/1.3.3/">Javadocs</a></li>
+</ul>
+
+<h4>DataFu Hourglass Docs</h4>
+<ul class="nav nav-pills nav-stacked">
+
+  <li><a href="/docs/hourglass/concepts.html">Concepts</a></li>
+  <li><a href="http://datafu.incubator.apache.org/docs/hourglass/1.3.3/">Javadocs</a></li>
+</ul>
+
+<h4>Community</h4>
+<ul class="nav nav-pills nav-stacked">
+  <li><a href="/community/mailing-lists.html">Mailing Lists</a></li>
+  <li><a href="/community/contributing.html">Contributing</a></li>
+  <li><a href="/community/issues.html">Issues</a></li>
+  <li><a href="https://cwiki.apache.org/confluence/display/DATAFU/DataFu+Home">Wiki</a></li>
+</ul>
+
+<h4>Apache Software Foundation</h4>
+<ul class="nav nav-pills nav-stacked">
+  <li><a href="http://www.apache.org/" target="_blank">Homepage</a></li>
+  <li><a href="http://www.apache.org/licenses/" target="_blank">License</a></li>
+  <li><a href="http://www.apache.org/foundation/sponsorship.html" target="_blank">Sponsorship</a></li>
+  <li><a href="http://www.apache.org/security/" target="_blank">Security</a></li>
+  <li><a href="http://www.apache.org/foundation/thanks.html" target="_blank">Thanks</a></li>
+</ul>
+    </div>
+    <div class="col-md-7">
+      <h4 class="text-muted">Getting Started</h4>
+      <h1 id="download">Download</h1>
+
+<p>Apache DataFu is available for download as a source release and as compiled artifacts stored in a Maven repository.</p>
+
+<h2 id="source-releases">Source Releases</h2>
+
+<p>Download one of the source releases from the list below:</p>
+
+<ul>
+<li><a href="http://www.apache.org/dyn/closer.cgi/incubator/datafu/apache-datafu-incubating-1.3.3/">apache-datafu-incubating-1.3.3</a></li>
+<li><a href="https://archive.apache.org/dist/incubator/datafu/apache-datafu-incubating-1.3.2/">apache-datafu-incubating-1.3.2</a></li>
+<li><a href="https://archive.apache.org/dist/incubator/datafu/apache-datafu-incubating-1.3.1/">apache-datafu-incubating-1.3.1</a></li>
+<li><a href="https://archive.apache.org/dist/incubator/datafu/apache-datafu-incubating-1.3.0/">apache-datafu-incubating-1.3.0</a></li>
+</ul>
+
+<h3 id="validation">Validation</h3>
+
+<p>It is important to validate the release using either the PGP signature (<code>.asc</code> file) or hashes (<code>.md5</code> or <code>.sha512</code> files).  Information on validating a release can be found on the download page for the most recent release.  For more information on verification of Apache releases, see <a href="https://www.apache.org/info/verification.html">here</a>.</p>
+
+<p>As indicated on the download page, the KEYS file can be found on the backup mirrors <a href="http://www-us.apache.org/dist/incubator/datafu/KEYS">here</a> or <a href="http://www-eu.apache.org/dist/incubator/datafu/KEYS">here</a>.  The signature and hash files for the most recent release are available from the backup sites listed on the download page.  For archived releases, you will find the signature and hash files alongside the source archive.</p>
+
+<p>Once fetched, the the <code>KEYS</code> file can be imported and the <code>.asc</code> file can used to verify the release.</p>
+<pre class="highlight plaintext"><code>gpg --import KEYS
+gpg --verify apache-datafu-incubating-sources-1.3.3.tgz.asc apache-datafu-incubating-sources-1.3.3.tgz
+</code></pre>
+
+<p>The <code>md5sum</code> tool can be used to compute an MD5 hash that can be compared against the <code>.md5</code> file:</p>
+<pre class="highlight plaintext"><code>md5sum apache-datafu-incubating-sources-1.3.3.tgz
+cat apache-datafu-incubating-sources-1.3.3.tgz.md5
+</code></pre>
+
+<p>The <code>sha512sum</code> tool can be used to compute a SHA-512 hash that can be compared against the <code>.sha512</code> file:</p>
+<pre class="highlight plaintext"><code>sha512sum apache-datafu-incubating-sources-1.3.3.tgz
+cat apache-datafu-incubating-sources-1.3.3.tgz.md5
+</code></pre>
+
+<p>Note that the hashes are only intended to check that the file has been downloaded correctly.  They do not provide guarantees on the authenticity of the file.  The signature should instead be used for this purpose.  For more information see <a href="https://www.apache.org/info/verification.html">here</a>.</p>
+
+<h3 id="setup">Setup</h3>
+
+<p>Make sure you have <a href="http://gradle.org/gradle-download/">Gradle</a> installed.  Extract the source and bootstrap the <code>gradlew</code> script that&#39;s used for building.  The <code>gradlew</code> script uses the specific version of Gradle that DataFu is intended to be built with.</p>
+<pre class="highlight plaintext"><code>tar xvf apache-datafu-incubating-sources-1.3.3.tgz
+cd apache-datafu-incubating-sources-1.3.3
+gradle -b bootstrap.gradle
+</code></pre>
+
+<p>To build the JARs, run:</p>
+<pre class="highlight plaintext"><code>./gradlew assemble
+</code></pre>
+
+<p>This will produce JARs in the following directories:</p>
+
+<ul>
+<li><code>datafu-pig/build/libs</code></li>
+<li><code>datafu-hourglass/build/libs</code></li>
+</ul>
+
+<h2 id="local-maven-install">Local Maven Install</h2>
+
+<p>DataFu artifacts can be installed to your local maven repository like so:</p>
+<pre class="highlight plaintext"><code>./gradlew install
+</code></pre>
+
+<p>Assuming your local maven repository is at <code>~/.m2</code>, you should see the DataFu artifacts under <code>~/.m2/repository/org/apache/datafu/</code>.  You should now be able to declare a dependency on DataFu artifacts as shown below.</p>
+
+<h2 id="maven">Maven</h2>
+
+<p>The latest release can be found in <a href="https://repository.apache.org/content/groups/public/org/apache/datafu">Apache&#39;s Maven Repository for DataFu</a>:</p>
+
+<ul>
+<li><a href="https://repository.apache.org/content/groups/public/org/apache/datafu/datafu-pig-incubating/1.3.3/">datafu-pig-incubating-1.3.3</a></li>
+<li><a href="https://repository.apache.org/content/groups/public/org/apache/datafu/datafu-hourglass-incubating/1.3.3/">datafu-hourglass-incubating-1.3.3</a></li>
+</ul>
+
+<p>You can also use a dependency management system to download the DataFu artifacts and all their dependencies.</p>
+
+<p>Gradle:</p>
+<pre class="highlight groovy"><code><span class="n">compile</span> <span class="s2">"org.apache.datafu:datafu-pig-incubating:1.3.3"</span>
+<span class="n">compile</span> <span class="s2">"org.apache.datafu:datafu-hourglass-incubating:1.3.3"</span>
+</code></pre>
+
+<p>Ivy:</p>
+<pre class="highlight xml"><code><span class="nt">&lt;dependency</span> <span class="na">org=</span><span class="s">"org.apache.datafu"</span> <span class="na">name=</span><span class="s">"datafu-pig-incubating"</span> <span class="na">rev=</span><span class="s">"1.3.3"</span><span class="nt">/&gt;</span>
+<span class="nt">&lt;dependency</span> <span class="na">org=</span><span class="s">"org.apache.datafu"</span> <span class="na">name=</span><span class="s">"datafu-hourglass-incubating"</span> <span class="na">rev=</span><span class="s">"1.3.3"</span><span class="nt">/&gt;</span>
+</code></pre>
+
+<p>Maven:</p>
+<pre class="highlight xml"><code><span class="nt">&lt;dependency&gt;</span>
+  <span class="nt">&lt;groupId&gt;</span>org.apache.datafu<span class="nt">&lt;/groupId&gt;</span>
+  <span class="nt">&lt;artifactId&gt;</span>datafu-pig-incubating<span class="nt">&lt;/artifactId&gt;</span>
+  <span class="nt">&lt;version&gt;</span>1.3.3<span class="nt">&lt;/version&gt;</span>
+<span class="nt">&lt;/dependency&gt;</span>
+<span class="nt">&lt;dependency&gt;</span>
+  <span class="nt">&lt;groupId&gt;</span>org.apache.datafu<span class="nt">&lt;/groupId&gt;</span>
+  <span class="nt">&lt;artifactId&gt;</span>datafu-hourglass-incubating<span class="nt">&lt;/artifactId&gt;</span>
+  <span class="nt">&lt;version&gt;</span>1.3.3<span class="nt">&lt;/version&gt;</span>
+<span class="nt">&lt;/dependency&gt;</span>
+</code></pre>
+
+<h2 id="next-steps">Next Steps</h2>
+
+<p>See the following guides for next steps:</p>
+
+<ul>
+<li><a href="/docs/datafu/getting-started.html">Getting started with DataFu for Pig</a></li>
+<li><a href="/docs/hourglass/getting-started.html">Getting started with DataFu Hourglass</a></li>
+</ul>
+
+    </div>
+  </div>
+
+
+
+      
+<div class="footer">
+
+<div class="feather">
+<a href="http://www.apache.org/" target="_blank"><img src="/images/feather.png" alt="Apache Feather" title="Apache Feather"/></a>
+</div>
+
+<div class="copyright">
+  Copyright &copy; 2011-2018 The Apache Software Foundation, Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.<br>
+  Apache DataFu, DataFu, Apache Pig, Apache Hadoop, Hadoop, Apache, and the Apache feather logo are either registered trademarks or trademarks of the <a href="http://www.apache.org/">Apache Software Foundation</a> in the United States and other countries.
+</div>
+</div>
+
+    </div>
+
+  </body>
+</html>
\ No newline at end of file

Modified: incubator/datafu/site/docs/hourglass/concepts.html
URL: http://svn.apache.org/viewvc/incubator/datafu/site/docs/hourglass/concepts.html?rev=1822583&r1=1822582&r2=1822583&view=diff
==============================================================================
--- incubator/datafu/site/docs/hourglass/concepts.html (original)
+++ incubator/datafu/site/docs/hourglass/concepts.html Mon Jan 29 20:32:24 2018
@@ -37,7 +37,6 @@
 <div class="header">
 
   <ul class="nav nav-pills pull-right">
-    <li><a href="/">Home</a></li>
     <li><a href="/blog">Blog</a></li>
   </ul>
 
@@ -50,24 +49,33 @@
   <div class="row">
     <div class="col-md-3">
       
-<h4>Apache DataFu</h4>
+<h4>Getting Started</h4>
 <ul class="nav nav-pills nav-stacked">
-  <li><a href="/">Home</a></li>
-  <li><a href="/docs/quick-start.html">Quick Start</a></li>
+  <li><a href="/docs/download.html">Download</a></li>
+  <li><a href="/docs/datafu/getting-started.html">DataFu Pig</a></li>
+  <li><a href="/docs/hourglass/getting-started.html">DataFu Hourglass</a></li>
 </ul>
 
-<h4>Apache DataFu Pig</h4>
+<h4>DataFu Pig Docs</h4>
 <ul class="nav nav-pills nav-stacked">
-  <li><a href="/docs/datafu/getting-started.html">Getting Started</a></li>
+
   <li><a href="/docs/datafu/guide.html">Guide</a></li>
-  <li><a href="/docs/datafu/javadoc.html">Javadoc</a></li>
+  <li><a href="http://datafu.incubator.apache.org/docs/datafu/1.3.3/">Javadocs</a></li>
 </ul>
 
-<h4>Apache DataFu Hourglass</h4>
+<h4>DataFu Hourglass Docs</h4>
 <ul class="nav nav-pills nav-stacked">
-  <li><a href="/docs/hourglass/getting-started.html">Getting Started</a></li>
+
   <li><a href="/docs/hourglass/concepts.html">Concepts</a></li>
-  <li><a href="/docs/hourglass/javadoc.html">Javadoc</a></li>
+  <li><a href="http://datafu.incubator.apache.org/docs/hourglass/1.3.3/">Javadocs</a></li>
+</ul>
+
+<h4>Community</h4>
+<ul class="nav nav-pills nav-stacked">
+  <li><a href="/community/mailing-lists.html">Mailing Lists</a></li>
+  <li><a href="/community/contributing.html">Contributing</a></li>
+  <li><a href="/community/issues.html">Issues</a></li>
+  <li><a href="https://cwiki.apache.org/confluence/display/DATAFU/DataFu+Home">Wiki</a></li>
 </ul>
 
 <h4>Apache Software Foundation</h4>
@@ -78,13 +86,6 @@
   <li><a href="http://www.apache.org/security/" target="_blank">Security</a></li>
   <li><a href="http://www.apache.org/foundation/thanks.html" target="_blank">Thanks</a></li>
 </ul>
-
-<h4>Community</h4>
-<ul class="nav nav-pills nav-stacked">
-  <li><a href="/community/contributing.html">Contributing</a></li>
-  <li><a href="/community/issues.html">Issues</a></li>
-  <li><a href="/community/mailing-lists.html">Mailing Lists</a></li>
-</ul>
     </div>
     <div class="col-md-7">
       <h4 class="text-muted">Apache DataFu Hourglass</h4>
@@ -153,7 +154,7 @@
 </div>
 
 <div class="copyright">
-  Copyright &copy; 2011-2017 The Apache Software Foundation, Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.<br>
+  Copyright &copy; 2011-2018 The Apache Software Foundation, Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.<br>
   Apache DataFu, DataFu, Apache Pig, Apache Hadoop, Hadoop, Apache, and the Apache feather logo are either registered trademarks or trademarks of the <a href="http://www.apache.org/">Apache Software Foundation</a> in the United States and other countries.
 </div>
 </div>

Modified: incubator/datafu/site/docs/hourglass/getting-started.html
URL: http://svn.apache.org/viewvc/incubator/datafu/site/docs/hourglass/getting-started.html?rev=1822583&r1=1822582&r2=1822583&view=diff
==============================================================================
--- incubator/datafu/site/docs/hourglass/getting-started.html (original)
+++ incubator/datafu/site/docs/hourglass/getting-started.html Mon Jan 29 20:32:24 2018
@@ -11,7 +11,7 @@
 
 
     <!-- Use title if it's in the page YAML frontmatter -->
-    <title>Getting Started - Apache DataFu Hourglass</title>
+    <title>Apache DataFu Hourglass - Getting Started</title>
 
     <link href="/stylesheets/all.css" rel="stylesheet" /><link href="/stylesheets/highlight.css" rel="stylesheet" />
     <script src="/javascripts/all.js"></script>
@@ -37,7 +37,6 @@
 <div class="header">
 
   <ul class="nav nav-pills pull-right">
-    <li><a href="/">Home</a></li>
     <li><a href="/blog">Blog</a></li>
   </ul>
 
@@ -50,24 +49,33 @@
   <div class="row">
     <div class="col-md-3">
       
-<h4>Apache DataFu</h4>
+<h4>Getting Started</h4>
 <ul class="nav nav-pills nav-stacked">
-  <li><a href="/">Home</a></li>
-  <li><a href="/docs/quick-start.html">Quick Start</a></li>
+  <li><a href="/docs/download.html">Download</a></li>
+  <li><a href="/docs/datafu/getting-started.html">DataFu Pig</a></li>
+  <li><a href="/docs/hourglass/getting-started.html">DataFu Hourglass</a></li>
 </ul>
 
-<h4>Apache DataFu Pig</h4>
+<h4>DataFu Pig Docs</h4>
 <ul class="nav nav-pills nav-stacked">
-  <li><a href="/docs/datafu/getting-started.html">Getting Started</a></li>
+
   <li><a href="/docs/datafu/guide.html">Guide</a></li>
-  <li><a href="/docs/datafu/javadoc.html">Javadoc</a></li>
+  <li><a href="http://datafu.incubator.apache.org/docs/datafu/1.3.3/">Javadocs</a></li>
 </ul>
 
-<h4>Apache DataFu Hourglass</h4>
+<h4>DataFu Hourglass Docs</h4>
 <ul class="nav nav-pills nav-stacked">
-  <li><a href="/docs/hourglass/getting-started.html">Getting Started</a></li>
+
   <li><a href="/docs/hourglass/concepts.html">Concepts</a></li>
-  <li><a href="/docs/hourglass/javadoc.html">Javadoc</a></li>
+  <li><a href="http://datafu.incubator.apache.org/docs/hourglass/1.3.3/">Javadocs</a></li>
+</ul>
+
+<h4>Community</h4>
+<ul class="nav nav-pills nav-stacked">
+  <li><a href="/community/mailing-lists.html">Mailing Lists</a></li>
+  <li><a href="/community/contributing.html">Contributing</a></li>
+  <li><a href="/community/issues.html">Issues</a></li>
+  <li><a href="https://cwiki.apache.org/confluence/display/DATAFU/DataFu+Home">Wiki</a></li>
 </ul>
 
 <h4>Apache Software Foundation</h4>
@@ -78,17 +86,10 @@
   <li><a href="http://www.apache.org/security/" target="_blank">Security</a></li>
   <li><a href="http://www.apache.org/foundation/thanks.html" target="_blank">Thanks</a></li>
 </ul>
-
-<h4>Community</h4>
-<ul class="nav nav-pills nav-stacked">
-  <li><a href="/community/contributing.html">Contributing</a></li>
-  <li><a href="/community/issues.html">Issues</a></li>
-  <li><a href="/community/mailing-lists.html">Mailing Lists</a></li>
-</ul>
     </div>
     <div class="col-md-7">
-      <h4 class="text-muted">Apache DataFu Hourglass</h4>
-      <h1 id="getting-started">Getting Started</h1>
+      <h4 class="text-muted">Getting Started</h4>
+      <h1 id="datafu-hourglass">DataFu Hourglass</h1>
 
 <p>Hourglass is Apache DataFu&#39;s solution to incrementally processing data with Hadoop MapReduce.  It is designed to make computations over
 sliding windows more efficient.</p>
@@ -104,8 +105,7 @@ the computational resources required.</p
 It provides incremental jobs that abstract away the complexity of implementing a robust incremental solution, with the appropriate hooks
 so that developers can supply custom logic to perform the aggregation task.</p>
 
-<p>If you have not already checked out the code, please see: <a href="/docs/quick-start.html">Quick Start</a>.  There you&#39;ll also see how to declare a
-dependency on Hourglass in a project.</p>
+<p>The rest of this page assumes you already have a built JAR available.  If this is not the case, please see the <a href="/docs/download.html">Download</a> page.</p>
 
 <h2 id="examples">Examples</h2>
 
@@ -285,7 +285,7 @@ A more detailed explanation of how the j
 </div>
 
 <div class="copyright">
-  Copyright &copy; 2011-2017 The Apache Software Foundation, Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.<br>
+  Copyright &copy; 2011-2018 The Apache Software Foundation, Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.<br>
   Apache DataFu, DataFu, Apache Pig, Apache Hadoop, Hadoop, Apache, and the Apache feather logo are either registered trademarks or trademarks of the <a href="http://www.apache.org/">Apache Software Foundation</a> in the United States and other countries.
 </div>
 </div>

Modified: incubator/datafu/site/index.html
URL: http://svn.apache.org/viewvc/incubator/datafu/site/index.html?rev=1822583&r1=1822582&r2=1822583&view=diff
==============================================================================
--- incubator/datafu/site/index.html (original)
+++ incubator/datafu/site/index.html Mon Jan 29 20:32:24 2018
@@ -37,7 +37,6 @@
 <div class="header">
 
   <ul class="nav nav-pills pull-right">
-    <li><a href="/">Home</a></li>
     <li><a href="/blog">Blog</a></li>
   </ul>
 
@@ -50,24 +49,33 @@
   <div class="row">
     <div class="col-md-3">
       
-<h4>Apache DataFu</h4>
+<h4>Getting Started</h4>
 <ul class="nav nav-pills nav-stacked">
-  <li><a href="/">Home</a></li>
-  <li><a href="/docs/quick-start.html">Quick Start</a></li>
+  <li><a href="/docs/download.html">Download</a></li>
+  <li><a href="/docs/datafu/getting-started.html">DataFu Pig</a></li>
+  <li><a href="/docs/hourglass/getting-started.html">DataFu Hourglass</a></li>
 </ul>
 
-<h4>Apache DataFu Pig</h4>
+<h4>DataFu Pig Docs</h4>
 <ul class="nav nav-pills nav-stacked">
-  <li><a href="/docs/datafu/getting-started.html">Getting Started</a></li>
+
   <li><a href="/docs/datafu/guide.html">Guide</a></li>
-  <li><a href="/docs/datafu/javadoc.html">Javadoc</a></li>
+  <li><a href="http://datafu.incubator.apache.org/docs/datafu/1.3.3/">Javadocs</a></li>
 </ul>
 
-<h4>Apache DataFu Hourglass</h4>
+<h4>DataFu Hourglass Docs</h4>
 <ul class="nav nav-pills nav-stacked">
-  <li><a href="/docs/hourglass/getting-started.html">Getting Started</a></li>
+
   <li><a href="/docs/hourglass/concepts.html">Concepts</a></li>
-  <li><a href="/docs/hourglass/javadoc.html">Javadoc</a></li>
+  <li><a href="http://datafu.incubator.apache.org/docs/hourglass/1.3.3/">Javadocs</a></li>
+</ul>
+
+<h4>Community</h4>
+<ul class="nav nav-pills nav-stacked">
+  <li><a href="/community/mailing-lists.html">Mailing Lists</a></li>
+  <li><a href="/community/contributing.html">Contributing</a></li>
+  <li><a href="/community/issues.html">Issues</a></li>
+  <li><a href="https://cwiki.apache.org/confluence/display/DATAFU/DataFu+Home">Wiki</a></li>
 </ul>
 
 <h4>Apache Software Foundation</h4>
@@ -78,13 +86,6 @@
   <li><a href="http://www.apache.org/security/" target="_blank">Security</a></li>
   <li><a href="http://www.apache.org/foundation/thanks.html" target="_blank">Thanks</a></li>
 </ul>
-
-<h4>Community</h4>
-<ul class="nav nav-pills nav-stacked">
-  <li><a href="/community/contributing.html">Contributing</a></li>
-  <li><a href="/community/issues.html">Issues</a></li>
-  <li><a href="/community/mailing-lists.html">Mailing Lists</a></li>
-</ul>
     </div>
     <div class="col-md-7">
       
@@ -100,7 +101,7 @@ The project was inspired by the need for
 <li><strong>Apache DataFu Hourglass</strong>: an incremental processing framework for <a href="http://hadoop.apache.org/">Apache Hadoop</a> in MapReduce</li>
 </ul>
 
-<p>To begin using it, see our <a href="/docs/quick-start.html">Quick Start</a> guide.  If you&#39;d like to help contribute, see <a href="/community/contributing.html">Contributing</a>.</p>
+<p>To begin using it, see our <a href="/docs/download.html">Download</a> page.  If you&#39;d like to help contribute, see <a href="/community/contributing.html">Contributing</a>.</p>
 
 <h2 id="about-the-project">About the Project</h2>
 
@@ -151,7 +152,7 @@ at <a href="http://cci.drexel.edu/bigdat
 </div>
 
 <div class="copyright">
-  Copyright &copy; 2011-2017 The Apache Software Foundation, Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.<br>
+  Copyright &copy; 2011-2018 The Apache Software Foundation, Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.<br>
   Apache DataFu, DataFu, Apache Pig, Apache Hadoop, Hadoop, Apache, and the Apache feather logo are either registered trademarks or trademarks of the <a href="http://www.apache.org/">Apache Software Foundation</a> in the United States and other countries.
 </div>
 </div>

Modified: incubator/datafu/site/sitemap.xml
URL: http://svn.apache.org/viewvc/incubator/datafu/site/sitemap.xml?rev=1822583&r1=1822582&r2=1822583&view=diff
==============================================================================
--- incubator/datafu/site/sitemap.xml (original)
+++ incubator/datafu/site/sitemap.xml Mon Jan 29 20:32:24 2018
@@ -2,169 +2,163 @@
 <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
   <url>
     <loc>http://datafu.incubator.apache.org/blog/2012/01/10/introducing-datafu.html</loc>
-    <lastmod>2017-11-27T00:00:00-08:00</lastmod>
+    <lastmod>2018-01-29T00:00:00-08:00</lastmod>
     <changefreq>monthly</changefreq>
     <priority>0.5</priority>
   </url>
   <url>
     <loc>http://datafu.incubator.apache.org/blog/2013/01/24/datafu-the-wd-40-of-big-data.html</loc>
-    <lastmod>2017-11-27T00:00:00-08:00</lastmod>
+    <lastmod>2018-01-29T00:00:00-08:00</lastmod>
     <changefreq>monthly</changefreq>
     <priority>0.5</priority>
   </url>
   <url>
     <loc>http://datafu.incubator.apache.org/blog/2013/09/04/datafu-1-0.html</loc>
-    <lastmod>2017-11-27T00:00:00-08:00</lastmod>
+    <lastmod>2018-01-29T00:00:00-08:00</lastmod>
     <changefreq>monthly</changefreq>
     <priority>0.5</priority>
   </url>
   <url>
     <loc>http://datafu.incubator.apache.org/blog/2013/10/03/datafus-hourglass-incremental-data-processing-in-hadoop.html</loc>
-    <lastmod>2017-11-27T00:00:00-08:00</lastmod>
+    <lastmod>2018-01-29T00:00:00-08:00</lastmod>
     <changefreq>monthly</changefreq>
     <priority>0.5</priority>
   </url>
   <url>
     <loc>http://datafu.incubator.apache.org/blog/2014/04/27/datafu-at-apachecon.html</loc>
-    <lastmod>2017-11-27T00:00:00-08:00</lastmod>
+    <lastmod>2018-01-29T00:00:00-08:00</lastmod>
     <changefreq>monthly</changefreq>
     <priority>0.5</priority>
   </url>
   <url>
     <loc>http://datafu.incubator.apache.org/blog/2015/11/17/datafu-1-3-0-released.html</loc>
-    <lastmod>2017-11-27T00:00:00-08:00</lastmod>
+    <lastmod>2018-01-29T00:00:00-08:00</lastmod>
     <changefreq>monthly</changefreq>
     <priority>0.5</priority>
   </url>
   <url>
     <loc>http://datafu.incubator.apache.org/blog/2016/08/10/datafu-1-3-1-released.html</loc>
-    <lastmod>2017-11-27T00:00:00-08:00</lastmod>
+    <lastmod>2018-01-29T00:00:00-08:00</lastmod>
+    <changefreq>monthly</changefreq>
+    <priority>0.5</priority>
+  </url>
+  <url>
+    <loc>http://datafu.incubator.apache.org/blog/2017/03/10/datafu-1-3-2-released.html</loc>
+    <lastmod>2018-01-29T00:00:00-08:00</lastmod>
+    <changefreq>monthly</changefreq>
+    <priority>0.5</priority>
+  </url>
+  <url>
+    <loc>http://datafu.incubator.apache.org/blog/2018/01/26/datafu-1-3-3-released.html</loc>
+    <lastmod>2018-01-29T00:00:00-08:00</lastmod>
     <changefreq>monthly</changefreq>
     <priority>0.5</priority>
   </url>
   <url>
     <loc>http://datafu.incubator.apache.org/blog/index.html</loc>
-    <lastmod>2017-11-27T00:00:00-08:00</lastmod>
+    <lastmod>2018-01-29T00:00:00-08:00</lastmod>
     <changefreq>monthly</changefreq>
     <priority>0.5</priority>
   </url>
   <url>
     <loc>http://datafu.incubator.apache.org/community/contributing.html</loc>
-    <lastmod>2017-11-27T00:00:00-08:00</lastmod>
+    <lastmod>2018-01-29T00:00:00-08:00</lastmod>
     <changefreq>monthly</changefreq>
     <priority>0.5</priority>
   </url>
   <url>
     <loc>http://datafu.incubator.apache.org/community/issues.html</loc>
-    <lastmod>2017-11-27T00:00:00-08:00</lastmod>
+    <lastmod>2018-01-29T00:00:00-08:00</lastmod>
     <changefreq>monthly</changefreq>
     <priority>0.5</priority>
   </url>
   <url>
     <loc>http://datafu.incubator.apache.org/community/mailing-lists.html</loc>
-    <lastmod>2017-11-27T00:00:00-08:00</lastmod>
+    <lastmod>2018-01-29T00:00:00-08:00</lastmod>
     <changefreq>monthly</changefreq>
     <priority>0.5</priority>
   </url>
   <url>
     <loc>http://datafu.incubator.apache.org/docs/datafu/getting-started.html</loc>
-    <lastmod>2017-11-27T00:00:00-08:00</lastmod>
+    <lastmod>2018-01-29T00:00:00-08:00</lastmod>
     <changefreq>monthly</changefreq>
     <priority>0.5</priority>
   </url>
   <url>
     <loc>http://datafu.incubator.apache.org/docs/datafu/guide/bag-operations.html</loc>
-    <lastmod>2017-11-27T00:00:00-08:00</lastmod>
-    <changefreq>monthly</changefreq>
-    <priority>0.5</priority>
-  </url>
-  <url>
-    <loc>http://datafu.incubator.apache.org/docs/datafu/guide/estimation.html</loc>
-    <lastmod>2017-11-27T00:00:00-08:00</lastmod>
+    <lastmod>2018-01-29T00:00:00-08:00</lastmod>
     <changefreq>monthly</changefreq>
     <priority>0.5</priority>
   </url>
   <url>
     <loc>http://datafu.incubator.apache.org/docs/datafu/guide/hashing.html</loc>
-    <lastmod>2017-11-27T00:00:00-08:00</lastmod>
+    <lastmod>2018-01-29T00:00:00-08:00</lastmod>
     <changefreq>monthly</changefreq>
     <priority>0.5</priority>
   </url>
   <url>
     <loc>http://datafu.incubator.apache.org/docs/datafu/guide/link-analysis.html</loc>
-    <lastmod>2017-11-27T00:00:00-08:00</lastmod>
+    <lastmod>2018-01-29T00:00:00-08:00</lastmod>
     <changefreq>monthly</changefreq>
     <priority>0.5</priority>
   </url>
   <url>
     <loc>http://datafu.incubator.apache.org/docs/datafu/guide/more-tips-and-tricks.html</loc>
-    <lastmod>2017-11-27T00:00:00-08:00</lastmod>
+    <lastmod>2018-01-29T00:00:00-08:00</lastmod>
     <changefreq>monthly</changefreq>
     <priority>0.5</priority>
   </url>
   <url>
     <loc>http://datafu.incubator.apache.org/docs/datafu/guide/sampling.html</loc>
-    <lastmod>2017-11-27T00:00:00-08:00</lastmod>
+    <lastmod>2018-01-29T00:00:00-08:00</lastmod>
     <changefreq>monthly</changefreq>
     <priority>0.5</priority>
   </url>
   <url>
     <loc>http://datafu.incubator.apache.org/docs/datafu/guide/sessions.html</loc>
-    <lastmod>2017-11-27T00:00:00-08:00</lastmod>
+    <lastmod>2018-01-29T00:00:00-08:00</lastmod>
     <changefreq>monthly</changefreq>
     <priority>0.5</priority>
   </url>
   <url>
     <loc>http://datafu.incubator.apache.org/docs/datafu/guide/set-operations.html</loc>
-    <lastmod>2017-11-27T00:00:00-08:00</lastmod>
+    <lastmod>2018-01-29T00:00:00-08:00</lastmod>
     <changefreq>monthly</changefreq>
     <priority>0.5</priority>
   </url>
   <url>
     <loc>http://datafu.incubator.apache.org/docs/datafu/guide/statistics.html</loc>
-    <lastmod>2017-11-27T00:00:00-08:00</lastmod>
+    <lastmod>2018-01-29T00:00:00-08:00</lastmod>
     <changefreq>monthly</changefreq>
     <priority>0.5</priority>
   </url>
   <url>
     <loc>http://datafu.incubator.apache.org/docs/datafu/guide.html</loc>
-    <lastmod>2017-11-27T00:00:00-08:00</lastmod>
+    <lastmod>2018-01-29T00:00:00-08:00</lastmod>
     <changefreq>monthly</changefreq>
     <priority>0.5</priority>
   </url>
   <url>
-    <loc>http://datafu.incubator.apache.org/docs/datafu/javadoc.html</loc>
-    <lastmod>2017-11-27T00:00:00-08:00</lastmod>
+    <loc>http://datafu.incubator.apache.org/docs/download.html</loc>
+    <lastmod>2018-01-29T00:00:00-08:00</lastmod>
     <changefreq>monthly</changefreq>
     <priority>0.5</priority>
   </url>
   <url>
     <loc>http://datafu.incubator.apache.org/docs/hourglass/concepts.html</loc>
-    <lastmod>2017-11-27T00:00:00-08:00</lastmod>
+    <lastmod>2018-01-29T00:00:00-08:00</lastmod>
     <changefreq>monthly</changefreq>
     <priority>0.5</priority>
   </url>
   <url>
     <loc>http://datafu.incubator.apache.org/docs/hourglass/getting-started.html</loc>
-    <lastmod>2017-11-27T00:00:00-08:00</lastmod>
-    <changefreq>monthly</changefreq>
-    <priority>0.5</priority>
-  </url>
-  <url>
-    <loc>http://datafu.incubator.apache.org/docs/hourglass/javadoc.html</loc>
-    <lastmod>2017-11-27T00:00:00-08:00</lastmod>
-    <changefreq>monthly</changefreq>
-    <priority>0.5</priority>
-  </url>
-  <url>
-    <loc>http://datafu.incubator.apache.org/docs/quick-start.html</loc>
-    <lastmod>2017-11-27T00:00:00-08:00</lastmod>
+    <lastmod>2018-01-29T00:00:00-08:00</lastmod>
     <changefreq>monthly</changefreq>
     <priority>0.5</priority>
   </url>
   <url>
     <loc>http://datafu.incubator.apache.org/index.html</loc>
-    <lastmod>2017-11-27T00:00:00-08:00</lastmod>
+    <lastmod>2018-01-29T00:00:00-08:00</lastmod>
     <changefreq>monthly</changefreq>
     <priority>0.5</priority>
   </url>