This is an automated email from the ASF dual-hosted git repository.

cjmctague pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/fluo-website.git


The following commit(s) were added to refs/heads/asf-site by this push:
     new 245eeb1  Jekyll build from gh-pages:ec0c030
245eeb1 is described below

commit 245eeb1a711c5426b30b763dc530d87c0005fae6
Author: Christopher McTague <[email protected]>
AuthorDate: Mon Sep 17 15:21:33 2018 -0400

    Jekyll build from gh-pages:ec0c030
    
    Add remaining projects to Contribute page (#165)
    
    - Clean up people page.
    - Update Contact page.
    - Update project links.
---
 blog/2016/12/22/spark-load/index.html            |  2 +-
 contactus/index.html                             |  8 +++++++-
 docs/fluo-recipes/1.2/recipes/combine-queue.html |  2 +-
 docs/fluo-recipes/1.2/recipes/row-hasher.html    |  2 +-
 docs/fluo/1.2/administration/initialize.html     |  2 +-
 feed.xml                                         |  6 +++---
 how-to-contribute/index.html                     | 19 +++++++++++++++++--
 people/index.html                                |  6 +++---
 poweredby/index.html                             |  6 +++---
 related-projects/index.html                      | 10 +++++-----
 release-process/index.html                       | 14 +++++++-------
 tour/exercise-1/index.html                       |  2 +-
 12 files changed, 50 insertions(+), 29 deletions(-)

diff --git a/blog/2016/12/22/spark-load/index.html 
b/blog/2016/12/22/spark-load/index.html
index b7a0141..c9fc980 100644
--- a/blog/2016/12/22/spark-load/index.html
+++ b/blog/2016/12/22/spark-load/index.html
@@ -193,7 +193,7 @@ into Accumulo.  The <a 
href="https://javadoc.io/page/org.apache.fluo/fluo-recipe
   <li>Bulk import the RFiles into the Fluo table</li>
 </ul>
 
-<p>The <a href="https://github.com/astralway/webindex";>Webindex</a> example 
uses bulk load to initialize its Fluo table using the code in Fluo Recipes.
+<p>The <a 
href="https://github.com/apache/fluo-examples/tree/master/webindex";>Webindex</a>
 example uses bulk load to initialize its Fluo table using the code in Fluo 
Recipes.
 Webindex uses multiple <a 
href="/docs/fluo-recipes/1.0.0-incubating/cfm/">Collision Free Maps</a> and 
initializes them using
 <a 
href="https://javadoc.io/page/org.apache.fluo/fluo-recipes-core/1.2.0/org/apache/fluo/recipes/core/map/CollisionFreeMap.html#getInitializer-java.lang.String-int-org.apache.fluo.recipes.core.serialization.SimpleSerializer-";>CollisionFreeMap.getInitializer()</a>.
  Webindex uses Spark to initialize the Fluo table with
 historical data.  Webindex also uses Spark to execute load transactions in 
parallel for
diff --git a/contactus/index.html b/contactus/index.html
index ba214af..0f1252e 100644
--- a/contactus/index.html
+++ b/contactus/index.html
@@ -170,7 +170,13 @@ current issues.</p>
 <ul>
   <li><a href="https://github.com/apache/fluo/issues";>Fluo issues</a></li>
   <li><a href="https://github.com/apache/fluo-recipes/issues";>Fluo Recipes 
issues</a></li>
-  <li><a href="https://github.com/apache/fluo-website/issues";>Website 
issues</a></li>
+  <li><a href="https://github.com/apache/fluo-website/issues";>Fluo Website 
issues</a></li>
+  <li><a href="https://github.com/apache/fluo-yarn/issues";>Fluo Yarn 
issues</a></li>
+  <li><a href="https://github.com/apache/fluo-docker/issues";>Fluo Docker 
issues</a></li>
+  <li><a href="https://github.com/apache/fluo-bytes/issues";>Fluo Bytes 
issues</a></li>
+  <li><a href="https://github.com/apache/fluo-uno/issues";>Fluo Uno 
issues</a></li>
+  <li><a href="https://github.com/apache/fluo-muchos/issues";>Fluo Mucho 
issues</a></li>
+  <li><a href="https://github.com/apache/fluo-examples/issues";>Fluo Examples 
issues</a></li>
 </ul>
 
 <h3 id="irc">IRC</h3>
diff --git a/docs/fluo-recipes/1.2/recipes/combine-queue.html 
b/docs/fluo-recipes/1.2/recipes/combine-queue.html
index ccef42d..5d23afd 100644
--- a/docs/fluo-recipes/1.2/recipes/combine-queue.html
+++ b/docs/fluo-recipes/1.2/recipes/combine-queue.html
@@ -229,7 +229,7 @@
     <h2 id="background">Background</h2>
 
 <p>When many transactions try to modify the same keys, collisions will occur.  
Too many collisions
-cause transactions to fail and throughput to nose dive.  For example, consider 
<a href="https://github.com/astralway/phrasecount";>phrasecount</a>
+cause transactions to fail and throughput to nose dive.  For example, consider 
<a 
href="https://github.com/apache/fluo-examples/tree/master/phrasecount";>phrasecount</a>
 which has many transactions processing documents.  Each transaction counts the 
phrases in a document
 and then updates global phrase counts.  Since transaction attempts to update 
many phrases
 , the probability of collisions is high.</p>
diff --git a/docs/fluo-recipes/1.2/recipes/row-hasher.html 
b/docs/fluo-recipes/1.2/recipes/row-hasher.html
index b9d5d1f..7fdfd2d 100644
--- a/docs/fluo-recipes/1.2/recipes/row-hasher.html
+++ b/docs/fluo-recipes/1.2/recipes/row-hasher.html
@@ -234,7 +234,7 @@ evenly, it can cause some tservers to execute more 
conditional mutations than
 others.  These tservers doing more work can become a bottleneck.  Most real
 world data is not uniform and can cause this problem.</p>
 
-<p>Before the Fluo <a href="https://github.com/astralway/webindex";>Webindex 
example</a> started using this recipe it suffered
+<p>Before the Fluo <a 
href="https://github.com/apache/fluo-examples/tree/master/webindex";>Webindex 
example</a> started using this recipe it suffered
 from this problem.  The example was using reverse dns encoded URLs for row keys
 like <code class="highlighter-rouge">p:com.cnn/story1.html</code>.  This made 
certain portions of the table more
 popular, which in turn made some tservers do much more work.  This uneven
diff --git a/docs/fluo/1.2/administration/initialize.html 
b/docs/fluo/1.2/administration/initialize.html
index 99ed89f..3545457 100644
--- a/docs/fluo/1.2/administration/initialize.html
+++ b/docs/fluo/1.2/administration/initialize.html
@@ -260,7 +260,7 @@ initialize an application using Fluo’s <a 
href="https://static.javadoc.io/org.
     </ul>
 
     <p>When configuring the observer section of fluo-app.properties, you can 
configure your instance for the
-<a href="https://github.com/astralway/phrasecount";>phrasecount</a> application 
if you have not created your own application. See the <a 
href="https://github.com/astralway/phrasecount";>phrasecount</a>
+<a 
href="https://github.com/apache/fluo-examples/tree/master/phrasecount";>phrasecount</a>
 application if you have not created your own application. See the <a 
href="https://github.com/apache/fluo-examples/tree/master/phrasecount";>phrasecount</a>
 example for instructions. You can also choose not to configure any observers 
but your workers will
 be idle when started.</p>
   </li>
diff --git a/feed.xml b/feed.xml
index 37cd28f..cba7909 100644
--- a/feed.xml
+++ b/feed.xml
@@ -5,8 +5,8 @@
     <description>Apache Fluo Website</description>
     <link>https://fluo.apache.org//</link>
     <atom:link href="https://fluo.apache.org//feed.xml"; rel="self" 
type="application/rss+xml" />
-    <pubDate>Wed, 29 Aug 2018 14:31:58 +0000</pubDate>
-    <lastBuildDate>Wed, 29 Aug 2018 14:31:58 +0000</lastBuildDate>
+    <pubDate>Mon, 17 Sep 2018 19:21:25 +0000</pubDate>
+    <lastBuildDate>Mon, 17 Sep 2018 19:21:25 +0000</lastBuildDate>
     <generator>Jekyll v3.7.3</generator>
     
     
@@ -859,7 +859,7 @@ into Accumulo.  The &lt;a 
href=&quot;https://javadoc.io/page/org.apache.fluo/flu
   &lt;li&gt;Bulk import the RFiles into the Fluo table&lt;/li&gt;
 &lt;/ul&gt;
 
-&lt;p&gt;The &lt;a 
href=&quot;https://github.com/astralway/webindex&quot;&gt;Webindex&lt;/a&gt; 
example uses bulk load to initialize its Fluo table using the code in Fluo 
Recipes.
+&lt;p&gt;The &lt;a 
href=&quot;https://github.com/apache/fluo-examples/tree/master/webindex&quot;&gt;Webindex&lt;/a&gt;
 example uses bulk load to initialize its Fluo table using the code in Fluo 
Recipes.
 Webindex uses multiple &lt;a 
href=&quot;/docs/fluo-recipes/1.0.0-incubating/cfm/&quot;&gt;Collision Free 
Maps&lt;/a&gt; and initializes them using
 &lt;a 
href=&quot;https://javadoc.io/page/org.apache.fluo/fluo-recipes-core/1.2.0/org/apache/fluo/recipes/core/map/CollisionFreeMap.html#getInitializer-java.lang.String-int-org.apache.fluo.recipes.core.serialization.SimpleSerializer-&quot;&gt;CollisionFreeMap.getInitializer()&lt;/a&gt;.
  Webindex uses Spark to initialize the Fluo table with
 historical data.  Webindex also uses Spark to execute load transactions in 
parallel for
diff --git a/how-to-contribute/index.html b/how-to-contribute/index.html
index 0030bb9..f9c1c2b 100644
--- a/how-to-contribute/index.html
+++ b/how-to-contribute/index.html
@@ -120,7 +120,7 @@
 <a 
href="https://www.apache.org/foundation/glossary.html#ReviewThenCommit";>review-then-commit</a>
 process.  This means all contributions must pass any integration tests and
 be reviewed before being committed. Code reviews are done by commenting on a 
GitHub pull request.
 If you would like to contribute, but are not sure where to start then <a 
href="/contactus/">contact us</a> and/or look
-at issues marked <a 
href="https://github.com/search?utf8=%E2%9C%93&amp;q=repo%3Aapache%2Ffluo+repo%3Aapache%2Ffluo-recipes+repo%3Aapache%2Ffluo-bytes+repo%3Aapache%2Ffluo-website+repo%3Aapache%2Ffluo-yarn+repo%3Aapache%2Ffluo-docker+label%3A%22help+wanted%22+type%3Aissue+state%3Aopen&amp;type=Issues";>helpwanted</a>.
  Fluo committers will follow the <a 
href="https://www.apache.org/foundation/policies/conduct.html";>Apache Code of 
Conduct</a> when
+at issues marked <a 
href="https://github.com/search?q=repo%3Aapache%2Ffluo+repo%3Aapache%2Ffluo-recipes+repo%3Aapache%2Ffluo-bytes+repo%3Aapache%2Ffluo-website+repo%3Aapache%2Ffluo-yarn+repo%3Aapache%2Ffluo-docker+repo%3Aapache%2Ffluo-uno+repo%3Aapache%2Ffluo-muchos+repo%3Aapache%2Ffluo-examples+label%3A%22help+wanted%22+type%3Aissue+state%3Aopen&amp;type=Issues";>helpwanted</a>.
  Fluo committers will follow the <a 
href="https://www.apache.org/foundation/policies/conduct.html";>Apache Code [...]
 corresponding with a contributor.  We respectfully ask all contributors to 
follow this code of
 conduct also.</p>
 
@@ -157,7 +157,7 @@ specifically for it. For the links columns below, <code 
class="highlighter-rouge
     <tr>
       <td><a href="https://github.com/apache/fluo-yarn";>Fluo Yarn</a></td>
       <td><a href="https://github.com/apache/fluo-yarn/issues";>I</a> <a 
href="https://github.com/apache/fluo-yarn/blob/master/CONTRIBUTING.md";>C</a></td>
-      <td>Enables launching Fluo using YARN</td>
+      <td>Enables launching Fluo using YARN.</td>
     </tr>
     <tr>
       <td><a href="https://github.com/apache/fluo-docker";>Fluo Docker</a></td>
@@ -169,6 +169,21 @@ specifically for it. For the links columns below, <code 
class="highlighter-rouge
       <td><a href="https://github.com/apache/fluo-bytes/issues";>I</a> <a 
href="https://github.com/apache/fluo-bytes/blob/master/CONTRIBUTING.md";>C</a></td>
       <td>An immutable Byte wrapper for Java suitable for use in APIs.</td>
     </tr>
+    <tr>
+      <td><a href="https://github.com/apache/fluo-uno";>Fluo Uno</a></td>
+      <td><a href="https://github.com/apache/fluo-uno/issues";>I</a></td>
+      <td>Uno automates setting up Apache Accumulo or Apache Fluo (and their 
dependencies) on a single machine.</td>
+    </tr>
+    <tr>
+      <td><a href="https://github.com/apache/fluo-muchos";>Fluo Muchos</a></td>
+      <td><a href="https://github.com/apache/fluo-muchos/issues";>I</a></td>
+      <td>Muchos automates setting up Apache Accumulo or Apache Fluo (and 
their dependencies) on a cluster.</td>
+    </tr>
+    <tr>
+      <td><a href="https://github.com/apache/fluo-examples";>Fluo 
Examples</a></td>
+      <td><a href="https://github.com/apache/fluo-examples/issues";>I</a></td>
+      <td>Collection of example projects that utilizes Apache Fluo.</td>
+    </tr>
   </tbody>
 </table>
 
diff --git a/people/index.html b/people/index.html
index 26f37ef..f1b6fe0 100644
--- a/people/index.html
+++ b/people/index.html
@@ -141,7 +141,7 @@
     </tr>
     <tr>
       <td><a href="https://github.com/cjmctague";>Christopher McTague</a></td>
-      <td><a href="http://www.ptech-llc.com/";>Peterson Technologies</a></td>
+      <td><a href="https://www.ptech-llc.com/";>Peterson Technologies</a></td>
       <td><a href="https://www.timeanddate.com/time/zones/et";>ET</a></td>
     </tr>
     <tr>
@@ -161,7 +161,7 @@
     </tr>
     <tr>
       <td><a href="https://github.com/keith-turner";>Keith Turner</a></td>
-      <td><a href="http://www.ptech-llc.com/";>Peterson Technologies</a></td>
+      <td><a href="https://www.ptech-llc.com/";>Peterson Technologies</a></td>
       <td><a href="https://www.timeanddate.com/time/zones/et";>ET</a></td>
     </tr>
     <tr>
@@ -171,7 +171,7 @@
     </tr>
     <tr>
       <td><a href="https://github.com/mikewalch";>Mike Walch</a></td>
-      <td><a href="http://www.ptech-llc.com/";>Peterson Technologies</a></td>
+      <td><a href="https://www.ptech-llc.com/";>Peterson Technologies</a></td>
       <td><a href="https://www.timeanddate.com/time/zones/et";>ET</a></td>
     </tr>
   </tbody>
diff --git a/poweredby/index.html b/poweredby/index.html
index 4f44cfb..561ba7e 100644
--- a/poweredby/index.html
+++ b/poweredby/index.html
@@ -126,8 +126,8 @@
   <li><a href="https://maven.apache.org/";>Apache Maven</a></li>
   <li><a href="https://twill.apache.org/";>Apache Twill</a></li>
   <li><a href="https://zookeeper.apache.org/";>Apache Zookeeper</a></li>
-  <li><a href="http://dropwizard.github.io/metrics/3.1.0/";>Dropwizard 
Metrics</a></li>
-  <li><a href="http://junit.org/";>Junit</a></li>
+  <li><a href="https://metrics.dropwizard.io/3.1.0/";>Dropwizard 
Metrics</a></li>
+  <li><a href="https://junit.org/";>Junit</a></li>
   <li><a href="https://github.com/google/guava";>Guava</a></li>
   <li><a href="https://github.com/EsotericSoftware/kryo";>Kryo</a></li>
   <li><a href="https://www.slf4j.org/";>slf4j</a></li>
@@ -138,7 +138,7 @@
 
 <ul>
   <li><a href="https://getbootstrap.com/";>Bootstrap</a></li>
-  <li><a href="http://fontawesome.io/";>Font Awesome</a></li>
+  <li><a href="https://fontawesome.com/";>Font Awesome</a></li>
   <li><a href="https://jekyllrb.com/";>Jekyll</a></li>
   <li><a href="https://jquery.com/";>JQuery</a></li>
   <li><a href="https://bootswatch.com/";>Bootswatch</a></li>
diff --git a/related-projects/index.html b/related-projects/index.html
index 7d38cfc..3451242 100644
--- a/related-projects/index.html
+++ b/related-projects/index.html
@@ -130,18 +130,18 @@ list, please open an issue or submit a pull request <a 
href="https://github.com/
 <h3 id="tools-for-running-apache-fluo">Tools for running Apache Fluo</h3>
 
 <ul>
-  <li><a href="https://github.com/astralway/uno";>Uno</a> - Runs Apache 
Hadoop+Zookeeper+Accumulo+Fluo on a single machine for development and 
testing.</li>
-  <li><a href="https://github.com/astralway/muchos";>Muchos</a> - Deploys 
Apache Hadoop+Zookeeper+Accumulo+Fluo to a cluster (optionally launched in 
Amazon EC2) for development and testing.</li>
+  <li><a href="https://github.com/apache/fluo-uno";>Uno</a> - Runs Apache 
Hadoop+Zookeeper+Accumulo+Fluo on a single machine for development and 
testing.</li>
+  <li><a href="https://github.com/apache/fluo-muchos";>Muchos</a> - Deploys 
Apache Hadoop+Zookeeper+Accumulo+Fluo to a cluster (optionally launched in 
Amazon EC2) for development and testing.</li>
 </ul>
 
 <h3 id="example-fluo-applications">Example Fluo applications</h3>
 
 <ul>
-  <li><a href="https://github.com/astralway/phrasecount";>Phrasecount</a> - 
Example Apache Fluo application that counts phrases in documents</li>
+  <li><a 
href="https://github.com/apache/fluo-examples/tree/master/phrasecount";>Phrasecount</a>
 - Example Apache Fluo application that counts phrases in documents</li>
   <li><a href="https://github.com/keith-turner/mixer";>Mixer</a> - Prototype 
showing how to use Apache Fluo to continuously merge multiple large graphs into 
a single derived one.</li>
   <li><a href="https://github.com/keith-turner/jaccard";>Jaccard</a> - Example 
Apache Fluo application that computes and indexes the Jaccard between all pairs 
in a bipartite graph.</li>
-  <li><a href="https://github.com/astralway/webindex";>Webindex</a> - Apache 
Fluo application that creates web index using Common Crawl data</li>
-  <li><a href="https://github.com/astralway/stresso";>Stresso</a> - An example 
application designed to stress Apache Fluo</li>
+  <li><a 
href="https://github.com/apache/fluo-examples/tree/master/webindex";>Webindex</a>
 - Apache Fluo application that creates web index using Common Crawl data</li>
+  <li><a 
href="https://github.com/apache/fluo-examples/tree/master/stresso";>Stresso</a> 
- An example application designed to stress Apache Fluo</li>
 </ul>
 
 
diff --git a/release-process/index.html b/release-process/index.html
index c824bdf..1723c98 100644
--- a/release-process/index.html
+++ b/release-process/index.html
@@ -326,11 +326,11 @@ hashes and signatures.  This step publishes the files to 
the ASF mirrors.</p>
   <li>Run the integration test
     <div class="language-shell highlighter-rouge"><div class="highlight"><pre 
class="highlight"><code> <span class="nv">$ </span>mvn clean verify <span 
class="nt">-Dfluo</span>.version<span class="o">=</span><span 
class="nv">$RC_VERSION</span>
 </code></pre></div>    </div>
-    <p>Below are more projects with integration tests:</p>
+    <p>Below are more projects with integration tests which can be found at - 
<code 
class="highlighter-rouge">https://github.com/apache/fluo-examples.git</code>:</p>
     <ul>
-      <li><a href="https://github.com/astralway/phrasecount";>Phrasecount</a> - 
<code 
class="highlighter-rouge">https://github.com/astralway/phrasecount.git</code></li>
-      <li><a href="https://github.com/astralway/stresso";>Stresso</a> - <code 
class="highlighter-rouge">https://github.com/astralway/stresso.git</code></li>
-      <li><a href="https://github.com/astralway/webindex";>Webindex</a> - <code 
class="highlighter-rouge">https://github.com/astralway/webindex.git</code></li>
+      <li><a 
href="https://github.com/apache/fluo-examples/tree/master/phrasecount";>Phrasecount</a></li>
+      <li><a 
href="https://github.com/apache/fluo-examples/tree/master/stresso";>Stresso</a></li>
+      <li><a 
href="https://github.com/apache/fluo-examples/tree/master/webindex";>Webindex</a></li>
     </ul>
   </li>
 </ol>
@@ -338,8 +338,8 @@ hashes and signatures.  This step publishes the files to 
the ASF mirrors.</p>
 <h4 id="setup-uno-to-run-fluo-example-applications">Setup Uno to run Fluo 
example applications</h4>
 
 <ol>
-  <li>Clone <a href="https://github.com/astralway/uno";>Uno</a> and fetch Fluo 
dependencies
-    <div class="language-shell highlighter-rouge"><div class="highlight"><pre 
class="highlight"><code>git clone https://github.com/astralway/uno.git
+  <li>Clone <a href="https://github.com/apache/fluo-uno";>Uno</a> and fetch 
Fluo dependencies
+    <div class="language-shell highlighter-rouge"><div class="highlight"><pre 
class="highlight"><code>git clone https://github.com/apache/fluo-uno.git
 <span class="nb">cd </span>uno
 ./bin/uno fetch fluo
 </code></pre></div>    </div>
@@ -364,7 +364,7 @@ sed <span class="nt">-i</span> <span class="s2">"s/export 
FLUO_HASH=[^ ]*/export
 
 <ol>
   <li>Clone project
-    <div class="language-shell highlighter-rouge"><div class="highlight"><pre 
class="highlight"><code>git clone https://github.com/astralway/phrasecount.git
+    <div class="language-shell highlighter-rouge"><div class="highlight"><pre 
class="highlight"><code>git clone https://github.com/apache/fluo-examples.git
 <span class="nb">cd </span>phrasecount
 </code></pre></div>    </div>
   </li>
diff --git a/tour/exercise-1/index.html b/tour/exercise-1/index.html
index 6ec24f0..efdb1e3 100644
--- a/tour/exercise-1/index.html
+++ b/tour/exercise-1/index.html
@@ -644,7 +644,7 @@ CombineQueue bucket and each bucket is processed 
independently.</p>
 
 <p>Everything in the tour so far has used MiniFluo to run code.  The following
 instructions show how to run the code in this exercise on a real Fluo
-instance.  <a href="https://github.com/astralway/uno";>Uno</a> can be used to 
quickly setup Fluo on a single node.</p>
+instance.  <a href="https://github.com/apache/fluo-uno";>Uno</a> can be used to 
quickly setup Fluo on a single node.</p>
 
 <p>The following two helper classes will be needed to run on a real 
instance.</p>
 

Reply via email to