http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/c79201c1/releasing.html
----------------------------------------------------------------------
diff --git a/releasing.html b/releasing.html
index c2fe8f3..2ffd6e3 100644
--- a/releasing.html
+++ b/releasing.html
@@ -165,12 +165,24 @@
       <li><a href="#create-the-candidate-release-artifacts">Create the 
Candidate Release Artifacts</a></li>
       <li><a href="#validate-the-release-candidate">Validate the Release 
Candidate</a></li>
       <li><a href="#close-the-staging-repository">Close the Staging 
Repository</a></li>
+      <li><a 
href="#copy-artifacts-to-the-apache-distribution-dev-repository">Copy Artifacts 
to the Apache Distribution Dev Repository</a></li>
       <li><a href="#how-to-roll-back-a-release-candidate">How to Roll Back a 
Release Candidate</a></li>
       <li><a href="#generate-the-release-notes">Generate the Release 
Notes</a></li>
     </ul>
   </li>
-  <li><a href="#vote-on-the-release">Vote on the Release</a></li>
-  <li><a href="#publish-the-release">Publish the Release</a></li>
+  <li><a href="#vote-on-the-release">Vote on the Release</a>
+    <ul>
+      <li><a href="#apache-pirk-community-vote">Apache Pirk Community 
Vote</a></li>
+      <li><a href="#incubator-pmc-vote">Incubator PMC Vote</a></li>
+    </ul>
+  </li>
+  <li><a href="#publish-the-release">Publish the Release</a>
+    <ul>
+      <li><a href="#publish-the-maven-artifacts">Publish the Maven 
Artifacts</a></li>
+      <li><a 
href="#publish-the-artifacts-to-the-apache-release-repository">Publish the 
Artifacts to the Apache Release Repository</a></li>
+    </ul>
+  </li>
+  <li><a href="#announce-the-release">Announce the Release</a></li>
   <li><a href="#update-the-website">Update the Website</a></li>
 </ol>
 
@@ -210,6 +222,9 @@
                &lt;mavenExecutorId&gt;forked-path&lt;/mavenExecutorId&gt;
                &lt;gpg.keyname&gt;yourKeyName&lt;/gpg.keyname&gt;
                &lt;gpg.passphrase&gt;yourKeyPassword&lt;/gpg.passphrase&gt;
+               
&lt;deploy.altRepository&gt;incubator-pirk.releases::default::https://dist.apache.org/repos/dist/dev/incubator/pirk/&lt;/deploy.altRepository&gt;
+           &lt;username&gt;yourApacheID&lt;/username&gt;
+           
&lt;deploy.url&gt;https://dist.apache.org/repos/dist/dev/incubator/pirk/&lt;/deploy.url&gt;
            &lt;/properties&gt;
        &lt;/profile&gt;
  &lt;/profiles&gt;
@@ -309,17 +324,43 @@
 
 <p>Nexus will now run through a series of checksum and signature 
validations.</p>
 
-<p><em>If the checks pass</em>, Nexus will close the repository and give a URL 
to the closed staging repo (which contains the candidate artifacts). Send this 
URL to folks in the voting email so that they can find the staged candidate 
release artifacts.</p>
+<p><em>If the checks pass</em>, Nexus will close the repository and give a URL 
to the closed staging repo (which contains the candidate artifacts). Include 
this URL in the voting email so that folks can find the staged candidate 
release artifacts. Move on to <a 
href="#copy-artifacts-to-the-apache-distribution-dev-repository">copy the 
artifacts via svn to the Apache distribution dev repository</a>.</p>
 
 <p><em>If the checks do not pass</em>, follow the instructions on how to <a 
href="#how-to-roll-back-a-release-candidate">roll back the release 
candidate</a>, fix the issues, and start over with <a 
href="#create-the-candidate-release-artifacts">creating the candidate 
artifacts</a>.</p>
 
+<h3 id="copy-artifacts-to-the-apache-distribution-dev-repository">Copy 
Artifacts to the Apache Distribution Dev-Repository</h3>
+
+<p>Via svn, copy the candidate release artifacts to <a 
href="https://dist.apache.org/repos/dist/dev/incubator/pirk/";>https://dist.apache.org/repos/dist/dev/incubator/pirk/</a></p>
+
+<div class="highlighter-rouge"><pre class="highlight"><code>svn checkout 
https://dist.apache.org/repos/dist/dev/incubator/pirk/ --username=&lt;your user 
name&gt;
+
+mkdir pirk/&lt;release version&gt;
+
+copy the release artifacts into the new directory
+
+svn add &lt;release version directory&gt;
+
+svn commit -m 'adding candidate release artifacts' --username=&lt;your user 
name&gt;
+</code></pre>
+</div>
+
 <h3 id="how-to-roll-back-a-release-candidate">How to Roll Back a Release 
Candidate</h3>
 
-<p>A release candidate must be rolled back in Nexus and locally.</p>
+<p>A release candidate must be rolled back in Nexus, the Apache dist/dev repo, 
and locally.</p>
 
 <p>To roll back the release candidate in Nexus, drop the staging repo by 
clicking the ‘Drop’ icon.</p>
 
-<p>To roll back the release locally in your candidate relesae branch:</p>
+<p>To roll back the release candidate in <a 
href="https://dist.apache.org/repos/dist/dev/incubator/pirk/";>https://dist.apache.org/repos/dist/dev/incubator/pirk/</a>:</p>
+
+<div class="highlighter-rouge"><pre class="highlight"><code>svn checkout 
https://dist.apache.org/repos/dist/dev/incubator/pirk/&lt;release version&gt; 
--username=&lt;your user name&gt;
+
+svn delete &lt;release version directory&gt;
+
+svn commit -m 'delete candidate release artifacts' --username=&lt;your user 
name&gt;
+</code></pre>
+</div>
+
+<p>To roll back the release locally in your candidate release branch:</p>
 
 <ol>
   <li><code class="highlighter-rouge">mvn -Psigned_release versions:set 
-DnewVersion=&lt;previous release version&gt;-Snapshot</code></li>
@@ -333,17 +374,23 @@
 
 <p>To generate the release notes within via <a 
href="https://issues.apache.org/jira/browse/PIRK";>Pirk JIRA</a>, follow the 
instructions found <a 
href="https://confluence.atlassian.com/jira061/jira-administrator-s-guide/project-management/managing-versions/creating-release-notes";>here</a>.</p>
 
-<p>Include the link to the release notes in the voting email.</p>
+<p>Include the link to the release notes in the voting emails.</p>
 
 <h2 id="vote-on-the-release">Vote on the Release</h2>
 
-<p>To vote on a candidate release, send an email to the <a 
href="&#109;&#097;&#105;&#108;&#116;&#111;:&#100;&#101;&#118;&#064;&#112;&#105;&#114;&#107;&#046;&#097;&#112;&#097;&#099;&#104;&#101;&#046;&#105;&#110;&#099;&#117;&#098;&#097;&#116;&#111;&#114;&#046;&#111;&#114;&#103;">dev
 list</a> with subject <code class="highlighter-rouge">[VOTE]: Pirk &lt;release 
version&gt; Release</code> and a body along the lines of:</p>
+<p>As per the Apache Incubator <a 
href="http://incubator.apache.org/incubation/Incubation_Policy.html#Releases";>release
 guidelines</a>, all releases for incubating projects must go through a 
two-step voting process. <a href="#apache-pirk-community-vote">First</a>, 
release voting must successfully pass within the Apache Pirk community via the 
<code class="highlighter-rouge">d...@pirk.incubator.apache.org</code> mailing 
list. <a href="#incubator-pmc-vote">Then</a>, release voting must successfully 
pass within the Apache Incubator PMC via the <code 
class="highlighter-rouge">gene...@incubator.apache.org</code> mailing list.</p>
+
+<p>General information regarding the Apache voting process can be found <a 
href="http://www.apache.org/foundation/voting.html";>here</a>.</p>
+
+<h3 id="apache-pirk-community-vote">Apache Pirk Community Vote</h3>
+
+<p>To vote on a candidate release, send an email to the <a 
href="&#109;&#097;&#105;&#108;&#116;&#111;:&#100;&#101;&#118;&#064;&#112;&#105;&#114;&#107;&#046;&#097;&#112;&#097;&#099;&#104;&#101;&#046;&#105;&#110;&#099;&#117;&#098;&#097;&#116;&#111;&#114;&#046;&#111;&#114;&#103;">dev
 list</a> with subject <code class="highlighter-rouge">[VOTE]: Apache Pirk 
&lt;release version&gt; Release</code> and a body along the lines of:</p>
 
 <div class="highlighter-rouge"><pre class="highlight"><code>This is the vote 
for &lt;release version&gt; of Apache Pirk (incubating).
 
 The vote will run for at least 72 hours and will close on &lt;closing date&gt;.
 
-The artifacts can be downloaded here: 
https://repository.apache.org/content/repositories/&lt;repository name&gt;
+The artifacts can be downloaded here: 
https://dist.apache.org/repos/dist/dev/incubator/pirk/release/&lt;release 
number&gt; or from the Maven staging repo here: 
https://repository.apache.org/content/repositories/&lt;repository name&gt;
 
 All JIRAs completed for this release are tagged with 'FixVersion = &lt;release 
version&gt;'. You can view them here: &lt;insert link to the JIRA release 
notes&gt;
 
@@ -356,13 +403,114 @@ Please vote accordingly:
 </code></pre>
 </div>
 
+<p>If any -1 (binding) votes are entered, then address them such that the 
voter changes their vote to a +1 (binding) or cancel the vote, <a 
href="#how-to-roll-back-a-release-candidate">roll back the release 
candidate</a>, fix the issues, and start over with <a 
href="#create-the-candidate-release-artifacts">creating the candidate 
artifacts</a>.</p>
+
+<p>Once 72 hours has passed (which is generally preferred) and/or at least 
three +1 (binding) votes have been cast with no -1 (binding) votes, send an 
email closing the vote and pronouncing the release candidate a success.</p>
+
+<div class="highlighter-rouge"><pre class="highlight"><code>The Apache Pirk 
&lt;release version&gt; vote is now closed and has passed as follows:
+
+[number] +1 (binding) votes
+[number] -1 (binding) votes
+
+A vote Apache Pirk &lt;release version&gt; will now be called on 
gene...@incubator.apache.org.
+</code></pre>
+</div>
+
+<h3 id="incubator-pmc-vote">Incubator PMC Vote</h3>
+
+<p>Once the candidate release vote passes on d...@pirk.apache.incubator.org, 
call a vote on IMPC <code 
class="highlighter-rouge">gene...@incubator.apache.org</code> with an email a 
with subject <code class="highlighter-rouge">[VOTE]: Apache Pirk &lt;release 
version&gt; Release</code> and a body along the lines of:</p>
+
+<div class="highlighter-rouge"><pre class="highlight"><code>The PPMC vote for 
the Apache Pirk 0.1.0-incubating release has passed. We kindly request that the 
IPMC now vote on the release.
+
+The PPMC vote thread is located here: &lt;link to the dev voting thread&gt;
+
+The artifacts can be downloaded here: 
https://dist.apache.org/repos/dist/dev/incubator/pirk/release/&lt;release 
number&gt; 
+
+The artifacts have been signed with Key : &lt;ID of signing key&gt;
+
+All JIRAs completed for this release are tagged with 'FixVersion = &lt;release 
version&gt;'. You can view them here: &lt;insert link to the JIRA release 
notes&gt;
+
+Please vote accordingly:
+
+[ ] +1, accept as the official Apache Pirk &lt;release number&gt; release 
+[ ] -1, do not accept as the official Apache Pirk &lt;release number&gt; 
release because...
+
+The vote will run for at least 72 hours.
+</code></pre>
+</div>
+
+<p>If any -1 (binding) votes are entered, then address them such that the 
voter changes their vote to a +1 (binding) or cancel the vote, <a 
href="#how-to-roll-back-a-release-candidate">roll back the release 
candidate</a>, fix the issues, and start over with <a 
href="#create-the-candidate-release-artifacts">creating the candidate 
artifacts</a> (including re-voting within the Apache Pirk community on 
d...@pirk.apache.incubator.org).</p>
+
+<p>Once 72 hours has passed (which is generally preferred) and/or at least 
three +1 (binding) votes have been cast with no -1 (binding) votes, send an 
email closing the vote and pronouncing the release candidate a success.</p>
+
+<div class="highlighter-rouge"><pre class="highlight"><code>The Apache Pirk 
&lt;release version&gt; vote is now closed and has passed as follows:
+
+[number] +1 (binding) votes
+[number] -1 (binding) votes
+
+The Apache Pirk (incubating) community will proceed with the release.
+</code></pre>
+</div>
+
 <h2 id="publish-the-release">Publish the Release</h2>
 
+<p>Once the Apache Pirk PPMC and IPMC votes both pass, publish the release 
artifacts to the <a href="#publish-the-maven-artifacts">Nexus Maven 
repository</a> and to the <a 
href="#publish-the-artifacts-to-the-apache-release-repository">Apache release 
repository</a>.</p>
+
+<h3 id="publish-the-maven-artifacts">Publish the Maven Artifacts</h3>
+
+<p>Release the Maven artifacts in Nexus by selecting the staging repository 
<code class="highlighter-rouge">orgapachepirk-1001</code> and clicking on the 
‘Release’ icon.</p>
+
+<h3 id="publish-the-artifacts-to-the-apache-release-repository">Publish the 
Artifacts to the Apache Release Repository</h3>
+
+<p>Via svn, copy the candidate release artifacts to <a 
href="https://dist.apache.org/repos/dist/release/incubator/pirk/";>https://dist.apache.org/repos/dist/release/incubator/pirk/</a></p>
+
+<div class="highlighter-rouge"><pre class="highlight"><code>svn checkout 
https://dist.apache.org/repos/dist/release/incubator/pirk/ --username=&lt;your 
user name&gt;
+
+mkdir pirk/&lt;release version&gt;
+
+copy the release artifacts into the new directory
+
+svn add &lt;release version directory&gt;
+
+svn commit -m 'adding release artifacts' --username=&lt;your user name&gt; 
+</code></pre>
+</div>
+
+<h2 id="announce-the-release">Announce the Release</h2>
+
+<p>Send an email to <code 
class="highlighter-rouge">annou...@apache.org</code>, <code 
class="highlighter-rouge">gene...@incubator.apache.org</code>, and <code 
class="highlighter-rouge">d...@pirk.apache.incubator.org</code> with the 
subject <code class="highlighter-rouge">[ANNOUNCE] Apache Pirk &lt;release 
number&gt; Release</code> and a body along the lines of:</p>
+
+<div class="highlighter-rouge"><pre class="highlight"><code>The Apache Pirk 
team would like to announce the release of Apache Pirk &lt;release version&gt;. 
+
+Apache Pirk (incubating) is a framework for scalable Private Information 
Retrieval (PIR). The goal of Pirk is to provide a landing place for robust, 
scalable, and practical implementations of PIR algorithms.
+
+More details regarding Apache Pirk can be found here:
+http://pirk.incubator.apache.org/
+
+The release artifacts can be downloaded here: 
+https://dist.apache.org/repos/dist/release/incubator/pirk/&lt;release 
version&gt;
+
+Maven artifacts have been made available here: 
+https://repository.apache.org/content/repositories/releases/org/apache/pirk/
+
+All JIRAs completed for this release are tagged with 'FixVersion = &lt;release 
version&gt;'; the release notes can be found here: 
+&lt;link to release notes on JIRA&gt;
+
+Thanks!
+
+The Apache Pirk Team
+</code></pre>
+</div>
+
+<p>General Apache information regarding announcing a release may be found <a 
href="http://www.apache.org/dev/release.html#release-announcements";>here</a>.</p>
+
 <h2 id="update-the-website">Update the Website</h2>
 
 <p>Add the current release link to the <a href="/downloads">Downloads 
page</a>.</p>
 
-<p>Update the javadocs.</p>
+<p>Update the <a href="/javadocs">javadocs</a>.</p>
+
+<p>Update the <a href="/news">News</a> page and the News info bar on the left 
side of the <a href="/">homepage</a> (via editing _includes/newsfeed.md) with 
the release information.</p>
 
 
         </div>

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/c79201c1/target/apache-pirk-0.0.1-SNAPSHOT-exe.jar
----------------------------------------------------------------------
diff --git a/target/apache-pirk-0.0.1-SNAPSHOT-exe.jar 
b/target/apache-pirk-0.0.1-SNAPSHOT-exe.jar
new file mode 100644
index 0000000..e282eb0
Binary files /dev/null and b/target/apache-pirk-0.0.1-SNAPSHOT-exe.jar differ

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/c79201c1/target/apache-pirk-0.0.1-SNAPSHOT.jar
----------------------------------------------------------------------
diff --git a/target/apache-pirk-0.0.1-SNAPSHOT.jar 
b/target/apache-pirk-0.0.1-SNAPSHOT.jar
new file mode 100644
index 0000000..e01a771
Binary files /dev/null and b/target/apache-pirk-0.0.1-SNAPSHOT.jar differ

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/c79201c1/target/apache-pirk-0.2.0-incubating-SNAPSHOT-exe.jar
----------------------------------------------------------------------
diff --git a/target/apache-pirk-0.2.0-incubating-SNAPSHOT-exe.jar 
b/target/apache-pirk-0.2.0-incubating-SNAPSHOT-exe.jar
new file mode 100644
index 0000000..a6660c1
Binary files /dev/null and 
b/target/apache-pirk-0.2.0-incubating-SNAPSHOT-exe.jar differ

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/c79201c1/target/apache-pirk-0.2.0-incubating-SNAPSHOT.jar
----------------------------------------------------------------------
diff --git a/target/apache-pirk-0.2.0-incubating-SNAPSHOT.jar 
b/target/apache-pirk-0.2.0-incubating-SNAPSHOT.jar
new file mode 100644
index 0000000..26b15df
Binary files /dev/null and b/target/apache-pirk-0.2.0-incubating-SNAPSHOT.jar 
differ

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/c79201c1/target/classes/META-INF/BenchmarkList
----------------------------------------------------------------------
diff --git a/target/classes/META-INF/BenchmarkList 
b/target/classes/META-INF/BenchmarkList
index 65a5e22..43794b8 100644
--- a/target/classes/META-INF/BenchmarkList
+++ b/target/classes/META-INF/BenchmarkList
@@ -1,3 +1,3 @@
-org.apache.pirk.benchmark.PaillierBenchmark===,===org.apache.pirk.benchmark.generated.PaillierBenchmark_testWithoutGMP_jmhTest===,===testWithoutGMP===,===Throughput===,===1====,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[]
-org.apache.pirk.benchmark.PaillierBenchmark===,===org.apache.pirk.benchmark.generated.PaillierBenchmark_testWithGMP_jmhTest===,===testWithGMP===,===Throughput===,===1====,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[]
 
org.apache.pirk.benchmark.PaillierBenchmark===,===org.apache.pirk.benchmark.generated.PaillierBenchmark_testWithGMPConstantTime_jmhTest===,===testWithGMPConstantTime===,===Throughput===,===1====,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[]
+org.apache.pirk.benchmark.PaillierBenchmark===,===org.apache.pirk.benchmark.generated.PaillierBenchmark_testWithGMP_jmhTest===,===testWithGMP===,===Throughput===,===1====,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[]
+org.apache.pirk.benchmark.PaillierBenchmark===,===org.apache.pirk.benchmark.generated.PaillierBenchmark_testWithoutGMP_jmhTest===,===testWithoutGMP===,===Throughput===,===1====,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[]

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/c79201c1/target/classes/META-INF/DEPENDENCIES
----------------------------------------------------------------------
diff --git a/target/classes/META-INF/DEPENDENCIES 
b/target/classes/META-INF/DEPENDENCIES
index 220cfa1..5b7cfe6 100644
--- a/target/classes/META-INF/DEPENDENCIES
+++ b/target/classes/META-INF/DEPENDENCIES
@@ -11,8 +11,14 @@ From: 'an unknown organization'
     License: BSD License  (http://www.antlr.org/license.html)
   - AOP alliance (http://aopalliance.sourceforge.net) 
aopalliance:aopalliance:jar:1.0
     License: Public Domain 
+  - ZkClient (https://github.com/sgroschupf/zkclient) 
com.101tec:zkclient:jar:0.7
+    License: The Apache Software License, Version 2.0  
(http://www.apache.org/licenses/LICENSE-2.0.txt)
   - stream-lib (https://github.com/addthis/stream-lib) 
com.clearspring.analytics:stream:jar:2.7.0
     License: Apache License, Version 2.0  
(http://www.apache.org/licenses/LICENSE-2.0.txt)
+  - Kryo Shaded (https://github.com/EsotericSoftware/kryo/kryo-shaded) 
com.esotericsoftware:kryo-shaded:bundle:3.0.3
+    License: New BSD License  
(http://www.opensource.org/licenses/bsd-license.php)
+  - MinLog (https://github.com/EsotericSoftware/minlog) 
com.esotericsoftware:minlog:bundle:1.3.0
+    License: New BSD License  
(http://www.opensource.org/licenses/bsd-license.php)
   - Kryo (http://code.google.com/p/kryo/) 
com.esotericsoftware.kryo:kryo:bundle:2.21
     License: New BSD License  
(http://www.opensource.org/licenses/bsd-license.php)
   - MinLog (http://code.google.com/p/minlog/) 
com.esotericsoftware.minlog:minlog:jar:1.2
@@ -31,6 +37,8 @@ From: 'an unknown organization'
     License: Apache License 2.0  
(http://www.apache.org/licenses/LICENSE-2.0.html)
   - ParaNamer Core (http://paranamer.codehaus.org/paranamer) 
com.thoughtworks.paranamer:paranamer:jar:2.3
     License: BSD  (LICENSE.txt)
+  - Metrics Core Library (http://metrics.codahale.com/metrics-core/) 
com.yammer.metrics:metrics-core:jar:2.2.0
+    License: Apache License 2.0  
(http://www.apache.org/licenses/LICENSE-2.0.html)
   - commons-beanutils  commons-beanutils:commons-beanutils:jar:1.7.0
 
   - Automaton (http://www.brics.dk/automaton/) 
dk.brics.automaton:automaton:jar:1.11-8
@@ -53,6 +61,8 @@ From: 'an unknown organization'
 
   - jsp-api  javax.servlet.jsp:jsp-api:jar:2.1
 
+  - Bean Validation API (http://beanvalidation.org) 
javax.validation:validation-api:jar:1.1.0.Final
+    License: The Apache Software License, Version 2.0  
(http://www.apache.org/licenses/LICENSE-2.0.txt)
   - Streaming API for XML  javax.xml.stream:stax-api:jar:1.0-2
     License: GNU General Public Library  (http://www.gnu.org/licenses/gpl.txt) 
   License: COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0  
(http://www.sun.com/cddl/cddl.html)
   - JLine (http://jline.sourceforge.net) jline:jline:jar:1.0
@@ -65,6 +75,8 @@ From: 'an unknown organization'
     License: The Apache Software License, Version 2.0  
(http://www.apache.org/licenses/LICENSE-2.0.txt)
   - pyrolite (https://github.com/irmen/Pyrolite) net.razorvine:pyrolite:jar:4.9
     License: MIT License  
(https://raw.githubusercontent.com/irmen/Pyrolite/master/LICENSE)
+  - JOpt Simple (http://jopt-simple.sourceforge.net) 
net.sf.jopt-simple:jopt-simple:jar:3.2
+    License: The MIT License  
(http://www.opensource.org/licenses/mit-license.php)
   - kosmosfs (http://kosmosfs.sourceforge.net/) net.sf.kosmosfs:kfs:jar:0.3
     License: The Apache Software License, Version 2.0  
(http://www.apache.org/licenses/LICENSE-2.0.txt)
   - Py4J (http://www.py4j.org/) net.sf.py4j:py4j:jar:0.9
@@ -75,6 +87,10 @@ From: 'an unknown organization'
 
   - ANTLR StringTemplate (http://www.stringtemplate.org) 
org.antlr:stringtemplate:jar:3.2.1
     License: BSD licence  (http://antlr.org/license.html)
+  - Apache Kafka (http://kafka.apache.org) 
org.apache.kafka:kafka-clients:jar:0.9.0.1
+    License: The Apache Software License, Version 2.0  
(http://www.apache.org/licenses/LICENSE-2.0.txt)
+  - Apache Kafka (http://kafka.apache.org) 
org.apache.kafka:kafka_2.10:jar:0.9.0.1
+    License: The Apache Software License, Version 2.0  
(http://www.apache.org/licenses/LICENSE-2.0.txt)
   - pig  org.apache.pig:pig:jar:0.15.0
 
   - zookeeper  org.apache.zookeeper:zookeeper:pom:3.4.6
@@ -89,6 +105,8 @@ From: 'an unknown organization'
     License: Eclipse Public License v1.0  
(http://www.eclipse.org/org/documents/epl-v10.php)
   - Hamcrest Core (https://github.com/hamcrest/JavaHamcrest/hamcrest-core) 
org.hamcrest:hamcrest-core:jar:1.3
     License: New BSD License  
(http://www.opensource.org/licenses/bsd-license.php)
+  - Javassist (http://www.javassist.org/) 
org.javassist:javassist:bundle:3.18.1-GA
+    License: MPL 1.1  (http://www.mozilla.org/MPL/MPL-1.1.html)    License: 
LGPL 2.1  (http://www.gnu.org/licenses/lgpl-2.1.html)    License: Apache 
License 2.0  (http://www.apache.org/licenses/)
   - RoaringBitmap (https://github.com/lemire/RoaringBitmap) 
org.roaringbitmap:RoaringBitmap:bundle:0.5.11
     License: Apache 2  (http://www.apache.org/licenses/LICENSE-2.0.txt)
   - empty (http://nexus.sonatype.org/oss-repository-hosting.html/unused) 
org.spark-project.spark:unused:jar:1.0.0
@@ -149,19 +167,15 @@ From: 'Apache Software Foundation' (http://www.apache.org)
     License: Apache License, Version 2.0  
(http://www.apache.org/licenses/LICENSE-2.0.txt)
   - hadoop-yarn-server-common  
org.apache.hadoop:hadoop-yarn-server-common:jar:2.7.2
     License: Apache License, Version 2.0  
(http://www.apache.org/licenses/LICENSE-2.0.txt)
-  - Apache Log4j API (http://logging.apache.org/log4j/2.x/log4j-api/) 
org.apache.logging.log4j:log4j-api:jar:2.6.2
+  - Apache Log4j API (http://logging.apache.org/log4j/2.x/log4j-api/) 
org.apache.logging.log4j:log4j-api:jar:2.1
     License: The Apache Software License, Version 2.0  
(http://www.apache.org/licenses/LICENSE-2.0.txt)
-  - Apache Log4j Core (http://logging.apache.org/log4j/2.x/log4j-core/) 
org.apache.logging.log4j:log4j-core:jar:2.6.2
+  - Apache Log4j Core (http://logging.apache.org/log4j/2.x/log4j-core/) 
org.apache.logging.log4j:log4j-core:jar:2.1
     License: The Apache Software License, Version 2.0  
(http://www.apache.org/licenses/LICENSE-2.0.txt)
-  - Apache Log4j SLF4J Binding 
(http://logging.apache.org/log4j/2.x/log4j-slf4j-impl/) 
org.apache.logging.log4j:log4j-slf4j-impl:jar:2.6.2
-    License: The Apache Software License, Version 2.0  
(http://www.apache.org/licenses/LICENSE-2.0.txt)
-
-From: 'Apache Software Foundation' (http://www.apache.org/)
-  - XML Commons External Components XML APIs 
(http://xml.apache.org/commons/components/external/) 
xml-apis:xml-apis:jar:1.3.04
+  - Apache Log4j SLF4J Binding 
(http://logging.apache.org/log4j/2.x/log4j-slf4j-impl/) 
org.apache.logging.log4j:log4j-slf4j-impl:jar:2.1
     License: The Apache Software License, Version 2.0  
(http://www.apache.org/licenses/LICENSE-2.0.txt)
 
 From: 'com.fasterxml.jackson.module'
-  - jackson-module-scala (http://wiki.fasterxml.com/JacksonModuleScala) 
com.fasterxml.jackson.module:jackson-module-scala_2.10:bundle:2.4.4
+  - jackson-module-scala (http://wiki.fasterxml.com/JacksonModuleScala) 
com.fasterxml.jackson.module:jackson-module-scala_2.10:bundle:2.6.5
     License: The Apache Software License, Version 2.0  
(http://www.apache.org/licenses/LICENSE-2.0.txt)
   - jackson-module-scala (http://wiki.fasterxml.com/JacksonModuleScala) 
com.fasterxml.jackson.module:jackson-module-scala_2.11:bundle:2.4.4
     License: The Apache Software License, Version 2.0  
(http://www.apache.org/licenses/LICENSE-2.0.txt)
@@ -169,7 +183,7 @@ From: 'com.fasterxml.jackson.module'
 From: 'com.twitter'
   - chill-java (https://github.com/twitter/chill) 
com.twitter:chill-java:jar:0.5.0
     License: Apache 2  (http://www.apache.org/licenses/LICENSE-2.0.txt)
-  - chill (https://github.com/twitter/chill) com.twitter:chill_2.10:jar:0.5.0
+  - chill (https://github.com/twitter/chill) com.twitter:chill_2.10:jar:0.8.0
     License: Apache 2  (http://www.apache.org/licenses/LICENSE-2.0.txt)
   - chill (https://github.com/twitter/chill) com.twitter:chill_2.11:jar:0.5.0
     License: Apache 2  (http://www.apache.org/licenses/LICENSE-2.0.txt)
@@ -195,15 +209,27 @@ From: 'FasterXML' (http://fasterxml.com)
 From: 'FasterXML' (http://fasterxml.com/)
   - Jackson-annotations (http://github.com/FasterXML/jackson) 
com.fasterxml.jackson.core:jackson-annotations:bundle:2.4.4
     License: The Apache Software License, Version 2.0  
(http://www.apache.org/licenses/LICENSE-2.0.txt)
-  - Jackson-core (https://github.com/FasterXML/jackson-core) 
com.fasterxml.jackson.core:jackson-core:bundle:2.8.1
+  - Jackson-core (https://github.com/FasterXML/jackson) 
com.fasterxml.jackson.core:jackson-core:bundle:2.4.4
     License: The Apache Software License, Version 2.0  
(http://www.apache.org/licenses/LICENSE-2.0.txt)
   - jackson-databind (http://github.com/FasterXML/jackson) 
com.fasterxml.jackson.core:jackson-databind:bundle:2.4.4
     License: The Apache Software License, Version 2.0  
(http://www.apache.org/licenses/LICENSE-2.0.txt)
+  - Jackson-module-paranamer (http://wiki.fasterxml.com/JacksonHome) 
com.fasterxml.jackson.module:jackson-module-paranamer:bundle:2.6.5
+    License: The Apache Software License, Version 2.0  
(http://www.apache.org/licenses/LICENSE-2.0.txt)
 
 From: 'FuseSource, Corp.' (http://fusesource.com/)
   - leveldbjni-all (http://leveldbjni.fusesource.org/leveldbjni-all) 
org.fusesource.leveldbjni:leveldbjni-all:bundle:1.8
     License: The BSD 3-Clause License  
(http://www.opensource.org/licenses/BSD-3-Clause)
 
+From: 'GlassFish Community' (https://glassfish.dev.java.net)
+  - Java Servlet API (http://servlet-spec.java.net) 
javax.servlet:javax.servlet-api:jar:3.1.0
+    License: CDDL + GPLv2 with classpath exception  
(https://glassfish.dev.java.net/nonav/public/CDDL+GPL.html)
+  - OSGi resource locator bundle - used by various API providers that rely on 
META-INF/services mechanism to locate providers. 
(http://glassfish.org/osgi-resource-locator/) 
org.glassfish.hk2:osgi-resource-locator:jar:1.0.1
+    License: CDDL + GPLv2 with classpath exception  
(https://glassfish.dev.java.net/nonav/public/CDDL+GPL.html)
+
+From: 'GlassFish Community' (https://glassfish.java.net)
+  - javax.annotation API (http://jcp.org/en/jsr/detail?id=250) 
javax.annotation:javax.annotation-api:jar:1.2
+    License: CDDL + GPLv2 with classpath exception  
(https://glassfish.dev.java.net/nonav/public/CDDL+GPL.html)
+
 From: 'Google' (http://www.google.com/)
   - Protocol Buffer Java API (http://code.google.com/p/protobuf) 
com.google.protobuf:protobuf-java:bundle:2.5.0
     License: New BSD license  
(http://www.opensource.org/licenses/bsd-license.php)
@@ -225,7 +251,7 @@ From: 'Joda.org' (http://www.joda.org)
     License: Apache 2  (http://www.apache.org/licenses/LICENSE-2.0.txt)
 
 From: 'Joe Walnes, Henri Tremblay, Leonardo Mesquita'
-  - Objenesis (http://objenesis.googlecode.com/svn/docs/index.html) 
org.objenesis:objenesis:jar:1.2
+  - Objenesis (http://objenesis.org) org.objenesis:objenesis:jar:2.1
     License: Apache 2  (http://www.apache.org/licenses/LICENSE-2.0.txt)
 
 From: 'JUnit' (http://www.junit.org)
@@ -233,14 +259,14 @@ From: 'JUnit' (http://www.junit.org)
     License: Eclipse Public License 1.0  
(http://www.eclipse.org/legal/epl-v10.html)
 
 From: 'LAMP/EPFL' (http://lamp.epfl.ch/)
-  - Scala Compiler (http://www.scala-lang.org/) 
org.scala-lang:scala-compiler:jar:2.11.0
-    License: BSD 3-Clause  (http://www.scala-lang.org/license.html)
-  - Scala Library (http://www.scala-lang.org/) 
org.scala-lang:scala-library:jar:2.11.7
-    License: BSD 3-Clause  (http://www.scala-lang.org/license.html)
-  - Scala Compiler (http://www.scala-lang.org/) 
org.scala-lang:scala-reflect:jar:2.11.2
-    License: BSD 3-Clause  (http://www.scala-lang.org/license.html)
-  - Scalap (http://www.scala-lang.org/) org.scala-lang:scalap:jar:2.11.0
-    License: BSD 3-Clause  (http://www.scala-lang.org/license.html)
+  - Scala Compiler (http://www.scala-lang.org/) 
org.scala-lang:scala-compiler:jar:2.10.0
+    License: BSD-like  (http://www.scala-lang.org/downloads/license.html)
+  - Scala Library (http://www.scala-lang.org/) 
org.scala-lang:scala-library:jar:2.10.4
+    License: BSD-like  (http://www.scala-lang.org/downloads/license.html)
+  - Scala Compiler (http://www.scala-lang.org/) 
org.scala-lang:scala-reflect:jar:2.10.6
+    License: BSD-like  (http://www.scala-lang.org/downloads/license.html)
+  - Scalap (http://www.scala-lang.org/) org.scala-lang:scalap:jar:2.10.0
+    License: BSD-like  (http://www.scala-lang.org/downloads/license.html)
 
 From: 'Mort Bay Consulting' (http://www.mortbay.com)
   - Jetty Orbit :: Servlet API 
(http://www.eclipse.org/jetty/jetty-orbit/javax.servlet) 
org.eclipse.jetty.orbit:javax.servlet:orbit:3.0.0.v201112011016
@@ -260,6 +286,18 @@ From: 'ObjectWeb' (http://www.objectweb.org/)
   - ASM Core (http://asm.objectweb.org/asm/) asm:asm:jar:3.1
 
 
+From: 'Oracle Corporation' (http://www.oracle.com)
+  - HK2 API module (https://hk2.java.net/hk2-api) 
org.glassfish.hk2:hk2-api:jar:2.4.0-b34
+    License: CDDL + GPLv2 with classpath exception  
(https://glassfish.java.net/nonav/public/CDDL+GPL_1_1.html)
+  - ServiceLocator Default Implementation (https://hk2.java.net/hk2-locator) 
org.glassfish.hk2:hk2-locator:jar:2.4.0-b34
+    License: CDDL + GPLv2 with classpath exception  
(https://glassfish.java.net/nonav/public/CDDL+GPL_1_1.html)
+  - HK2 Implementation Utilities (https://hk2.java.net/hk2-utils) 
org.glassfish.hk2:hk2-utils:jar:2.4.0-b34
+    License: CDDL + GPLv2 with classpath exception  
(https://glassfish.java.net/nonav/public/CDDL+GPL_1_1.html)
+  - aopalliance version 1.0 repackaged as a module 
(https://hk2.java.net/external/aopalliance-repackaged) 
org.glassfish.hk2.external:aopalliance-repackaged:jar:2.4.0-b34
+    License: CDDL + GPLv2 with classpath exception  
(https://glassfish.java.net/nonav/public/CDDL+GPL_1_1.html)
+  - javax.inject:1 as OSGi bundle (https://hk2.java.net/external/javax.inject) 
org.glassfish.hk2.external:javax.inject:jar:2.4.0-b34
+    License: CDDL + GPLv2 with classpath exception  
(https://glassfish.java.net/nonav/public/CDDL+GPL_1_1.html)
+
 From: 'Oracle Corporation' (http://www.oracle.com/)
   - jersey-client (https://jersey.java.net/jersey-client/) 
com.sun.jersey:jersey-client:bundle:1.9
     License: CDDL 1.1  (http://glassfish.java.net/public/CDDL+GPL_1_1.html)    
License: GPL2 w/ CPE  (http://glassfish.java.net/public/CDDL+GPL_1_1.html)
@@ -273,28 +311,42 @@ From: 'Oracle Corporation' (http://www.oracle.com/)
     License: CDDL 1.1  (http://glassfish.java.net/public/CDDL+GPL_1_1.html)    
License: GPL2 w/ CPE  (http://glassfish.java.net/public/CDDL+GPL_1_1.html)
   - JAXB RI (http://jaxb.java.net/) com.sun.xml.bind:jaxb-impl:jar:2.2.3-1
     License: CDDL 1.1  (https://glassfish.java.net/public/CDDL+GPL_1_1.html)   
 License: GPL2 w/ CPE  (https://glassfish.java.net/public/CDDL+GPL_1_1.html)
+  - javax.ws.rs-api (http://jax-rs-spec.java.net) 
javax.ws.rs:javax.ws.rs-api:jar:2.0.1
+    License: CDDL 1.1  (http://glassfish.java.net/public/CDDL+GPL_1_1.html)    
License: GPL2 w/ CPE  (http://glassfish.java.net/public/CDDL+GPL_1_1.html)
   - JAXB API bundle for GlassFish V3 (https://jaxb.dev.java.net/) 
javax.xml.bind:jaxb-api:jar:2.2.2
     License: CDDL 1.1  
(https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html)    License: GPL2 w/ 
CPE  (https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html)
+  - jersey-repackaged-guava 
(https://jersey.java.net/project/project/jersey-guava/) 
org.glassfish.jersey.bundles.repackaged:jersey-guava:bundle:2.22.2
+    License: CDDL+GPL License  
(http://glassfish.java.net/public/CDDL+GPL_1_1.html)
+  - jersey-container-servlet 
(https://jersey.java.net/project/jersey-container-servlet/) 
org.glassfish.jersey.containers:jersey-container-servlet:jar:2.22.2
+    License: CDDL+GPL License  
(http://glassfish.java.net/public/CDDL+GPL_1_1.html)
+  - jersey-container-servlet-core 
(https://jersey.java.net/project/jersey-container-servlet-core/) 
org.glassfish.jersey.containers:jersey-container-servlet-core:jar:2.22.2
+    License: CDDL+GPL License  
(http://glassfish.java.net/public/CDDL+GPL_1_1.html)
+  - jersey-core-client (https://jersey.java.net/jersey-client/) 
org.glassfish.jersey.core:jersey-client:jar:2.22.2
+    License: CDDL+GPL License  
(http://glassfish.java.net/public/CDDL+GPL_1_1.html)
+  - jersey-core-common (https://jersey.java.net/jersey-common/) 
org.glassfish.jersey.core:jersey-common:jar:2.22.2
+    License: CDDL+GPL License  
(http://glassfish.java.net/public/CDDL+GPL_1_1.html)
+  - jersey-core-server (https://jersey.java.net/jersey-server/) 
org.glassfish.jersey.core:jersey-server:jar:2.22.2
+    License: CDDL+GPL License  
(http://glassfish.java.net/public/CDDL+GPL_1_1.html)
+  - jersey-media-jaxb (https://jersey.java.net/project/jersey-media-jaxb/) 
org.glassfish.jersey.media:jersey-media-jaxb:jar:2.22.2
+    License: CDDL+GPL License  
(http://glassfish.java.net/public/CDDL+GPL_1_1.html)
 
 From: 'org.json4s' (https://github.com/json4s/json4s)
-  - json4s-ast (https://github.com/json4s/json4s) 
org.json4s:json4s-ast_2.10:jar:3.2.10
+  - json4s-ast (https://github.com/json4s/json4s) 
org.json4s:json4s-ast_2.10:jar:3.2.11
     License: ASL  (http://github.com/json4s/json4s/raw/HEAD/LICENSE)
   - json4s-ast (https://github.com/json4s/json4s) 
org.json4s:json4s-ast_2.11:jar:3.2.10
     License: ASL  (http://github.com/json4s/json4s/raw/HEAD/LICENSE)
-  - json4s-core (https://github.com/json4s/json4s) 
org.json4s:json4s-core_2.10:jar:3.2.10
+  - json4s-core (https://github.com/json4s/json4s) 
org.json4s:json4s-core_2.10:jar:3.2.11
     License: ASL  (http://github.com/json4s/json4s/raw/HEAD/LICENSE)
   - json4s-core (https://github.com/json4s/json4s) 
org.json4s:json4s-core_2.11:jar:3.2.10
     License: ASL  (http://github.com/json4s/json4s/raw/HEAD/LICENSE)
-  - json4s-jackson (https://github.com/json4s/json4s) 
org.json4s:json4s-jackson_2.10:jar:3.2.10
+  - json4s-jackson (https://github.com/json4s/json4s) 
org.json4s:json4s-jackson_2.10:jar:3.2.11
     License: ASL  (http://github.com/json4s/json4s/raw/HEAD/LICENSE)
   - json4s-jackson (https://github.com/json4s/json4s) 
org.json4s:json4s-jackson_2.11:jar:3.2.10
     License: ASL  (http://github.com/json4s/json4s/raw/HEAD/LICENSE)
 
-From: 'org.scala-lang.modules' (http://www.scala-lang.org/)
-  - scala-parser-combinators (http://www.scala-lang.org/) 
org.scala-lang.modules:scala-parser-combinators_2.11:bundle:1.0.1
-    License: BSD 3-clause  (http://opensource.org/licenses/BSD-3-Clause)
-  - scala-xml (http://www.scala-lang.org/) 
org.scala-lang.modules:scala-xml_2.11:bundle:1.0.1
-    License: BSD 3-clause  (http://opensource.org/licenses/BSD-3-Clause)
+From: 'org.scalatest'
+  - scalatest (http://www.scalatest.org) 
org.scalatest:scalatest_2.10:bundle:2.2.6
+    License: the Apache License, ASL Version 2.0  
(http://www.apache.org/licenses/LICENSE-2.0)
 
 From: 'QOS.ch' (http://www.qos.ch)
   - JCL 1.1.1 implemented over SLF4J (http://www.slf4j.org) 
org.slf4j:jcl-over-slf4j:jar:1.7.10
@@ -355,9 +407,9 @@ From: 'The Apache Software Foundation' 
(http://www.apache.org/)
     License: The Apache Software License, Version 2.0  
(http://www.apache.org/licenses/LICENSE-2.0.txt)
   - Apache Commons Math (http://commons.apache.org/proper/commons-math/) 
org.apache.commons:commons-math3:jar:3.3
     License: The Apache Software License, Version 2.0  
(http://www.apache.org/licenses/LICENSE-2.0.txt)
-  - Curator Client (http://curator.apache.org/curator-client) 
org.apache.curator:curator-client:bundle:2.7.1
+  - Curator Client (http://curator.apache.org/curator-client) 
org.apache.curator:curator-client:bundle:2.10.0
     License: The Apache Software License, Version 2.0  
(http://www.apache.org/licenses/LICENSE-2.0.txt)
-  - Curator Framework (http://curator.apache.org/curator-framework) 
org.apache.curator:curator-framework:bundle:2.7.1
+  - Curator Framework (http://curator.apache.org/curator-framework) 
org.apache.curator:curator-framework:bundle:2.10.0
     License: The Apache Software License, Version 2.0  
(http://www.apache.org/licenses/LICENSE-2.0.txt)
   - Curator Recipes (http://curator.apache.org/curator-recipes) 
org.apache.curator:curator-recipes:bundle:2.7.1
     License: The Apache Software License, Version 2.0  
(http://www.apache.org/licenses/LICENSE-2.0.txt)
@@ -395,29 +447,33 @@ From: 'The Apache Software Foundation' 
(http://www.apache.org/)
     License: The Apache Software License, Version 2.0  
(http://www.apache.org/licenses/LICENSE-2.0.txt)
   - Spark Project Catalyst (http://spark.apache.org/) 
org.apache.spark:spark-catalyst_2.10:jar:1.6.1
     License: Apache 2.0 License  
(http://www.apache.org/licenses/LICENSE-2.0.html)
-  - Spark Project Core (http://spark.apache.org/) 
org.apache.spark:spark-core_2.10:jar:1.6.1
+  - Spark Project Core (http://spark.apache.org/) 
org.apache.spark:spark-core_2.10:jar:2.0.0
     License: Apache 2.0 License  
(http://www.apache.org/licenses/LICENSE-2.0.html)
   - Spark Project Core (http://spark.apache.org/) 
org.apache.spark:spark-core_2.11:jar:1.6.1
     License: Apache 2.0 License  
(http://www.apache.org/licenses/LICENSE-2.0.html)
-  - Spark Project Launcher (http://spark.apache.org/) 
org.apache.spark:spark-launcher_2.10:jar:1.6.1
+  - Spark Project Launcher (http://spark.apache.org/) 
org.apache.spark:spark-launcher_2.10:jar:2.0.0
     License: Apache 2.0 License  
(http://www.apache.org/licenses/LICENSE-2.0.html)
   - Spark Project Launcher (http://spark.apache.org/) 
org.apache.spark:spark-launcher_2.11:jar:1.6.1
     License: Apache 2.0 License  
(http://www.apache.org/licenses/LICENSE-2.0.html)
-  - Spark Project Networking (http://spark.apache.org/) 
org.apache.spark:spark-network-common_2.10:jar:1.6.1
+  - Spark Project Networking (http://spark.apache.org/) 
org.apache.spark:spark-network-common_2.10:jar:2.0.0
     License: Apache 2.0 License  
(http://www.apache.org/licenses/LICENSE-2.0.html)
   - Spark Project Networking (http://spark.apache.org/) 
org.apache.spark:spark-network-common_2.11:jar:1.6.1
     License: Apache 2.0 License  
(http://www.apache.org/licenses/LICENSE-2.0.html)
-  - Spark Project Shuffle Streaming Service (http://spark.apache.org/) 
org.apache.spark:spark-network-shuffle_2.10:jar:1.6.1
+  - Spark Project Shuffle Streaming Service (http://spark.apache.org/) 
org.apache.spark:spark-network-shuffle_2.10:jar:2.0.0
     License: Apache 2.0 License  
(http://www.apache.org/licenses/LICENSE-2.0.html)
   - Spark Project Shuffle Streaming Service (http://spark.apache.org/) 
org.apache.spark:spark-network-shuffle_2.11:jar:1.6.1
     License: Apache 2.0 License  
(http://www.apache.org/licenses/LICENSE-2.0.html)
   - Spark Project SQL (http://spark.apache.org/) 
org.apache.spark:spark-sql_2.10:jar:1.6.1
     License: Apache 2.0 License  
(http://www.apache.org/licenses/LICENSE-2.0.html)
-  - Spark Project Unsafe (http://spark.apache.org/) 
org.apache.spark:spark-unsafe_2.10:jar:1.6.1
+  - Spark Project Streaming (http://spark.apache.org/) 
org.apache.spark:spark-streaming_2.10:jar:2.0.0
+    License: Apache 2.0 License  
(http://www.apache.org/licenses/LICENSE-2.0.html)
+  - Spark Project Tags (http://spark.apache.org/) 
org.apache.spark:spark-tags_2.10:jar:2.0.0
+    License: Apache 2.0 License  
(http://www.apache.org/licenses/LICENSE-2.0.html)
+  - Spark Project Unsafe (http://spark.apache.org/) 
org.apache.spark:spark-unsafe_2.10:jar:2.0.0
     License: Apache 2.0 License  
(http://www.apache.org/licenses/LICENSE-2.0.html)
   - Spark Project Unsafe (http://spark.apache.org/) 
org.apache.spark:spark-unsafe_2.11:jar:1.6.1
     License: Apache 2.0 License  
(http://www.apache.org/licenses/LICENSE-2.0.html)
-  - Xerces2 Java Parser (http://xerces.apache.org/xerces2-j) 
xerces:xercesImpl:jar:2.9.1
+  - storm-kafka (http://storm.apache.org/external/storm-kafka) 
org.apache.storm:storm-kafka:jar:1.0.1
     License: The Apache Software License, Version 2.0  
(http://www.apache.org/licenses/LICENSE-2.0.txt)
 
 From: 'The Netty Project' (http://netty.io/)
@@ -427,16 +483,10 @@ From: 'The Netty Project' (http://netty.io/)
     License: Apache License, Version 2.0  
(http://www.apache.org/licenses/LICENSE-2.0)
 
 From: 'Typesafe Inc.' (http://www.typesafe.com)
-  - akka-actor (http://akka.io/) com.typesafe.akka:akka-actor_2.10:jar:2.3.11
-    License: Apache License, Version 2.0  
(http://www.apache.org/licenses/LICENSE-2.0)
   - akka-actor (http://akka.io/) com.typesafe.akka:akka-actor_2.11:jar:2.3.11
     License: Apache License, Version 2.0  
(http://www.apache.org/licenses/LICENSE-2.0)
-  - akka-remote (http://akka.io/) com.typesafe.akka:akka-remote_2.10:jar:2.3.11
-    License: Apache License, Version 2.0  
(http://www.apache.org/licenses/LICENSE-2.0)
   - akka-remote (http://akka.io/) com.typesafe.akka:akka-remote_2.11:jar:2.3.11
     License: Apache License, Version 2.0  
(http://www.apache.org/licenses/LICENSE-2.0)
-  - akka-slf4j (http://akka.io/) com.typesafe.akka:akka-slf4j_2.10:jar:2.3.11
-    License: Apache License, Version 2.0  
(http://www.apache.org/licenses/LICENSE-2.0)
   - akka-slf4j (http://akka.io/) com.typesafe.akka:akka-slf4j_2.11:jar:2.3.11
     License: Apache License, Version 2.0  
(http://www.apache.org/licenses/LICENSE-2.0)
 

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/c79201c1/target/classes/log4j2.xml
----------------------------------------------------------------------
diff --git a/target/classes/log4j2.xml b/target/classes/log4j2.xml
index 8f82f1c..7501aaa 100644
--- a/target/classes/log4j2.xml
+++ b/target/classes/log4j2.xml
@@ -46,4 +46,4 @@
                </Root>
        </Loggers>
 
-</Configuration>
\ No newline at end of file
+</Configuration>

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/c79201c1/target/classes/org/apache/pirk/querier/wideskies/Querier.class
----------------------------------------------------------------------
diff --git a/target/classes/org/apache/pirk/querier/wideskies/Querier.class 
b/target/classes/org/apache/pirk/querier/wideskies/Querier.class
index 694a46d..99b7da9 100644
Binary files a/target/classes/org/apache/pirk/querier/wideskies/Querier.class 
and b/target/classes/org/apache/pirk/querier/wideskies/Querier.class differ

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/c79201c1/target/classes/org/apache/pirk/querier/wideskies/QuerierDriver.class
----------------------------------------------------------------------
diff --git 
a/target/classes/org/apache/pirk/querier/wideskies/QuerierDriver.class 
b/target/classes/org/apache/pirk/querier/wideskies/QuerierDriver.class
index 95100aa..33cd895 100644
Binary files 
a/target/classes/org/apache/pirk/querier/wideskies/QuerierDriver.class and 
b/target/classes/org/apache/pirk/querier/wideskies/QuerierDriver.class differ

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/c79201c1/target/classes/org/apache/pirk/querier/wideskies/decrypt/DecryptResponse.class
----------------------------------------------------------------------
diff --git 
a/target/classes/org/apache/pirk/querier/wideskies/decrypt/DecryptResponse.class
 
b/target/classes/org/apache/pirk/querier/wideskies/decrypt/DecryptResponse.class
index 9895af2..01ff6fc 100644
Binary files 
a/target/classes/org/apache/pirk/querier/wideskies/decrypt/DecryptResponse.class
 and 
b/target/classes/org/apache/pirk/querier/wideskies/decrypt/DecryptResponse.class
 differ

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/c79201c1/target/classes/org/apache/pirk/querier/wideskies/decrypt/DecryptResponseTask.class
----------------------------------------------------------------------
diff --git 
a/target/classes/org/apache/pirk/querier/wideskies/decrypt/DecryptResponseTask.class
 
b/target/classes/org/apache/pirk/querier/wideskies/decrypt/DecryptResponseTask.class
index d504896..bfd17a0 100644
Binary files 
a/target/classes/org/apache/pirk/querier/wideskies/decrypt/DecryptResponseTask.class
 and 
b/target/classes/org/apache/pirk/querier/wideskies/decrypt/DecryptResponseTask.class
 differ

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/c79201c1/target/classes/org/apache/pirk/querier/wideskies/encrypt/EncryptQuery.class
----------------------------------------------------------------------
diff --git 
a/target/classes/org/apache/pirk/querier/wideskies/encrypt/EncryptQuery.class 
b/target/classes/org/apache/pirk/querier/wideskies/encrypt/EncryptQuery.class
index d690a84..ef5f0f6 100644
Binary files 
a/target/classes/org/apache/pirk/querier/wideskies/encrypt/EncryptQuery.class 
and 
b/target/classes/org/apache/pirk/querier/wideskies/encrypt/EncryptQuery.class 
differ

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/c79201c1/target/classes/org/apache/pirk/query/wideskies/QueryInfo.class
----------------------------------------------------------------------
diff --git a/target/classes/org/apache/pirk/query/wideskies/QueryInfo.class 
b/target/classes/org/apache/pirk/query/wideskies/QueryInfo.class
index 458a554..c76ecd5 100644
Binary files a/target/classes/org/apache/pirk/query/wideskies/QueryInfo.class 
and b/target/classes/org/apache/pirk/query/wideskies/QueryInfo.class differ

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/c79201c1/target/classes/org/apache/pirk/responder/wideskies/ResponderCLI.class
----------------------------------------------------------------------
diff --git 
a/target/classes/org/apache/pirk/responder/wideskies/ResponderCLI.class 
b/target/classes/org/apache/pirk/responder/wideskies/ResponderCLI.class
index 62b9a8e..c8373fb 100644
Binary files 
a/target/classes/org/apache/pirk/responder/wideskies/ResponderCLI.class and 
b/target/classes/org/apache/pirk/responder/wideskies/ResponderCLI.class differ

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/c79201c1/target/classes/org/apache/pirk/responder/wideskies/ResponderDriver$1.class
----------------------------------------------------------------------
diff --git 
a/target/classes/org/apache/pirk/responder/wideskies/ResponderDriver$1.class 
b/target/classes/org/apache/pirk/responder/wideskies/ResponderDriver$1.class
new file mode 100644
index 0000000..e7d48f4
Binary files /dev/null and 
b/target/classes/org/apache/pirk/responder/wideskies/ResponderDriver$1.class 
differ

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/c79201c1/target/classes/org/apache/pirk/responder/wideskies/ResponderDriver$Platform.class
----------------------------------------------------------------------
diff --git 
a/target/classes/org/apache/pirk/responder/wideskies/ResponderDriver$Platform.class
 
b/target/classes/org/apache/pirk/responder/wideskies/ResponderDriver$Platform.class
new file mode 100644
index 0000000..f60e588
Binary files /dev/null and 
b/target/classes/org/apache/pirk/responder/wideskies/ResponderDriver$Platform.class
 differ

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/c79201c1/target/classes/org/apache/pirk/responder/wideskies/ResponderDriver$SystemExitException.class
----------------------------------------------------------------------
diff --git 
a/target/classes/org/apache/pirk/responder/wideskies/ResponderDriver$SystemExitException.class
 
b/target/classes/org/apache/pirk/responder/wideskies/ResponderDriver$SystemExitException.class
new file mode 100644
index 0000000..d9e66a0
Binary files /dev/null and 
b/target/classes/org/apache/pirk/responder/wideskies/ResponderDriver$SystemExitException.class
 differ

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/c79201c1/target/classes/org/apache/pirk/responder/wideskies/ResponderDriver$SystemExitManager.class
----------------------------------------------------------------------
diff --git 
a/target/classes/org/apache/pirk/responder/wideskies/ResponderDriver$SystemExitManager.class
 
b/target/classes/org/apache/pirk/responder/wideskies/ResponderDriver$SystemExitManager.class
new file mode 100644
index 0000000..55d5803
Binary files /dev/null and 
b/target/classes/org/apache/pirk/responder/wideskies/ResponderDriver$SystemExitManager.class
 differ

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/c79201c1/target/classes/org/apache/pirk/responder/wideskies/ResponderDriver.class
----------------------------------------------------------------------
diff --git 
a/target/classes/org/apache/pirk/responder/wideskies/ResponderDriver.class 
b/target/classes/org/apache/pirk/responder/wideskies/ResponderDriver.class
index a3b2aed..12d127b 100644
Binary files 
a/target/classes/org/apache/pirk/responder/wideskies/ResponderDriver.class and 
b/target/classes/org/apache/pirk/responder/wideskies/ResponderDriver.class 
differ

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/c79201c1/target/classes/org/apache/pirk/responder/wideskies/ResponderProps.class
----------------------------------------------------------------------
diff --git 
a/target/classes/org/apache/pirk/responder/wideskies/ResponderProps.class 
b/target/classes/org/apache/pirk/responder/wideskies/ResponderProps.class
index ef16aef..55dc624 100644
Binary files 
a/target/classes/org/apache/pirk/responder/wideskies/ResponderProps.class and 
b/target/classes/org/apache/pirk/responder/wideskies/ResponderProps.class differ

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/c79201c1/target/classes/org/apache/pirk/responder/wideskies/common/ComputeEncryptedRow$1.class
----------------------------------------------------------------------
diff --git 
a/target/classes/org/apache/pirk/responder/wideskies/common/ComputeEncryptedRow$1.class
 
b/target/classes/org/apache/pirk/responder/wideskies/common/ComputeEncryptedRow$1.class
index 481efae..2159db4 100644
Binary files 
a/target/classes/org/apache/pirk/responder/wideskies/common/ComputeEncryptedRow$1.class
 and 
b/target/classes/org/apache/pirk/responder/wideskies/common/ComputeEncryptedRow$1.class
 differ

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/c79201c1/target/classes/org/apache/pirk/responder/wideskies/common/ComputeEncryptedRow.class
----------------------------------------------------------------------
diff --git 
a/target/classes/org/apache/pirk/responder/wideskies/common/ComputeEncryptedRow.class
 
b/target/classes/org/apache/pirk/responder/wideskies/common/ComputeEncryptedRow.class
index a43d54b..c7c1734 100644
Binary files 
a/target/classes/org/apache/pirk/responder/wideskies/common/ComputeEncryptedRow.class
 and 
b/target/classes/org/apache/pirk/responder/wideskies/common/ComputeEncryptedRow.class
 differ

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/c79201c1/target/classes/org/apache/pirk/responder/wideskies/spark/Accumulators.class
----------------------------------------------------------------------
diff --git 
a/target/classes/org/apache/pirk/responder/wideskies/spark/Accumulators.class 
b/target/classes/org/apache/pirk/responder/wideskies/spark/Accumulators.class
index 370f2f5..8138c19 100644
Binary files 
a/target/classes/org/apache/pirk/responder/wideskies/spark/Accumulators.class 
and 
b/target/classes/org/apache/pirk/responder/wideskies/spark/Accumulators.class 
differ

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/c79201c1/target/classes/org/apache/pirk/responder/wideskies/spark/BroadcastVars.class
----------------------------------------------------------------------
diff --git 
a/target/classes/org/apache/pirk/responder/wideskies/spark/BroadcastVars.class 
b/target/classes/org/apache/pirk/responder/wideskies/spark/BroadcastVars.class
index 9c67f8c..d1192bb 100644
Binary files 
a/target/classes/org/apache/pirk/responder/wideskies/spark/BroadcastVars.class 
and 
b/target/classes/org/apache/pirk/responder/wideskies/spark/BroadcastVars.class 
differ

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/c79201c1/target/classes/org/apache/pirk/responder/wideskies/spark/ComputeResponse.class
----------------------------------------------------------------------
diff --git 
a/target/classes/org/apache/pirk/responder/wideskies/spark/ComputeResponse.class
 
b/target/classes/org/apache/pirk/responder/wideskies/spark/ComputeResponse.class
index 718cd6a..cd77c09 100644
Binary files 
a/target/classes/org/apache/pirk/responder/wideskies/spark/ComputeResponse.class
 and 
b/target/classes/org/apache/pirk/responder/wideskies/spark/ComputeResponse.class
 differ

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/c79201c1/target/classes/org/apache/pirk/responder/wideskies/spark/EncColMultGroupedMapper.class
----------------------------------------------------------------------
diff --git 
a/target/classes/org/apache/pirk/responder/wideskies/spark/EncColMultGroupedMapper.class
 
b/target/classes/org/apache/pirk/responder/wideskies/spark/EncColMultGroupedMapper.class
index 7c296c0..9376135 100644
Binary files 
a/target/classes/org/apache/pirk/responder/wideskies/spark/EncColMultGroupedMapper.class
 and 
b/target/classes/org/apache/pirk/responder/wideskies/spark/EncColMultGroupedMapper.class
 differ

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/c79201c1/target/classes/org/apache/pirk/responder/wideskies/spark/EncColMultReducer.class
----------------------------------------------------------------------
diff --git 
a/target/classes/org/apache/pirk/responder/wideskies/spark/EncColMultReducer.class
 
b/target/classes/org/apache/pirk/responder/wideskies/spark/EncColMultReducer.class
index 1f31ca5..2c7f1dd 100644
Binary files 
a/target/classes/org/apache/pirk/responder/wideskies/spark/EncColMultReducer.class
 and 
b/target/classes/org/apache/pirk/responder/wideskies/spark/EncColMultReducer.class
 differ

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/c79201c1/target/classes/org/apache/pirk/responder/wideskies/spark/EncRowCalc.class
----------------------------------------------------------------------
diff --git 
a/target/classes/org/apache/pirk/responder/wideskies/spark/EncRowCalc.class 
b/target/classes/org/apache/pirk/responder/wideskies/spark/EncRowCalc.class
index 9af2d76..30a78fb 100644
Binary files 
a/target/classes/org/apache/pirk/responder/wideskies/spark/EncRowCalc.class and 
b/target/classes/org/apache/pirk/responder/wideskies/spark/EncRowCalc.class 
differ

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/c79201c1/target/classes/org/apache/pirk/responder/wideskies/spark/FilterData.class
----------------------------------------------------------------------
diff --git 
a/target/classes/org/apache/pirk/responder/wideskies/spark/FilterData.class 
b/target/classes/org/apache/pirk/responder/wideskies/spark/FilterData.class
index 00c1338..7b506a2 100644
Binary files 
a/target/classes/org/apache/pirk/responder/wideskies/spark/FilterData.class and 
b/target/classes/org/apache/pirk/responder/wideskies/spark/FilterData.class 
differ

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/c79201c1/target/classes/org/apache/pirk/responder/wideskies/spark/streaming/ComputeStreamingResponse$1.class
----------------------------------------------------------------------
diff --git 
a/target/classes/org/apache/pirk/responder/wideskies/spark/streaming/ComputeStreamingResponse$1.class
 
b/target/classes/org/apache/pirk/responder/wideskies/spark/streaming/ComputeStreamingResponse$1.class
new file mode 100644
index 0000000..b2e0bd5
Binary files /dev/null and 
b/target/classes/org/apache/pirk/responder/wideskies/spark/streaming/ComputeStreamingResponse$1.class
 differ

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/c79201c1/target/classes/org/apache/pirk/responder/wideskies/spark/streaming/ComputeStreamingResponse$2.class
----------------------------------------------------------------------
diff --git 
a/target/classes/org/apache/pirk/responder/wideskies/spark/streaming/ComputeStreamingResponse$2.class
 
b/target/classes/org/apache/pirk/responder/wideskies/spark/streaming/ComputeStreamingResponse$2.class
new file mode 100644
index 0000000..17f6d90
Binary files /dev/null and 
b/target/classes/org/apache/pirk/responder/wideskies/spark/streaming/ComputeStreamingResponse$2.class
 differ

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/c79201c1/target/classes/org/apache/pirk/responder/wideskies/spark/streaming/ComputeStreamingResponse$3.class
----------------------------------------------------------------------
diff --git 
a/target/classes/org/apache/pirk/responder/wideskies/spark/streaming/ComputeStreamingResponse$3.class
 
b/target/classes/org/apache/pirk/responder/wideskies/spark/streaming/ComputeStreamingResponse$3.class
new file mode 100644
index 0000000..65ac713
Binary files /dev/null and 
b/target/classes/org/apache/pirk/responder/wideskies/spark/streaming/ComputeStreamingResponse$3.class
 differ

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/c79201c1/target/classes/org/apache/pirk/responder/wideskies/spark/streaming/ComputeStreamingResponse.class
----------------------------------------------------------------------
diff --git 
a/target/classes/org/apache/pirk/responder/wideskies/spark/streaming/ComputeStreamingResponse.class
 
b/target/classes/org/apache/pirk/responder/wideskies/spark/streaming/ComputeStreamingResponse.class
new file mode 100644
index 0000000..17ffa11
Binary files /dev/null and 
b/target/classes/org/apache/pirk/responder/wideskies/spark/streaming/ComputeStreamingResponse.class
 differ

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/c79201c1/target/classes/org/apache/pirk/responder/wideskies/spark/streaming/FinalResponseFunction.class
----------------------------------------------------------------------
diff --git 
a/target/classes/org/apache/pirk/responder/wideskies/spark/streaming/FinalResponseFunction.class
 
b/target/classes/org/apache/pirk/responder/wideskies/spark/streaming/FinalResponseFunction.class
new file mode 100644
index 0000000..40689b1
Binary files /dev/null and 
b/target/classes/org/apache/pirk/responder/wideskies/spark/streaming/FinalResponseFunction.class
 differ

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/c79201c1/target/classes/org/apache/pirk/responder/wideskies/storm/EncColMultBolt.class
----------------------------------------------------------------------
diff --git 
a/target/classes/org/apache/pirk/responder/wideskies/storm/EncColMultBolt.class 
b/target/classes/org/apache/pirk/responder/wideskies/storm/EncColMultBolt.class
new file mode 100644
index 0000000..6d628af
Binary files /dev/null and 
b/target/classes/org/apache/pirk/responder/wideskies/storm/EncColMultBolt.class 
differ

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/c79201c1/target/classes/org/apache/pirk/responder/wideskies/storm/EncRowCalcBolt.class
----------------------------------------------------------------------
diff --git 
a/target/classes/org/apache/pirk/responder/wideskies/storm/EncRowCalcBolt.class 
b/target/classes/org/apache/pirk/responder/wideskies/storm/EncRowCalcBolt.class
new file mode 100644
index 0000000..6f9beeb
Binary files /dev/null and 
b/target/classes/org/apache/pirk/responder/wideskies/storm/EncRowCalcBolt.class 
differ

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/c79201c1/target/classes/org/apache/pirk/responder/wideskies/storm/OutputBolt.class
----------------------------------------------------------------------
diff --git 
a/target/classes/org/apache/pirk/responder/wideskies/storm/OutputBolt.class 
b/target/classes/org/apache/pirk/responder/wideskies/storm/OutputBolt.class
new file mode 100644
index 0000000..c46cfee
Binary files /dev/null and 
b/target/classes/org/apache/pirk/responder/wideskies/storm/OutputBolt.class 
differ

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/c79201c1/target/classes/org/apache/pirk/responder/wideskies/storm/PartitionDataBolt.class
----------------------------------------------------------------------
diff --git 
a/target/classes/org/apache/pirk/responder/wideskies/storm/PartitionDataBolt.class
 
b/target/classes/org/apache/pirk/responder/wideskies/storm/PartitionDataBolt.class
new file mode 100644
index 0000000..93bc8ee
Binary files /dev/null and 
b/target/classes/org/apache/pirk/responder/wideskies/storm/PartitionDataBolt.class
 differ

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/c79201c1/target/classes/org/apache/pirk/responder/wideskies/storm/PirkHashScheme.class
----------------------------------------------------------------------
diff --git 
a/target/classes/org/apache/pirk/responder/wideskies/storm/PirkHashScheme.class 
b/target/classes/org/apache/pirk/responder/wideskies/storm/PirkHashScheme.class
new file mode 100644
index 0000000..1bab92f
Binary files /dev/null and 
b/target/classes/org/apache/pirk/responder/wideskies/storm/PirkHashScheme.class 
differ

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/c79201c1/target/classes/org/apache/pirk/responder/wideskies/storm/PirkTopology.class
----------------------------------------------------------------------
diff --git 
a/target/classes/org/apache/pirk/responder/wideskies/storm/PirkTopology.class 
b/target/classes/org/apache/pirk/responder/wideskies/storm/PirkTopology.class
new file mode 100644
index 0000000..e41caad
Binary files /dev/null and 
b/target/classes/org/apache/pirk/responder/wideskies/storm/PirkTopology.class 
differ

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/c79201c1/target/classes/org/apache/pirk/responder/wideskies/storm/StormConstants.class
----------------------------------------------------------------------
diff --git 
a/target/classes/org/apache/pirk/responder/wideskies/storm/StormConstants.class 
b/target/classes/org/apache/pirk/responder/wideskies/storm/StormConstants.class
new file mode 100644
index 0000000..becf0f3
Binary files /dev/null and 
b/target/classes/org/apache/pirk/responder/wideskies/storm/StormConstants.class 
differ

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/c79201c1/target/classes/org/apache/pirk/responder/wideskies/storm/StormUtils.class
----------------------------------------------------------------------
diff --git 
a/target/classes/org/apache/pirk/responder/wideskies/storm/StormUtils.class 
b/target/classes/org/apache/pirk/responder/wideskies/storm/StormUtils.class
new file mode 100644
index 0000000..6ecf54d
Binary files /dev/null and 
b/target/classes/org/apache/pirk/responder/wideskies/storm/StormUtils.class 
differ

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/c79201c1/target/classes/org/apache/pirk/schema/data/DataSchema.class
----------------------------------------------------------------------
diff --git a/target/classes/org/apache/pirk/schema/data/DataSchema.class 
b/target/classes/org/apache/pirk/schema/data/DataSchema.class
index bfd44fb..bb8f7c2 100644
Binary files a/target/classes/org/apache/pirk/schema/data/DataSchema.class and 
b/target/classes/org/apache/pirk/schema/data/DataSchema.class differ

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/c79201c1/target/classes/org/apache/pirk/schema/data/DataSchemaLoader.class
----------------------------------------------------------------------
diff --git a/target/classes/org/apache/pirk/schema/data/DataSchemaLoader.class 
b/target/classes/org/apache/pirk/schema/data/DataSchemaLoader.class
index 92d0927..c631185 100644
Binary files 
a/target/classes/org/apache/pirk/schema/data/DataSchemaLoader.class and 
b/target/classes/org/apache/pirk/schema/data/DataSchemaLoader.class differ

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/c79201c1/target/classes/org/apache/pirk/schema/data/partitioner/PrimitiveTypePartitioner.class
----------------------------------------------------------------------
diff --git 
a/target/classes/org/apache/pirk/schema/data/partitioner/PrimitiveTypePartitioner.class
 
b/target/classes/org/apache/pirk/schema/data/partitioner/PrimitiveTypePartitioner.class
index f0da862..64c8277 100644
Binary files 
a/target/classes/org/apache/pirk/schema/data/partitioner/PrimitiveTypePartitioner.class
 and 
b/target/classes/org/apache/pirk/schema/data/partitioner/PrimitiveTypePartitioner.class
 differ

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/c79201c1/target/classes/org/apache/pirk/test/distributed/DistributedTestCLI.class
----------------------------------------------------------------------
diff --git 
a/target/classes/org/apache/pirk/test/distributed/DistributedTestCLI.class 
b/target/classes/org/apache/pirk/test/distributed/DistributedTestCLI.class
index d10d13c..17dddff 100644
Binary files 
a/target/classes/org/apache/pirk/test/distributed/DistributedTestCLI.class and 
b/target/classes/org/apache/pirk/test/distributed/DistributedTestCLI.class 
differ

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/c79201c1/target/classes/org/apache/pirk/test/distributed/DistributedTestDriver.class
----------------------------------------------------------------------
diff --git 
a/target/classes/org/apache/pirk/test/distributed/DistributedTestDriver.class 
b/target/classes/org/apache/pirk/test/distributed/DistributedTestDriver.class
index 5642016..4e700fd 100644
Binary files 
a/target/classes/org/apache/pirk/test/distributed/DistributedTestDriver.class 
and 
b/target/classes/org/apache/pirk/test/distributed/DistributedTestDriver.class 
differ

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/c79201c1/target/classes/org/apache/pirk/test/distributed/testsuite/DistTestSuite.class
----------------------------------------------------------------------
diff --git 
a/target/classes/org/apache/pirk/test/distributed/testsuite/DistTestSuite.class 
b/target/classes/org/apache/pirk/test/distributed/testsuite/DistTestSuite.class
index 66a71c7..7dfaa30 100644
Binary files 
a/target/classes/org/apache/pirk/test/distributed/testsuite/DistTestSuite.class 
and 
b/target/classes/org/apache/pirk/test/distributed/testsuite/DistTestSuite.class 
differ

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/c79201c1/target/classes/org/apache/pirk/test/utils/BaseTests.class
----------------------------------------------------------------------
diff --git a/target/classes/org/apache/pirk/test/utils/BaseTests.class 
b/target/classes/org/apache/pirk/test/utils/BaseTests.class
index 5c85422..65e33ab 100644
Binary files a/target/classes/org/apache/pirk/test/utils/BaseTests.class and 
b/target/classes/org/apache/pirk/test/utils/BaseTests.class differ

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/c79201c1/target/classes/org/apache/pirk/test/utils/Inputs.class
----------------------------------------------------------------------
diff --git a/target/classes/org/apache/pirk/test/utils/Inputs.class 
b/target/classes/org/apache/pirk/test/utils/Inputs.class
index f38b9b4..ea6162a 100644
Binary files a/target/classes/org/apache/pirk/test/utils/Inputs.class and 
b/target/classes/org/apache/pirk/test/utils/Inputs.class differ

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/c79201c1/target/classes/org/apache/pirk/test/utils/StandaloneQuery.class
----------------------------------------------------------------------
diff --git a/target/classes/org/apache/pirk/test/utils/StandaloneQuery.class 
b/target/classes/org/apache/pirk/test/utils/StandaloneQuery.class
index e0addfb..858ef1b 100644
Binary files a/target/classes/org/apache/pirk/test/utils/StandaloneQuery.class 
and b/target/classes/org/apache/pirk/test/utils/StandaloneQuery.class differ

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/c79201c1/target/classes/org/apache/pirk/test/utils/TestUtils.class
----------------------------------------------------------------------
diff --git a/target/classes/org/apache/pirk/test/utils/TestUtils.class 
b/target/classes/org/apache/pirk/test/utils/TestUtils.class
index 13d2c83..ce6ae44 100644
Binary files a/target/classes/org/apache/pirk/test/utils/TestUtils.class and 
b/target/classes/org/apache/pirk/test/utils/TestUtils.class differ

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/c79201c1/target/classes/org/apache/pirk/utils/FileIOUtils.class
----------------------------------------------------------------------
diff --git a/target/classes/org/apache/pirk/utils/FileIOUtils.class 
b/target/classes/org/apache/pirk/utils/FileIOUtils.class
index 2777ecf..4a95c43 100644
Binary files a/target/classes/org/apache/pirk/utils/FileIOUtils.class and 
b/target/classes/org/apache/pirk/utils/FileIOUtils.class differ

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/c79201c1/target/classes/org/apache/pirk/utils/QueryResultsWriter.class
----------------------------------------------------------------------
diff --git a/target/classes/org/apache/pirk/utils/QueryResultsWriter.class 
b/target/classes/org/apache/pirk/utils/QueryResultsWriter.class
new file mode 100644
index 0000000..36d5a17
Binary files /dev/null and 
b/target/classes/org/apache/pirk/utils/QueryResultsWriter.class differ

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/c79201c1/target/classes/org/apache/pirk/utils/SystemConfiguration$1.class
----------------------------------------------------------------------
diff --git a/target/classes/org/apache/pirk/utils/SystemConfiguration$1.class 
b/target/classes/org/apache/pirk/utils/SystemConfiguration$1.class
index 56e9381..f9447d6 100644
Binary files a/target/classes/org/apache/pirk/utils/SystemConfiguration$1.class 
and b/target/classes/org/apache/pirk/utils/SystemConfiguration$1.class differ

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/c79201c1/target/classes/org/apache/pirk/utils/SystemConfiguration.class
----------------------------------------------------------------------
diff --git a/target/classes/org/apache/pirk/utils/SystemConfiguration.class 
b/target/classes/org/apache/pirk/utils/SystemConfiguration.class
index 81b0d6f..ac9a5a3 100644
Binary files a/target/classes/org/apache/pirk/utils/SystemConfiguration.class 
and b/target/classes/org/apache/pirk/utils/SystemConfiguration.class differ

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/c79201c1/target/classes/pirk.properties
----------------------------------------------------------------------
diff --git a/target/classes/pirk.properties b/target/classes/pirk.properties
index f8efea7..a88c846 100644
--- a/target/classes/pirk.properties
+++ b/target/classes/pirk.properties
@@ -81,7 +81,7 @@ query.schemas = none
 ##
 
 #ES host address - One Elasticsearch node in the cluster - may include port 
specification
-es.nodes= none
+es.nodes=none
           
 #Default HTTP/REST port used for connecting to Elasticsearch 
 es.port=9200
@@ -106,7 +106,7 @@ test.es.type = pkt
 
 #Elasticsearch resource - Elasticsearch resource location where data is read 
and written to. 
 #Requires the format <index>/<type> 
-test.es.resource= none
+test.es.resource= /testindex/pkt
 
 #Pathname in hdfs to place input JSON file testing
 test.inputJSONFile = /tmp/testJSONInput
@@ -228,9 +228,3 @@ pir.expDir = none
                
 #Parallelism for expLookupTable creation in hdfs 
 pir.expCreationSplits = 600
-
-
-
-
-
-

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/c79201c1/target/classes/responder.properties
----------------------------------------------------------------------
diff --git a/target/classes/responder.properties 
b/target/classes/responder.properties
index 11ad7f6..ac6cb35 100644
--- a/target/classes/responder.properties
+++ b/target/classes/responder.properties
@@ -27,7 +27,7 @@ pir.dataInputFormat=
 #outputFile -- required -- Fully qualified name of output file in hdfs
 pir.outputFile=
 
-#platform -- required -- 'mapreduce', 'spark', or 'standalone'
+#platform -- required -- 'mapreduce', 'spark', 'sparkstreaming', or 
'standalone'
 #Processing platform technology for the responder                
 platform= 
 
@@ -134,4 +134,67 @@ pir.queryInput=
 
 #numExpLookupPartitions -- optional -- Number of partitions for the exp lookup 
table
 #pir.numExpLookupPartitions=
- 
\ No newline at end of file
+
+##Props for Spark Streaming
+
+#batchSeconds - optional - Batch size (in seconds) for Spark Streaming - 
defaults to 30 sec
+#pir.sparkstreaming.batchSeconds=
+
+#windowLength - optional - Window size (in seconds) for Spark Streaming - 
defaults to 60 sec
+#pir.sparkstreaming.windowLength=
+
+#queueStream - optional - Use queue stream for Spark Streaming - defaults to 
false
+#pir.sparkstreaming.useQueueStream=
+
+#pir.sparkstreaming.maxBatches - optional - Spark Streaming - Max number of 
batches to process 
+#defaults to -1 (no maximum)
+#pir.sparkstreaming.maxBatches=
+
+#spark.streaming.stopGracefullyOnShutdown - Spark Streaming - Whether or not 
to stop 'gracefully' during shutdown
+#default is false
+#spark.streaming.stopGracefullyOnShutdown=
+
+ ##Properties for Kafka
+ #kafka.topic = topicName
+ #kafka.clientId = pirk_spout
+
+ # Kafka Zookeepers
+ #kafka.zk = localhost:2181
+ # Read from beginning of Kafka topic on startup
+ #kafka.forceFromStart = false
+
+
+ ##Properties for Storm
+ #storm.topoName = pir
+ #storm.workers = 1
+ #storm.numAckers = 1
+ #storm.maxSpoutPending=10
+ #storm.worker.heapMemory=6000
+ #storm.componentOnheapMem= 600.0
+
+ # This should be set to the number of Kafka partitions
+ #storm.spout.parallelism = 1
+
+ #storm.hashbolt.parallelism = 1
+ #storm.encrowcalcbolt.parallelism = 1
+ # This bolt is most computationally expensive and should have the highest 
value
+ #storm.enccolmultbolt.parallelism = 2
+
+ # These may be useful for tuning
+ #storm.executor.receiveBufferSize = 1024
+ #storm.executor.sendBufferSize = 1024
+ #storm.transferBufferSize = 8
+
+ # Frequency with which PIR matrix elements are flushed out
+ #storm.encrowcalcbolt.ticktuple = 60
+
+ # Design configurations:
+ # Hashbolt emits individual tuples for each data partition when 
splitPartitions =true
+ # emits the batch of data partitions for a record in a single tuple when 
=false
+ #storm.splitPartitions = true
+ # A task running EncColMultBolt will only be responsible for multiplying a 
subset of the row
+ # for any individual column when saltColumns = true
+ # All multiplication for a single column is done on a single EncColMultBolt 
instance when = false
+ #storm.saltColumns = true
+ # Only makes sense to tune if saltColumns=true
+ #storm.rowDivs = 1

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/c79201c1/target/maven-archiver/pom.properties
----------------------------------------------------------------------
diff --git a/target/maven-archiver/pom.properties 
b/target/maven-archiver/pom.properties
index bf313ef..d796a24 100644
--- a/target/maven-archiver/pom.properties
+++ b/target/maven-archiver/pom.properties
@@ -1,4 +1,4 @@
 #Created by Apache Maven 3.3.3
-version=0.1.0-incubating
+version=0.2.0-incubating-SNAPSHOT
 groupId=org.apache.pirk
-artifactId=pirk
+artifactId=apache-pirk

Reply via email to