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

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


The following commit(s) were added to refs/heads/asf-site by this push:
     new 222dc18  Automatic Site Publish by git-site-role
222dc18 is described below

commit 222dc188f67182e1741dadf128acfe5914a7da56
Author: lide <l...@baidu.com>
AuthorDate: Mon Feb 18 15:51:23 2019 +0800

    Automatic Site Publish by git-site-role
---
 content/downloads.html                             | 102 ++++++++++++++++++++-
 content/feed.xml                                   |   4 +-
 content/ip-clearance/arrow-csharp-library.html     |   6 ++
 ...arp-library.html => arrow-rust-datafusion.html} |  36 +++++---
 content/ip-clearance/index.html                    |   7 ++
 content/projects/dubbo.html                        |  12 +++
 content/projects/index.html                        |   2 +-
 content/projects/odftoolkit.html                   |  12 ++-
 content/projects/shardingsphere.html               |  10 +-
 9 files changed, 162 insertions(+), 29 deletions(-)

diff --git a/content/downloads.html b/content/downloads.html
index 36e8536..9541b1e 100644
--- a/content/downloads.html
+++ b/content/downloads.html
@@ -2,7 +2,7 @@
 <html lang="en">
   <head>
     <meta charset="utf-8"/>
-    <title>Apache Doris Downloads</title>
+    <title>Downloads</title>
     <meta name="viewport" content="width=device-width, initial-scale=1.0">
     <meta name="description" content="">
     <meta name="author" content="">
@@ -112,7 +112,7 @@
 
 
 <div class="incubator-page-header">
-    <h1>Apache Doris Downloads</h1>
+    <h1>Downloads</h1>
 </div>
 
 <!--Licensed under the Apache License, Version 2.0 (the "License");
@@ -126,8 +126,102 @@ distributed under the License is distributed on an "AS 
IS" BASIS,
 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 See the License for the specific language governing permissions and
 limitations under the License.--> 
-<h2><a href="#current-release" id="current-release">Current Release</a></h2> 
-<p>Comming soon…</p>
+<h2><a href="#apache-doris-090-incubating-release" 
id="apache-doris-090-incubating-release"></a><a 
href="http://www.apache.org/dyn/closer.cgi/incubator/doris/0.9.0-incubating/apache-doris-0.9.0-incubating-src.tar.gz";>Apache
 Doris 0.9.0 (incubating) Release</a></h2> 
+<h3><a href="#download" id="download">Download</a></h3> 
+<p>Source Package: <a 
href="http://www.apache.org/dyn/closer.cgi/incubator/doris/0.9.0-incubating/apache-doris-0.9.0-incubating-src.tar.gz";><strong>apache-doris-0.9.0-incubating-src.tar.gz</strong></a>
 (<a 
href="http://archive.apache.org/dist/incubator/doris/0.9.0-incubating/apache-doris-0.9.0-incubating-src.tar.gz.sha512";>SHA-512</a>,
 <a 
href="http://archive.apache.org/dist/incubator/doris/0.9.0-incubating/apache-doris-0.9.0-incubating-src.tar.gz.asc";>PGP
 ASC</a>)</p> 
+<p>Officially, it is important that you verify the integrity of the downloaded 
files using the PGP signatures (.asc file) or a hash (.sha512 files). The PGP 
keys used to sign this release are available <a 
href="http://archive.apache.org/dist/incubator/doris/KEYS";><strong>here</strong></a>.</p>
 
+<h3><a href="#building-from-source-in-docker-image" 
id="building-from-source-in-docker-image">Building from source in Docker 
Image</a></h3> 
+<p>Firstly, you must be install and start docker service, and then you could 
build Doris as following steps:</p> 
+<p>Step1: Pull the docker image with Doris building environment</p> 
+<pre><code>$ docker pull apachedoris/doris-dev:build-env
+</code></pre> 
+<p>You can check it by listing images, its size is about 3.28GB.</p> 
+<p>Step2: Run the Docker image You can run image directyly:</p> 
+<pre><code>$ docker run -it apachedoris/doris-dev:build-env
+</code></pre> 
+<p>Step3: Download Doris source Now you should in docker environment, and you 
can download Doris source package, for example: (If you have downloaded source 
and it is not in image, you can map its path to image in Step2.)</p> 
+<pre><code>$ wget 
http://mirror.bit.edu.cn/apache/incubator/doris/0.9.0-incubating/apache-doris-0.9.0-incubating-src.tar.gz
+</code></pre> 
+<p>Step4: Build Doris Now you can decompress and enter Doris source path and 
build Doris.</p> 
+<pre><code>$ tar zxvf apache-doris-0.9.0-incubating-src.tar.gz
+$ cd apache-doris-0.9.0-incubating-src
+$ sh build.sh
+</code></pre> 
+<h3><a href="#change-log" id="change-log">Change Log</a></h3> 
+<h4><a href="#features-changes-and-enhanced" 
id="features-changes-and-enhanced">Features, Changes and Enhanced</a></h4> 
+<ol> 
+ <li>Add streaming load feature. You can execute ‘help stream load;’ to see 
more information.</li> 
+ <li>Introduce RocksDB to save the header info of tablets in Backends, to 
reduce the IO operations and increate speeding of restarting.</li> 
+ <li>Change project name from Palo to Doris, include variables and namespace 
name (#268)</li> 
+ <li>Change license to Apache License 2.0 (#262)</li> 
+ <li>Improve build scripts and add docker dev environment (#301).</li> 
+ <li>Support NULLS LAST and NULLS FIRST syntax (#252)</li> 
+ <li>Support AnalyticExpr in View (#248)</li> 
+ <li>Improve cardinality, avgRowSize, numNodes stat info in OlapScanNode 
(#256)</li> 
+ <li>Transform row-oriented table to columnar-oriented table (#311)</li> 
+ <li>Change ByteBuffer to StorageByteBuffer in olap/byte_buffer.h (#341)</li> 
+ <li>Improve the Backend’s disk info report performance (#349)</li> 
+ <li>Add path info of replica in catalog (#327)</li> 
+ <li>Change log verbose level to vlog(3) (#325)</li> 
+ <li>Change PaloMetrics’ name and Catalog’s Id generator (#329)</li> 
+ <li>Rename Rowset to SegmentGroup (#364)</li> 
+ <li>Subsititue ColumnType to Type (#366)</li> 
+ <li>Optimize the publish logic of streaming load (#350)</li> 
+ <li>Add connection id to CurrentQueryStatisticsProcDir (#355)</li> 
+ <li>Change SQL built-in function’s symbol (#274)</li> 
+</ol> 
+<h4><a href="#bugs-fix" id="bugs-fix">Bugs Fix</a></h4> 
+<ol> 
+ <li>Failed to register equal conjuncts which refer more than three tuples 
(#266)</li> 
+ <li>Rewrite aes encryption (#264)</li> 
+ <li>Fix a bug that user can not kill it own connection (#276)</li> 
+ <li>Fix lose of be’s meta data bug (#318)</li> 
+ <li>Fix SHOW BACKENDS return ERROR (#320)</li> 
+ <li>Fix Ubuntu llvm compile (#361)</li> 
+ <li>Support for custom build toolchains (#330)</li> 
+ <li>Modify partition’s version name to what it means (#334)</li> 
+ <li>Fix compile issue of thirdparty library (#338)</li> 
+ <li>Fix a compile issue of DORIS_GCC_HOME (#339)</li> 
+ <li>Add special add_column_statistics method for linked_schema_change 
(#337)</li> 
+ <li>Fix wrong query result when column value is Null (#344)</li> 
+ <li>Fix bug of using symbolic link dir as storage path (#340)</li> 
+ <li>Add distributor which schedule task to be fairly, for routine load job 
(#333)</li> 
+ <li>Fix UnionStmt toSql bug (#249)</li> 
+ <li>Fix a bug that user can not kill it own connection (#276)</li> 
+ <li>Fix failed cases in regression test (#299)</li> 
+ <li>Fix code LICENSE for file modified from LevelDB. (#300)</li> 
+ <li>Fix snapshot’s making header bug (#362)</li> 
+ <li>Fix stream load failure when target table contains HLL and insert failure 
when it contains subquery (#359)</li> 
+ <li>Avoid ‘No more data to read’ error when handling stream load RPC 
(#354)</li> 
+ <li>Fix cast error in StreamLoadScanNodeush (#356)</li> 
+ <li>Fix insert error when it contains HLL (#358)</li> 
+</ol> 
+<h3><a href="#compatibility" id="compatibility">Compatibility</a></h3> 
+<p><strong>This release version DOES NOT support rolling upgrade, and CAN NOT 
rollback after upgrade. So it is HIGHLY RECOMMENDED to backup your data and 
meta data before upgrading to this release version. Or upgrade it in your 
test/pre-online Palo cluster to make sufficient test.</strong></p> 
+<table> 
+ <thead> 
+  <tr>
+   <th>Item</th>
+   <th>Content</th>
+  </tr> 
+ </thead> 
+ <tbody> 
+  <tr>
+   <td>Forward Compatibility </td>
+   <td> 0.8.1, 0.8.0 </td>
+  </tr> 
+  <tr>
+   <td>Rolling Upgrade </td>
+   <td> No </td>
+  </tr> 
+  <tr>
+   <td>Rollback </td>
+   <td> No </td>
+  </tr> 
+ </tbody> 
+</table> 
+<h2><a href="#disclaimer" id="disclaimer">DISCLAIMER</a></h2> 
+<p>Apache Doris is an effort undergoing incubation at The Apache Software 
Foundation (ASF), sponsored by the Apache Incubator. Incubation is required of 
all newly accepted projects until a further review indicates that the 
infrastructure, communications, and decision making process have stabilized in 
a manner consistent with other successful ASF projects. While incubation status 
is not necessarily a reflection of the completeness or stability of the code, 
it does indicate that the projec [...]
 
                </div>
                <div id="push"></div>
diff --git a/content/feed.xml b/content/feed.xml
index ca42226..0caf687 100644
--- a/content/feed.xml
+++ b/content/feed.xml
@@ -6,8 +6,8 @@
     <atom:link href="http://doris.apache.org/feed.xml"; rel="self" 
type="application/rss+xml" />
     <description>JBake Bootstrap Template</description>
     <language>en-gb</language>
-    <pubDate>Thu, 31 Jan 2019 12:27:31 +0800</pubDate>
-    <lastBuildDate>Thu, 31 Jan 2019 12:27:31 +0800</lastBuildDate>
+    <pubDate>Mon, 18 Feb 2019 15:20:07 +0800</pubDate>
+    <lastBuildDate>Mon, 18 Feb 2019 15:20:07 +0800</lastBuildDate>
 
     
 
diff --git a/content/ip-clearance/arrow-csharp-library.html 
b/content/ip-clearance/arrow-csharp-library.html
index a5bbc01..df5fc52 100644
--- a/content/ip-clearance/arrow-csharp-library.html
+++ b/content/ip-clearance/arrow-csharp-library.html
@@ -216,6 +216,12 @@
 is in favor of accepting the code contribution, passed on 2018-10-18.
             </a>
           </li>
+          <li>
+            <a href="https://s.apache.org/arrow-csharp-ip-clearance";>
+              IP clearance vote on gene...@incubator.apache.org, passed on
+              2018-10-25.
+            </a>
+          </li>
         </ul>
 </div>
 </div>
diff --git a/content/ip-clearance/arrow-csharp-library.html 
b/content/ip-clearance/arrow-rust-datafusion.html
similarity index 87%
copy from content/ip-clearance/arrow-csharp-library.html
copy to content/ip-clearance/arrow-rust-datafusion.html
index a5bbc01..27ae892 100644
--- a/content/ip-clearance/arrow-csharp-library.html
+++ b/content/ip-clearance/arrow-rust-datafusion.html
@@ -23,7 +23,7 @@
   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
   <link rel="stylesheet" href="../style/bootstrap-1-3-0-min.css" 
type="text/css" />
   <link rel="stylesheet" href="../style/style.css" type="text/css" />
-        <title>Arrow C# Library Intellectual Property (IP) Clearance Status - 
Apache Incubator</title>
+        <title>Arrow Rust DataFusion Intellectual Property (IP) Clearance 
Status - Apache Incubator</title>
   
  </head>
  <body>
@@ -99,13 +99,14 @@
    </div>
    
    <div class="span12">
-            <h2 
id='Arrow+CSharp+Library+Intellectual+Property+%28IP%29+Clearance+Status'><img 
src="../images/redarrow.gif" />Arrow C# Library Intellectual Property (IP) 
Clearance Status</h2>
+            <h2 
id='Arrow+Rust+DataFusion+Intellectual+Property+%28IP%29+Clearance+Status'><img 
src="../images/redarrow.gif" />Arrow Rust DataFusion Intellectual Property (IP) 
Clearance Status</h2>
 <div class="section-content">
 </div>
         <h2 id='Description'><img src="../images/redarrow.gif" 
/>Description</h2>
 <div class="section-content">
-<p>The Arrow C# Library is a native C# .NET library for Apache Arrow,
-     modeled after other implementations already int he project.</p>
+<p>Arrow Rust DataFusion is a Rust library for query processing of Apache
+     Arrow columnar data. It depends on the existing Rust Arrow core
+     library.</p>
 </div>
         <h2 id='Project+info'><img src="../images/redarrow.gif" />Project 
info</h2>
 <div class="section-content">
@@ -130,14 +131,17 @@
             <th>item</th>
           </tr>
           <tr>
-            <td>2018-10-15</td>
+            <td>2019-01-31</td>
             <td>Trademark and Google Search found no use of name as software 
product.</td>
           </tr>
         </table>
 <ul>
           <li>
-            Origin: <a 
href="https://github.com/feyenzylstra/apache-arrow";>https://github.com/feyenzylstra/apache-arrow</a>
-            at commit <a 
href="https://github.com/feyenzylstra/apache-arrow/dfecf626f30c29c9acfe35d07bbc88e4e66dbd19";>dfecf626f30c29c9acfe35d07bbc88e4e66dbd19</a>
+            Origin: <a 
href="https://github.com/andygrove/datafusion";>https://github.com/andygrove/datafusion</a>,
+            contributed in reduced form to Apache Arrow as pull request <a 
href="https://github.com/apache/arrow/pull/3399";>https://github.com/apache/arrow/pull/3399</a>.
 A
+            number of contributions to the original GitHub repository are not
+            present, these are detailed in <a 
href="https://github.com/andygrove/datafusion/blob/master/docs/DataFusion%20Contributors.pdf";>an
+            audit by Andy Grove</a>.
           </li>
         </ul>
 <h4 id='Copyright'>Copyright</h4>
@@ -148,7 +152,7 @@
               <th>item</th>
             </tr>
             <tr>
-              <td>2018-10-21</td>
+              <td>2019-01-31</td>
               <td>Check and make sure that the files that have been donated
                   have been updated to reflect the new ASF copyright.</td>
             </tr>
@@ -163,7 +167,8 @@
               Corporations and individuals holding existing distribution 
rights:
             </p>
 <ul>
-  <li>Feyen Zylstra LLC</li>
+  <li>Andy Grove</li>
+  <li>Chao Sun</li>
 </ul>
 <table class="colortable" width="100%">
             <tr>
@@ -171,26 +176,26 @@
               <th>item</th>
             </tr>
             <tr>
-              <td>2018-10-21</td>
+              <td>2019-01-31</td>
               <td>Check that all active committers have a signed CLA on
                   record.</td>
             </tr>
             <tr>
-              <td>2018-10-21</td>
+              <td>2019-01-31</td>
               <td>Remind active committers that they are responsible for
                   ensuring that a Corporate CLA is recorded if such is
                   required to authorize their contributions under their
                   individual CLA.</td>
             </tr>
             <tr>
-              <td>2018-10-21</td>
+              <td>2019-01-31</td>
               <td>Check and make sure that for all items included with the
                   distribution that is not under the Apache license, we have
                   the right to combine with Apache-licensed code and
                   redistribute.</td>
             </tr>
             <tr>
-              <td>2018-10-21</td>
+              <td>2019-01-31</td>
               <td>Check and make sure that all items depended upon by the
                   project is covered by one or more of the following approved
                   licenses: Apache, BSD, Artistic, MIT/X, MIT/W3C, MPL 1.1, or
@@ -211,9 +216,10 @@
         </p>
 <ul>
           <li>
-            <a href="https://s.apache.org/arrow-csharp-donation-vote";>
+            <a href="https://s.apache.org/arrow-rust-datafusion-donation-vote";>
               Vote on Apache Arrow dev list to determine whether the Arrow PMC
-is in favor of accepting the code contribution, passed on 2018-10-18.
+              is in favor of accepting the code contribution, passed on
+              2019-01-28.
             </a>
           </li>
         </ul>
diff --git a/content/ip-clearance/index.html b/content/ip-clearance/index.html
index 64018b9..f69ff6e 100644
--- a/content/ip-clearance/index.html
+++ b/content/ip-clearance/index.html
@@ -143,6 +143,13 @@
         </tr>
         <tr>
           <td>
+            <a href="arrow-rust-datafusion.html">Apache Arrow Rust 
DataFusion</a>
+          </td>
+          <td>Apache Arrow</td>
+          <td>2019-01-31</td>
+        </tr>
+        <tr>
+          <td>
             <a href="arrow-parquet-rust.html">Apache Arrow Parquet Rust 
Library</a>
           </td>
           <td>Apache Arrow</td>
diff --git a/content/projects/dubbo.html b/content/projects/dubbo.html
index c37f129..9fe5577 100644
--- a/content/projects/dubbo.html
+++ b/content/projects/dubbo.html
@@ -135,6 +135,8 @@
         <li>2019-01-27 Dubbo spring boot starter 0.2.1 and 0.1.2 has been 
released.</li>
         <li>2019-01-29 Dubbo 2.7.0 has been released.</li>
         <li>2019-01-30 New committer: Kun Song(satansk)</li>
+        <li>2019-01-31 New committer: Xiaojie Li(lixiaojiee)</li>
+        <li>2019-02-02 New committer: Yuhao Bi(biyuhao)</li>
       </ul>
 </div>
         <h2 id='Project+info'><img src="../images/redarrow.gif" />Project 
info</h2>
@@ -405,6 +407,16 @@
           <td>satansk</td>
           <td>Kun Song</td>
         </tr>
+        <tr>
+          <td>.</td>
+          <td>lixiaojie</td>
+          <td>Xiaojie Li</td>
+        </tr>
+        <tr>
+          <td>.</td>
+          <td>biyuhao</td>
+          <td>Yuhao Bi</td>
+        </tr>
       </table>
 </div>
         <h2 id='Incubation+status+reports'><img src="../images/redarrow.gif" 
/>Incubation status reports</h2>
diff --git a/content/projects/index.html b/content/projects/index.html
index 2e28908..eb31850 100644
--- a/content/projects/index.html
+++ b/content/projects/index.html
@@ -302,7 +302,7 @@
           </td>
           <td>IoTDB is a data store for managing large amounts of time series 
data such as timestamped data from IoT sensors in industrial applications.</td>
           <td>Incubator</td>
-          <td>Justin Mclean, Christofer Dutz, Willem Ning Jiang, Joe Witt, 
Kevin A. McGrail</td>
+          <td>Justin Mclean, Christofer Dutz, Willem Ning Jiang, Kevin A. 
McGrail</td>
           <td>2018-11-18</td>
         </tr>
 
diff --git a/content/projects/odftoolkit.html b/content/projects/odftoolkit.html
index 848233d..67fefc2 100644
--- a/content/projects/odftoolkit.html
+++ b/content/projects/odftoolkit.html
@@ -103,7 +103,8 @@
 <div class="section-content">
 <p>This page tracks the project status, incubator-wise. For more general
          project status, look on the project website.</p>
-<p><span class="retired">The ODF Toolkit project retired on 
2018-11-27</span></p>
+<p><span class="retired">The ODF Toolkit project retired from Apache 
Incubation on 2018-11-27</span></p>
+<p><span class="retired">The ODF Toolkit project moved to The Document 
Foundation at <a 
href="http://odftoolkit.org/";>http://odftoolkit.org/</a></span></p>
 </div>
         <h2 id='Description'><img src="../images/redarrow.gif" 
/>Description</h2>
 <div class="section-content">
@@ -141,7 +142,7 @@
           <td>Website</td>
           <td>www</td>
           <td id="www">
-            <a 
href="http://incubator.apache.org/odftoolkit/";>http://incubator.apache.org/odftoolkit/</a>
+            <a href="http://odftoolkit.org/";>Is now at 
http://odftoolkit.org/</a>
           </td>
         </tr>
         <tr>
@@ -179,6 +180,13 @@
           </td>
         </tr>
         <tr>
+          <td>Source code at the TDF</td>
+          <td>GIT</td>
+          <td id="git">
+            <a 
href="https://github.com/tdf/odftoolkit";>https://github.com/tdf/odftoolkit</a>
+          </td>
+        </tr>
+        <tr>
           <td>Mentors</td>
           <td>magicaltrout</td>
           <td>Tom Barber</td>
diff --git a/content/projects/shardingsphere.html 
b/content/projects/shardingsphere.html
index 324bd47..c2b8233 100644
--- a/content/projects/shardingsphere.html
+++ b/content/projects/shardingsphere.html
@@ -118,21 +118,21 @@
         <h2 id='Project+info'><img src="../images/redarrow.gif" />Project 
info</h2>
 <div class="section-content">
 <ul>
-        <li>ShardingSphere Website - 
http://shardingsphere.incubator.apache.org</li>
+        <li>ShardingSphere Website - 
https://shardingsphere.incubator.apache.org</li>
       </ul>
 <ul>
         <li>
-          <a 
href="http://shardingsphere.incubator.apache.org/community/";>Community Pages</a>
+          <a 
href="https://shardingsphere.incubator.apache.org/community/";>Community 
Pages</a>
         </li>
       </ul>
 <ul>
         <li>
-          <a href="http://shardingsphere.apache.org/document/current/";>Current 
Documentation</a>
+          <a 
href="https://shardingsphere.apache.org/document/current/";>Current 
Documentation</a>
         </li>
       </ul>
 <ul>
         <li>
-          <a 
href="http://shardingsphere.incubator.apache.org/releases/";>Releases</a>
+          <a 
href="https://shardingsphere.incubator.apache.org/releases/";>Releases</a>
         </li>
       </ul>
 <ul>
@@ -151,7 +151,7 @@
           <td>Website</td>
           <td>www</td>
           <td id="www">
-            <a 
href="http://shardingsphere.incubator.apache.org/";>http://shardingsphere.incubator.apache.org/</a>
+            <a 
href="https://shardingsphere.incubator.apache.org/";>https://shardingsphere.incubator.apache.org/</a>
           </td>
         </tr>
         <tr>


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org

Reply via email to