You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@calcite.apache.org by jh...@apache.org on 2016/02/19 23:12:27 UTC

svn commit: r1731301 - in /calcite/site: community/ develop/ docs/ news/ news/2014/06/27/release-0.8.0-incubating/ news/2014/08/19/release-0.9.0-incubating/ news/2014/10/02/release-0.9.1-incubating/ news/2014/11/05/release-0.9.2-incubating/ news/2015/0...

Author: jhyde
Date: Fri Feb 19 22:12:26 2016
New Revision: 1731301

URL: http://svn.apache.org/viewvc?rev=1731301&view=rev
Log:
Add Josh Elser to PMC; streaming SQL talk; add Cassandra adapter

Modified:
    calcite/site/community/index.html
    calcite/site/develop/index.html
    calcite/site/docs/adapter.html
    calcite/site/docs/howto.html
    calcite/site/docs/stream.html
    calcite/site/news/2014/06/27/release-0.8.0-incubating/index.html
    calcite/site/news/2014/08/19/release-0.9.0-incubating/index.html
    calcite/site/news/2014/10/02/release-0.9.1-incubating/index.html
    calcite/site/news/2014/11/05/release-0.9.2-incubating/index.html
    calcite/site/news/2015/01/31/release-1.0.0-incubating/index.html
    calcite/site/news/2015/03/13/release-1.1.0-incubating/index.html
    calcite/site/news/2015/04/07/release-1.2.0-incubating/index.html
    calcite/site/news/2015/04/24/new-committers/index.html
    calcite/site/news/2015/05/30/release-1.3.0-incubating/index.html
    calcite/site/news/2015/06/05/algebra-builder/index.html
    calcite/site/news/2015/07/31/xldb-best-lightning-talk/index.html
    calcite/site/news/2015/09/02/release-1.4.0-incubating/index.html
    calcite/site/news/2015/10/22/calcite-graduates/index.html
    calcite/site/news/2015/11/08/new-committers/index.html
    calcite/site/news/2015/11/10/release-1.5.0/index.html
    calcite/site/news/2016/01/22/release-1.6.0/index.html
    calcite/site/news/index.html
    calcite/site/news/releases/index.html

Modified: calcite/site/community/index.html
URL: http://svn.apache.org/viewvc/calcite/site/community/index.html?rev=1731301&r1=1731300&r2=1731301&view=diff
==============================================================================
--- calcite/site/community/index.html (original)
+++ calcite/site/community/index.html Fri Feb 19 22:12:26 2016
@@ -94,6 +94,7 @@
       <li><a href="#apache-calcite-one-planner-fits-all">Apache Calcite: One planner fits all</a></li>
       <li><a href="#why-you-care-about-relational-algebra-even-though-you-didnt-know-it">Why you care about relational algebra (even though you didn’t know it)</a></li>
       <li><a href="#apache-calcite-overview">Apache Calcite overview</a></li>
+      <li><a href="#streaming-sql">Streaming SQL</a></li>
       <li><a href="#more-talks">More talks</a></li>
     </ul>
   </li>
@@ -163,7 +164,7 @@
       <td style="text-align: left">Josh Elser (<a href="http://people.apache.org/committer-index#elserj">elserj</a>)</td>
       <td style="text-align: left"><a href="http://github.com/joshelser"><img width="64" src="http://github.com/joshelser.png" /></a></td>
       <td style="text-align: left">Hortonworks</td>
-      <td style="text-align: left">Committer</td>
+      <td style="text-align: left">PMC</td>
     </tr>
     <tr>
       <td style="text-align: left">Julian Hyde (<a href="http://people.apache.org/committer-index#jhyde">jhyde</a>)</td>
@@ -274,6 +275,14 @@ The code is available on <a href="https:
 
 <iframe src="//www.slideshare.net/slideshow/embed_code/key/fCGsAedsQiq53V" width="629" height="354" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" style="border:1px solid #CCC; border-width:1px; margin-bottom:5px; max-width: 100%;" allowfullscreen=""> </iframe>
 
+<h2 id="streaming-sql">Streaming SQL</h2>
+
+<p>At Samza meetup, Mountain View, CA, 2016
+[<a href="http://www.ustream.tv/recorded/83322450#to00:55:48">video</a>],
+[<a href="http://www.slideshare.net/julianhyde/streaming-sql">slides</a>].</p>
+
+<iframe src="//www.slideshare.net/slideshow/embed_code/key/rzaptOy3H8K6Gz" width="595" height="485" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" style="border:1px solid #CCC; border-width:1px; margin-bottom:5px; max-width: 100%;" allowfullscreen=""> </iframe>
+
 <h2 id="more-talks">More talks</h2>
 
 <ul>

Modified: calcite/site/develop/index.html
URL: http://svn.apache.org/viewvc/calcite/site/develop/index.html?rev=1731301&r1=1731300&r2=1731301&view=diff
==============================================================================
--- calcite/site/develop/index.html (original)
+++ calcite/site/develop/index.html Fri Feb 19 22:12:26 2016
@@ -120,11 +120,6 @@ then build using maven:</p>
 <span class="nv">$ </span><span class="nb">cd </span>calcite
 <span class="nv">$ </span>mvn install</code></pre></div>
 
-<p>If you need to re-build from scratch, clean and install as two separate steps:</p>
-
-<div class="highlight"><pre><code class="language-bash" data-lang="bash"><span class="nv">$ </span>mvn clean
-<span class="nv">$ </span>mvn install</code></pre></div>
-
 <p>The HOWTO describes how to
 <a href="/docs/howto.html#building-from-a-source-distribution">build from a source distribution</a>,
 <a href="/docs/howto.html#running-tests">run more or fewer tests</a> and

Modified: calcite/site/docs/adapter.html
URL: http://svn.apache.org/viewvc/calcite/site/docs/adapter.html?rev=1731301&r1=1731300&r2=1731301&view=diff
==============================================================================
--- calcite/site/docs/adapter.html (original)
+++ calcite/site/docs/adapter.html Fri Feb 19 22:12:26 2016
@@ -708,6 +708,7 @@
 <ul>
   <li><a href="https://github.com/apache/drill">Apache Drill adapter</a></li>
   <li>Cascading adapter (<a href="https://github.com/Cascading/lingual">Lingual</a>)</li>
+  <li>Cassandra adapter (<a href="/apidocs/org/apache/calcite/adapter/cassandra/package-summary.html">calcite-cassandra</a>)</li>
   <li>CSV adapter (<a href="/apidocs/org/apache/calcite/adapter/csv/package-summary.html">example/csv</a>)</li>
   <li>JDBC adapter (part of <a href="/apidocs/org/apache/calcite/adapter/jdbc/package-summary.html">calcite-core</a>)</li>
   <li>MongoDB adapter (<a href="/apidocs/org/apache/calcite/adapter/mongodb/package-summary.html">calcite-mongodb</a>)</li>

Modified: calcite/site/docs/howto.html
URL: http://svn.apache.org/viewvc/calcite/site/docs/howto.html?rev=1731301&r1=1731300&r2=1731301&view=diff
==============================================================================
--- calcite/site/docs/howto.html (original)
+++ calcite/site/docs/howto.html Fri Feb 19 22:12:26 2016
@@ -776,6 +776,20 @@ then build using maven:</p>
 <span class="nv">$ </span><span class="nb">cd </span>calcite
 <span class="nv">$ </span>mvn install</code></pre></div>
 
+<p>Calcite includes a number of machine-generated codes. By default, these are
+regenerated on every build, but this has the negative side-effect of causing
+a re-compilation of the entire project when the non-machine-generated code
+has not changed. To make sure incremental compilation still works as intended,
+provide the <code>skipGenerate</code> command line option with your maven command.
+If you invoke the <code>clean</code> lifecycle phase, you must not specify the
+<code>skipGenerate</code> option as it will not recompile the necessary code for the build
+to succeed.</p>
+
+<div class="highlight"><pre><code class="language-bash" data-lang="bash"><span class="nv">$ </span>mvn clean
+<span class="nv">$ </span>mvn package
+... hacks ...
+<span class="nv">$ </span>mvn package -DskipGenerate</code></pre></div>
+
 <p><a href="#running-tests">Running tests</a> describes how to run more or fewer
 tests.</p>
 
@@ -784,9 +798,7 @@ tests.</p>
 <p>The test suite will run by default when you build, unless you specify
 <code>-DskipTests</code>:</p>
 
-<div class="highlight"><pre><code class="language-bash" data-lang="bash"><span class="c"># Note: &quot;mvn clean install&quot; does not work; use &quot;mvn clean&quot; then &quot;mvn install&quot;</span>
-<span class="nv">$ </span>mvn clean
-<span class="nv">$ </span>mvn -DskipTests install
+<div class="highlight"><pre><code class="language-bash" data-lang="bash"><span class="nv">$ </span>mvn -DskipTests clean install
 <span class="nv">$ </span>mvn <span class="nb">test</span></code></pre></div>
 
 <p>There are other options that control which tests are run, and in what

Modified: calcite/site/docs/stream.html
URL: http://svn.apache.org/viewvc/calcite/site/docs/stream.html?rev=1731301&r1=1731300&r2=1731301&view=diff
==============================================================================
--- calcite/site/docs/stream.html (original)
+++ calcite/site/docs/stream.html Fri Feb 19 22:12:26 2016
@@ -882,7 +882,15 @@ at or after 11:00:00, it will never see
 total.</p>
 
 <p>A column or expression that is increasing or decreasing is said to be
-<em>monotonic</em>. Without a monotonic expression in the <code>GROUP BY</code> clause, Calcite is
+<em>monotonic</em>.</p>
+
+<p>If column or expression has values that are slightly out of order,
+and the stream has a mechanism (such as punctuation or watermarks)
+to declare that a particular value will never be seen again, then
+the column or expression is said to be <em>quasi-monotonic</em>.</p>
+
+<p>Without a monotonic or quasi-monotonic expression in the <code>GROUP BY</code> clause,
+Calcite is
 not able to make progress, and it will not allow the query:</p>
 
 <div class="highlight"><pre><code class="language-sql" data-lang="sql"><span class="o">&gt;</span> <span class="k">SELECT</span> <span class="n">STREAM</span> <span class="n">productId</span><span class="p">,</span>
@@ -892,7 +900,8 @@ not able to make progress, and it will n
 <span class="o">&gt;</span> <span class="k">GROUP</span> <span class="k">BY</span> <span class="n">productId</span><span class="p">;</span>
 <span class="n">ERROR</span><span class="p">:</span> <span class="n">Streaming</span> <span class="n">aggregation</span> <span class="n">requires</span> <span class="k">at</span> <span class="n">least</span> <span class="n">one</span> <span class="n">monotonic</span> <span class="n">expression</span> <span class="k">in</span> <span class="k">GROUP</span> <span class="k">BY</span> <span class="n">clause</span></code></pre></div>
 
-<p>Monotonic columns need to be declared in the schema. The monotonicity is
+<p>Monotonic and quasi-monotonic columns need to be declared in the schema.
+The monotonicity is
 enforced when records enter the stream and assumed by queries that read from
 that stream. We recommend that you give each stream a timestamp column called
 <code>rowtime</code>, but you can declare others, <code>orderId</code>, for example.</p>

Modified: calcite/site/news/2014/06/27/release-0.8.0-incubating/index.html
URL: http://svn.apache.org/viewvc/calcite/site/news/2014/06/27/release-0.8.0-incubating/index.html?rev=1731301&r1=1731300&r2=1731301&view=diff
==============================================================================
--- calcite/site/news/2014/06/27/release-0.8.0-incubating/index.html (original)
+++ calcite/site/news/2014/06/27/release-0.8.0-incubating/index.html Fri Feb 19 22:12:26 2016
@@ -85,6 +85,10 @@
     <option value="/news/">Home</option>
     <optgroup label="v1.x">
       
+      <option value="/news/2016/02/17/streaming-sql-talk/">Streaming SQL in Samza</option>
+      
+      <option value="/news/2016/02/17/elser-pmc/">Calcite appoints Josh Elser to PMC</option>
+      
       <option value="/news/2016/01/22/release-1.6.0/">Release 1.6.0</option>
       
       <option value="/news/2015/11/10/release-1.5.0/">Release 1.5.0</option>
@@ -240,6 +244,18 @@ new utility, <code>SqlRun</code>.</p>
     <ul>
         
         
+        <li class="">
+          <a href="/news/2016/02/17/streaming-sql-talk/">Streaming SQL in Samza</a>
+        </li>
+        
+        
+        
+        <li class="">
+          <a href="/news/2016/02/17/elser-pmc/">Calcite appoints Josh Elser to PMC</a>
+        </li>
+        
+        
+        
         
         
         

Modified: calcite/site/news/2014/08/19/release-0.9.0-incubating/index.html
URL: http://svn.apache.org/viewvc/calcite/site/news/2014/08/19/release-0.9.0-incubating/index.html?rev=1731301&r1=1731300&r2=1731301&view=diff
==============================================================================
--- calcite/site/news/2014/08/19/release-0.9.0-incubating/index.html (original)
+++ calcite/site/news/2014/08/19/release-0.9.0-incubating/index.html Fri Feb 19 22:12:26 2016
@@ -85,6 +85,10 @@
     <option value="/news/">Home</option>
     <optgroup label="v1.x">
       
+      <option value="/news/2016/02/17/streaming-sql-talk/">Streaming SQL in Samza</option>
+      
+      <option value="/news/2016/02/17/elser-pmc/">Calcite appoints Josh Elser to PMC</option>
+      
       <option value="/news/2016/01/22/release-1.6.0/">Release 1.6.0</option>
       
       <option value="/news/2015/11/10/release-1.5.0/">Release 1.5.0</option>
@@ -238,6 +242,18 @@
     <ul>
         
         
+        <li class="">
+          <a href="/news/2016/02/17/streaming-sql-talk/">Streaming SQL in Samza</a>
+        </li>
+        
+        
+        
+        <li class="">
+          <a href="/news/2016/02/17/elser-pmc/">Calcite appoints Josh Elser to PMC</a>
+        </li>
+        
+        
+        
         
         
         

Modified: calcite/site/news/2014/10/02/release-0.9.1-incubating/index.html
URL: http://svn.apache.org/viewvc/calcite/site/news/2014/10/02/release-0.9.1-incubating/index.html?rev=1731301&r1=1731300&r2=1731301&view=diff
==============================================================================
--- calcite/site/news/2014/10/02/release-0.9.1-incubating/index.html (original)
+++ calcite/site/news/2014/10/02/release-0.9.1-incubating/index.html Fri Feb 19 22:12:26 2016
@@ -85,6 +85,10 @@
     <option value="/news/">Home</option>
     <optgroup label="v1.x">
       
+      <option value="/news/2016/02/17/streaming-sql-talk/">Streaming SQL in Samza</option>
+      
+      <option value="/news/2016/02/17/elser-pmc/">Calcite appoints Josh Elser to PMC</option>
+      
       <option value="/news/2016/01/22/release-1.6.0/">Release 1.6.0</option>
       
       <option value="/news/2015/11/10/release-1.5.0/">Release 1.5.0</option>
@@ -238,6 +242,18 @@
     <ul>
         
         
+        <li class="">
+          <a href="/news/2016/02/17/streaming-sql-talk/">Streaming SQL in Samza</a>
+        </li>
+        
+        
+        
+        <li class="">
+          <a href="/news/2016/02/17/elser-pmc/">Calcite appoints Josh Elser to PMC</a>
+        </li>
+        
+        
+        
         
         
         

Modified: calcite/site/news/2014/11/05/release-0.9.2-incubating/index.html
URL: http://svn.apache.org/viewvc/calcite/site/news/2014/11/05/release-0.9.2-incubating/index.html?rev=1731301&r1=1731300&r2=1731301&view=diff
==============================================================================
--- calcite/site/news/2014/11/05/release-0.9.2-incubating/index.html (original)
+++ calcite/site/news/2014/11/05/release-0.9.2-incubating/index.html Fri Feb 19 22:12:26 2016
@@ -85,6 +85,10 @@
     <option value="/news/">Home</option>
     <optgroup label="v1.x">
       
+      <option value="/news/2016/02/17/streaming-sql-talk/">Streaming SQL in Samza</option>
+      
+      <option value="/news/2016/02/17/elser-pmc/">Calcite appoints Josh Elser to PMC</option>
+      
       <option value="/news/2016/01/22/release-1.6.0/">Release 1.6.0</option>
       
       <option value="/news/2015/11/10/release-1.5.0/">Release 1.5.0</option>
@@ -241,6 +245,18 @@ before you move on to 1.0.</p>
     <ul>
         
         
+        <li class="">
+          <a href="/news/2016/02/17/streaming-sql-talk/">Streaming SQL in Samza</a>
+        </li>
+        
+        
+        
+        <li class="">
+          <a href="/news/2016/02/17/elser-pmc/">Calcite appoints Josh Elser to PMC</a>
+        </li>
+        
+        
+        
         
         
         

Modified: calcite/site/news/2015/01/31/release-1.0.0-incubating/index.html
URL: http://svn.apache.org/viewvc/calcite/site/news/2015/01/31/release-1.0.0-incubating/index.html?rev=1731301&r1=1731300&r2=1731301&view=diff
==============================================================================
--- calcite/site/news/2015/01/31/release-1.0.0-incubating/index.html (original)
+++ calcite/site/news/2015/01/31/release-1.0.0-incubating/index.html Fri Feb 19 22:12:26 2016
@@ -85,6 +85,10 @@
     <option value="/news/">Home</option>
     <optgroup label="v1.x">
       
+      <option value="/news/2016/02/17/streaming-sql-talk/">Streaming SQL in Samza</option>
+      
+      <option value="/news/2016/02/17/elser-pmc/">Calcite appoints Josh Elser to PMC</option>
+      
       <option value="/news/2016/01/22/release-1.6.0/">Release 1.6.0</option>
       
       <option value="/news/2015/11/10/release-1.5.0/">Release 1.5.0</option>
@@ -251,6 +255,18 @@ and fixes about 30 bugs.</p>
     <ul>
         
         
+        <li class="">
+          <a href="/news/2016/02/17/streaming-sql-talk/">Streaming SQL in Samza</a>
+        </li>
+        
+        
+        
+        <li class="">
+          <a href="/news/2016/02/17/elser-pmc/">Calcite appoints Josh Elser to PMC</a>
+        </li>
+        
+        
+        
         
         
         

Modified: calcite/site/news/2015/03/13/release-1.1.0-incubating/index.html
URL: http://svn.apache.org/viewvc/calcite/site/news/2015/03/13/release-1.1.0-incubating/index.html?rev=1731301&r1=1731300&r2=1731301&view=diff
==============================================================================
--- calcite/site/news/2015/03/13/release-1.1.0-incubating/index.html (original)
+++ calcite/site/news/2015/03/13/release-1.1.0-incubating/index.html Fri Feb 19 22:12:26 2016
@@ -85,6 +85,10 @@
     <option value="/news/">Home</option>
     <optgroup label="v1.x">
       
+      <option value="/news/2016/02/17/streaming-sql-talk/">Streaming SQL in Samza</option>
+      
+      <option value="/news/2016/02/17/elser-pmc/">Calcite appoints Josh Elser to PMC</option>
+      
       <option value="/news/2016/01/22/release-1.6.0/">Release 1.6.0</option>
       
       <option value="/news/2015/11/10/release-1.5.0/">Release 1.5.0</option>
@@ -250,6 +254,18 @@ calling constructors directly.</p>
     <ul>
         
         
+        <li class="">
+          <a href="/news/2016/02/17/streaming-sql-talk/">Streaming SQL in Samza</a>
+        </li>
+        
+        
+        
+        <li class="">
+          <a href="/news/2016/02/17/elser-pmc/">Calcite appoints Josh Elser to PMC</a>
+        </li>
+        
+        
+        
         
         
         

Modified: calcite/site/news/2015/04/07/release-1.2.0-incubating/index.html
URL: http://svn.apache.org/viewvc/calcite/site/news/2015/04/07/release-1.2.0-incubating/index.html?rev=1731301&r1=1731300&r2=1731301&view=diff
==============================================================================
--- calcite/site/news/2015/04/07/release-1.2.0-incubating/index.html (original)
+++ calcite/site/news/2015/04/07/release-1.2.0-incubating/index.html Fri Feb 19 22:12:26 2016
@@ -85,6 +85,10 @@
     <option value="/news/">Home</option>
     <optgroup label="v1.x">
       
+      <option value="/news/2016/02/17/streaming-sql-talk/">Streaming SQL in Samza</option>
+      
+      <option value="/news/2016/02/17/elser-pmc/">Calcite appoints Josh Elser to PMC</option>
+      
       <option value="/news/2016/01/22/release-1.6.0/">Release 1.6.0</option>
       
       <option value="/news/2015/11/10/release-1.5.0/">Release 1.5.0</option>
@@ -250,6 +254,18 @@ improve implicit and explicit conversion
     <ul>
         
         
+        <li class="">
+          <a href="/news/2016/02/17/streaming-sql-talk/">Streaming SQL in Samza</a>
+        </li>
+        
+        
+        
+        <li class="">
+          <a href="/news/2016/02/17/elser-pmc/">Calcite appoints Josh Elser to PMC</a>
+        </li>
+        
+        
+        
         
         
         

Modified: calcite/site/news/2015/04/24/new-committers/index.html
URL: http://svn.apache.org/viewvc/calcite/site/news/2015/04/24/new-committers/index.html?rev=1731301&r1=1731300&r2=1731301&view=diff
==============================================================================
--- calcite/site/news/2015/04/24/new-committers/index.html (original)
+++ calcite/site/news/2015/04/24/new-committers/index.html Fri Feb 19 22:12:26 2016
@@ -85,6 +85,10 @@
     <option value="/news/">Home</option>
     <optgroup label="v1.x">
       
+      <option value="/news/2016/02/17/streaming-sql-talk/">Streaming SQL in Samza</option>
+      
+      <option value="/news/2016/02/17/elser-pmc/">Calcite appoints Josh Elser to PMC</option>
+      
       <option value="/news/2016/01/22/release-1.6.0/">Release 1.6.0</option>
       
       <option value="/news/2015/11/10/release-1.5.0/">Release 1.5.0</option>
@@ -244,6 +248,18 @@ committers for their work on Calcite. We
     <ul>
         
         
+        <li class="">
+          <a href="/news/2016/02/17/streaming-sql-talk/">Streaming SQL in Samza</a>
+        </li>
+        
+        
+        
+        <li class="">
+          <a href="/news/2016/02/17/elser-pmc/">Calcite appoints Josh Elser to PMC</a>
+        </li>
+        
+        
+        
         
         
         

Modified: calcite/site/news/2015/05/30/release-1.3.0-incubating/index.html
URL: http://svn.apache.org/viewvc/calcite/site/news/2015/05/30/release-1.3.0-incubating/index.html?rev=1731301&r1=1731300&r2=1731301&view=diff
==============================================================================
--- calcite/site/news/2015/05/30/release-1.3.0-incubating/index.html (original)
+++ calcite/site/news/2015/05/30/release-1.3.0-incubating/index.html Fri Feb 19 22:12:26 2016
@@ -85,6 +85,10 @@
     <option value="/news/">Home</option>
     <optgroup label="v1.x">
       
+      <option value="/news/2016/02/17/streaming-sql-talk/">Streaming SQL in Samza</option>
+      
+      <option value="/news/2016/02/17/elser-pmc/">Calcite appoints Josh Elser to PMC</option>
+      
       <option value="/news/2016/01/22/release-1.6.0/">Release 1.6.0</option>
       
       <option value="/news/2015/11/10/release-1.5.0/">Release 1.5.0</option>
@@ -242,6 +246,18 @@ and various improvements to Avatica.</p>
     <ul>
         
         
+        <li class="">
+          <a href="/news/2016/02/17/streaming-sql-talk/">Streaming SQL in Samza</a>
+        </li>
+        
+        
+        
+        <li class="">
+          <a href="/news/2016/02/17/elser-pmc/">Calcite appoints Josh Elser to PMC</a>
+        </li>
+        
+        
+        
         
         
         

Modified: calcite/site/news/2015/06/05/algebra-builder/index.html
URL: http://svn.apache.org/viewvc/calcite/site/news/2015/06/05/algebra-builder/index.html?rev=1731301&r1=1731300&r2=1731301&view=diff
==============================================================================
--- calcite/site/news/2015/06/05/algebra-builder/index.html (original)
+++ calcite/site/news/2015/06/05/algebra-builder/index.html Fri Feb 19 22:12:26 2016
@@ -85,6 +85,10 @@
     <option value="/news/">Home</option>
     <optgroup label="v1.x">
       
+      <option value="/news/2016/02/17/streaming-sql-talk/">Streaming SQL in Samza</option>
+      
+      <option value="/news/2016/02/17/elser-pmc/">Calcite appoints Josh Elser to PMC</option>
+      
       <option value="/news/2016/01/22/release-1.6.0/">Release 1.6.0</option>
       
       <option value="/news/2015/11/10/release-1.5.0/">Release 1.5.0</option>
@@ -289,6 +293,18 @@ extensive set of query-optimization rule
     <ul>
         
         
+        <li class="">
+          <a href="/news/2016/02/17/streaming-sql-talk/">Streaming SQL in Samza</a>
+        </li>
+        
+        
+        
+        <li class="">
+          <a href="/news/2016/02/17/elser-pmc/">Calcite appoints Josh Elser to PMC</a>
+        </li>
+        
+        
+        
         
         
         

Modified: calcite/site/news/2015/07/31/xldb-best-lightning-talk/index.html
URL: http://svn.apache.org/viewvc/calcite/site/news/2015/07/31/xldb-best-lightning-talk/index.html?rev=1731301&r1=1731300&r2=1731301&view=diff
==============================================================================
--- calcite/site/news/2015/07/31/xldb-best-lightning-talk/index.html (original)
+++ calcite/site/news/2015/07/31/xldb-best-lightning-talk/index.html Fri Feb 19 22:12:26 2016
@@ -85,6 +85,10 @@
     <option value="/news/">Home</option>
     <optgroup label="v1.x">
       
+      <option value="/news/2016/02/17/streaming-sql-talk/">Streaming SQL in Samza</option>
+      
+      <option value="/news/2016/02/17/elser-pmc/">Calcite appoints Josh Elser to PMC</option>
+      
       <option value="/news/2016/01/22/release-1.6.0/">Release 1.6.0</option>
       
       <option value="/news/2015/11/10/release-1.5.0/">Release 1.5.0</option>
@@ -249,6 +253,18 @@ and <a href="https://www.youtube.com/wat
     <ul>
         
         
+        <li class="">
+          <a href="/news/2016/02/17/streaming-sql-talk/">Streaming SQL in Samza</a>
+        </li>
+        
+        
+        
+        <li class="">
+          <a href="/news/2016/02/17/elser-pmc/">Calcite appoints Josh Elser to PMC</a>
+        </li>
+        
+        
+        
         
         
         

Modified: calcite/site/news/2015/09/02/release-1.4.0-incubating/index.html
URL: http://svn.apache.org/viewvc/calcite/site/news/2015/09/02/release-1.4.0-incubating/index.html?rev=1731301&r1=1731300&r2=1731301&view=diff
==============================================================================
--- calcite/site/news/2015/09/02/release-1.4.0-incubating/index.html (original)
+++ calcite/site/news/2015/09/02/release-1.4.0-incubating/index.html Fri Feb 19 22:12:26 2016
@@ -85,6 +85,10 @@
     <option value="/news/">Home</option>
     <optgroup label="v1.x">
       
+      <option value="/news/2016/02/17/streaming-sql-talk/">Streaming SQL in Samza</option>
+      
+      <option value="/news/2016/02/17/elser-pmc/">Calcite appoints Josh Elser to PMC</option>
+      
       <option value="/news/2016/01/22/release-1.6.0/">Release 1.6.0</option>
       
       <option value="/news/2015/11/10/release-1.5.0/">Release 1.5.0</option>
@@ -248,6 +252,18 @@ so that you can easily create relational
     <ul>
         
         
+        <li class="">
+          <a href="/news/2016/02/17/streaming-sql-talk/">Streaming SQL in Samza</a>
+        </li>
+        
+        
+        
+        <li class="">
+          <a href="/news/2016/02/17/elser-pmc/">Calcite appoints Josh Elser to PMC</a>
+        </li>
+        
+        
+        
         
         
         

Modified: calcite/site/news/2015/10/22/calcite-graduates/index.html
URL: http://svn.apache.org/viewvc/calcite/site/news/2015/10/22/calcite-graduates/index.html?rev=1731301&r1=1731300&r2=1731301&view=diff
==============================================================================
--- calcite/site/news/2015/10/22/calcite-graduates/index.html (original)
+++ calcite/site/news/2015/10/22/calcite-graduates/index.html Fri Feb 19 22:12:26 2016
@@ -85,6 +85,10 @@
     <option value="/news/">Home</option>
     <optgroup label="v1.x">
       
+      <option value="/news/2016/02/17/streaming-sql-talk/">Streaming SQL in Samza</option>
+      
+      <option value="/news/2016/02/17/elser-pmc/">Calcite appoints Josh Elser to PMC</option>
+      
       <option value="/news/2016/01/22/release-1.6.0/">Release 1.6.0</option>
       
       <option value="/news/2015/11/10/release-1.5.0/">Release 1.5.0</option>
@@ -270,6 +274,18 @@ celebrated with a graduation cake.</p>
     <ul>
         
         
+        <li class="">
+          <a href="/news/2016/02/17/streaming-sql-talk/">Streaming SQL in Samza</a>
+        </li>
+        
+        
+        
+        <li class="">
+          <a href="/news/2016/02/17/elser-pmc/">Calcite appoints Josh Elser to PMC</a>
+        </li>
+        
+        
+        
         
         
         

Modified: calcite/site/news/2015/11/08/new-committers/index.html
URL: http://svn.apache.org/viewvc/calcite/site/news/2015/11/08/new-committers/index.html?rev=1731301&r1=1731300&r2=1731301&view=diff
==============================================================================
--- calcite/site/news/2015/11/08/new-committers/index.html (original)
+++ calcite/site/news/2015/11/08/new-committers/index.html Fri Feb 19 22:12:26 2016
@@ -85,6 +85,10 @@
     <option value="/news/">Home</option>
     <optgroup label="v1.x">
       
+      <option value="/news/2016/02/17/streaming-sql-talk/">Streaming SQL in Samza</option>
+      
+      <option value="/news/2016/02/17/elser-pmc/">Calcite appoints Josh Elser to PMC</option>
+      
       <option value="/news/2016/01/22/release-1.6.0/">Release 1.6.0</option>
       
       <option value="/news/2015/11/10/release-1.5.0/">Release 1.5.0</option>
@@ -241,6 +245,18 @@ committers for their work on Calcite. We
     <ul>
         
         
+        <li class="">
+          <a href="/news/2016/02/17/streaming-sql-talk/">Streaming SQL in Samza</a>
+        </li>
+        
+        
+        
+        <li class="">
+          <a href="/news/2016/02/17/elser-pmc/">Calcite appoints Josh Elser to PMC</a>
+        </li>
+        
+        
+        
         
         
         

Modified: calcite/site/news/2015/11/10/release-1.5.0/index.html
URL: http://svn.apache.org/viewvc/calcite/site/news/2015/11/10/release-1.5.0/index.html?rev=1731301&r1=1731300&r2=1731301&view=diff
==============================================================================
--- calcite/site/news/2015/11/10/release-1.5.0/index.html (original)
+++ calcite/site/news/2015/11/10/release-1.5.0/index.html Fri Feb 19 22:12:26 2016
@@ -85,6 +85,10 @@
     <option value="/news/">Home</option>
     <optgroup label="v1.x">
       
+      <option value="/news/2016/02/17/streaming-sql-talk/">Streaming SQL in Samza</option>
+      
+      <option value="/news/2016/02/17/elser-pmc/">Calcite appoints Josh Elser to PMC</option>
+      
       <option value="/news/2016/01/22/release-1.6.0/">Release 1.6.0</option>
       
       <option value="/news/2015/11/10/release-1.5.0/">Release 1.5.0</option>
@@ -242,6 +246,18 @@
     <ul>
         
         
+        <li class="">
+          <a href="/news/2016/02/17/streaming-sql-talk/">Streaming SQL in Samza</a>
+        </li>
+        
+        
+        
+        <li class="">
+          <a href="/news/2016/02/17/elser-pmc/">Calcite appoints Josh Elser to PMC</a>
+        </li>
+        
+        
+        
         
         
         

Modified: calcite/site/news/2016/01/22/release-1.6.0/index.html
URL: http://svn.apache.org/viewvc/calcite/site/news/2016/01/22/release-1.6.0/index.html?rev=1731301&r1=1731300&r2=1731301&view=diff
==============================================================================
--- calcite/site/news/2016/01/22/release-1.6.0/index.html (original)
+++ calcite/site/news/2016/01/22/release-1.6.0/index.html Fri Feb 19 22:12:26 2016
@@ -85,6 +85,10 @@
     <option value="/news/">Home</option>
     <optgroup label="v1.x">
       
+      <option value="/news/2016/02/17/streaming-sql-talk/">Streaming SQL in Samza</option>
+      
+      <option value="/news/2016/02/17/elser-pmc/">Calcite appoints Josh Elser to PMC</option>
+      
       <option value="/news/2016/01/22/release-1.6.0/">Release 1.6.0</option>
       
       <option value="/news/2015/11/10/release-1.5.0/">Release 1.5.0</option>
@@ -268,6 +272,18 @@ further tune the metadata layer.</p>
     <ul>
         
         
+        <li class="">
+          <a href="/news/2016/02/17/streaming-sql-talk/">Streaming SQL in Samza</a>
+        </li>
+        
+        
+        
+        <li class="">
+          <a href="/news/2016/02/17/elser-pmc/">Calcite appoints Josh Elser to PMC</a>
+        </li>
+        
+        
+        
         
         
         

Modified: calcite/site/news/index.html
URL: http://svn.apache.org/viewvc/calcite/site/news/index.html?rev=1731301&r1=1731300&r2=1731301&view=diff
==============================================================================
--- calcite/site/news/index.html (original)
+++ calcite/site/news/index.html Fri Feb 19 22:12:26 2016
@@ -85,6 +85,10 @@
     <option value="/news/">Home</option>
     <optgroup label="v1.x">
       
+      <option value="/news/2016/02/17/streaming-sql-talk/">Streaming SQL in Samza</option>
+      
+      <option value="/news/2016/02/17/elser-pmc/">Calcite appoints Josh Elser to PMC</option>
+      
       <option value="/news/2016/01/22/release-1.6.0/">Release 1.6.0</option>
       
       <option value="/news/2015/11/10/release-1.5.0/">Release 1.5.0</option>
@@ -129,6 +133,177 @@
   
 <article>
   <h2>
+    <a href="/news/2016/02/17/streaming-sql-talk/">
+      Streaming SQL in Samza
+    </a>
+  </h2>
+  <span class="post-category">
+    <span class="label">
+      talks
+    </span>
+  </span>
+  <div class="post-meta">
+    <span class="post-date">
+      17 Feb 2016
+    </span>
+    
+    
+    
+      
+    
+      
+    
+      
+    
+      
+    
+      
+    
+      
+    
+      
+    
+      
+    
+      
+    
+      
+        
+          
+        
+        
+          
+        
+      
+    
+      
+    
+      
+    
+      
+    
+      
+    
+      
+    
+    <a href="http://people.apache.org/~jhyde" class="post-author">
+      <img src="http://github.com/julianhyde.png"
+           class="avatar" alt="jhyde avatar"
+           width="24" height="24">
+      jhyde
+    </a>
+  </div>
+  <div class="post-content">
+    <!--
+
+-->
+
+<p>Julian Hyde gave a talk at the <a href="http://samza.apache.org/">Apache Samza</a>
+meetup in Mountain View, CA.</p>
+
+<p>His talk asked the questions:</p>
+
+<ul>
+  <li>What is <a href="https://github.com/milinda/samza-sql">SamzaSQL</a>,
+and what might I use it for?</li>
+  <li>Does this mean that Samza is turning into a database?</li>
+  <li>What is a query optimizer, and what can it do for my streaming queries?</li>
+</ul>
+
+<p>The talk is available in
+[<a href="http://www.slideshare.net/julianhyde/streaming-sql">slides</a>]
+and
+[<a href="http://www.ustream.tv/recorded/83322450#to00:55:48">video</a>].</p>
+
+    
+  </div>
+</article>
+
+
+  
+<article>
+  <h2>
+    <a href="/news/2016/02/17/elser-pmc/">
+      Calcite appoints Josh Elser to PMC
+    </a>
+  </h2>
+  <span class="post-category">
+    <span class="label">
+      team
+    </span>
+  </span>
+  <div class="post-meta">
+    <span class="post-date">
+      17 Feb 2016
+    </span>
+    
+    
+    
+      
+    
+      
+    
+      
+    
+      
+    
+      
+    
+      
+    
+      
+    
+      
+    
+      
+    
+      
+        
+          
+        
+        
+          
+        
+      
+    
+      
+    
+      
+    
+      
+    
+      
+    
+      
+    
+    <a href="http://people.apache.org/~jhyde" class="post-author">
+      <img src="http://github.com/julianhyde.png"
+           class="avatar" alt="jhyde avatar"
+           width="24" height="24">
+      jhyde
+    </a>
+  </div>
+  <div class="post-content">
+    <!--
+
+-->
+
+<p>The Apache Calcite project management committee (PMC) today announced the
+appointment of <a href="https://mail-archives.apache.org/mod_mbox/calcite-dev/201602.mbox/%3C12AA8D09-BBF8-470B-8933-5B672162546C%40apache.org%3E">Josh Elser</a>
+to the committee.</p>
+
+<p>Josh has only been a committer for a few months, but has become a prominent
+member of the Calcite project, and has taken leadership in several areas,
+not least in discussing <a href="https://mail-archives.apache.org/mod_mbox/calcite-dev/201601.mbox/%3C56ABCCFF.3010205%40gmail.com%3E">the future of Avatica</a>.</p>
+
+    
+  </div>
+</article>
+
+
+  
+<article>
+  <h2>
     <a href="/news/2016/01/22/release-1.6.0/">
       Release 1.6.0
     </a>
@@ -1617,6 +1792,18 @@ of the website.</p>
     <ul>
         
         
+        <li class="">
+          <a href="/news/2016/02/17/streaming-sql-talk/">Streaming SQL in Samza</a>
+        </li>
+        
+        
+        
+        <li class="">
+          <a href="/news/2016/02/17/elser-pmc/">Calcite appoints Josh Elser to PMC</a>
+        </li>
+        
+        
+        
         
         
         

Modified: calcite/site/news/releases/index.html
URL: http://svn.apache.org/viewvc/calcite/site/news/releases/index.html?rev=1731301&r1=1731300&r2=1731301&view=diff
==============================================================================
--- calcite/site/news/releases/index.html (original)
+++ calcite/site/news/releases/index.html Fri Feb 19 22:12:26 2016
@@ -85,6 +85,10 @@
     <option value="/news/">Home</option>
     <optgroup label="v1.x">
       
+      <option value="/news/2016/02/17/streaming-sql-talk/">Streaming SQL in Samza</option>
+      
+      <option value="/news/2016/02/17/elser-pmc/">Calcite appoints Josh Elser to PMC</option>
+      
       <option value="/news/2016/01/22/release-1.6.0/">Release 1.6.0</option>
       
       <option value="/news/2015/11/10/release-1.5.0/">Release 1.5.0</option>
@@ -1115,6 +1119,18 @@ new utility, <code>SqlRun</code>.</p>
     <ul>
         
         
+        <li class="">
+          <a href="/news/2016/02/17/streaming-sql-talk/">Streaming SQL in Samza</a>
+        </li>
+        
+        
+        
+        <li class="">
+          <a href="/news/2016/02/17/elser-pmc/">Calcite appoints Josh Elser to PMC</a>
+        </li>
+        
+        
+