You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by dm...@apache.org on 2017/07/18 18:21:11 UTC

svn commit: r1802322 - in /ignite/site/trunk: css/all.css features.html features/durablememory.html scss/ignite.scss

Author: dmagda
Date: Tue Jul 18 18:21:11 2017
New Revision: 1802322

URL: http://svn.apache.org/viewvc?rev=1802322&view=rev
Log:
updated features page

Modified:
    ignite/site/trunk/css/all.css
    ignite/site/trunk/features.html
    ignite/site/trunk/features/durablememory.html
    ignite/site/trunk/scss/ignite.scss

Modified: ignite/site/trunk/css/all.css
URL: http://svn.apache.org/viewvc/ignite/site/trunk/css/all.css?rev=1802322&r1=1802321&r2=1802322&view=diff
==============================================================================
--- ignite/site/trunk/css/all.css (original)
+++ ignite/site/trunk/css/all.css Tue Jul 18 18:21:11 2017
@@ -8822,11 +8822,11 @@ table.comparison-matrix > tbody > tr > t
   border: none !important;
   font-weight: 300;
   letter-spacing: 0.2px;
+  padding-right: 0px !important;
 }
 table.comparison-matrix > tbody > tr > td > p {
   margin-top: 8px;
   margin-bottom: 8px;
-  padding-right: 15px;
 }
 @media (max-width: 767px) {
   table.comparison-matrix > tbody > tr > td > p {

Modified: ignite/site/trunk/features.html
URL: http://svn.apache.org/viewvc/ignite/site/trunk/features.html?rev=1802322&r1=1802321&r2=1802322&view=diff
==============================================================================
--- ignite/site/trunk/features.html (original)
+++ ignite/site/trunk/features.html Tue Jul 18 18:21:11 2017
@@ -60,11 +60,12 @@ under the License.
                     <h3>Main Features</h3>
                     <ul>
                         <li><a href="/features/durablememory.html">Durable Memory</a></li>
-                        <li><a href="/features/persistence.html">Persistence</a></li>
+                        <!--<li><a href="/features/persistence.html">Persistence</a></li>-->
                         <li><a href="/features/sql.html">SQL Database</a></li>
                         <li><a href="/features/datagrid.html">Data Grid</a></li>
                         <li><a href="/features/computegrid.html">Compute Grid</a></li>
                         <li><a href="/features/machinelearning.html">Machine Learning</a></li>
+                        <li class="empty"></li>
                     </ul>
                 </div>
                 <div class="col-sm-3 col-md-3 col-xs-12">
@@ -104,26 +105,74 @@ under the License.
             </div>
             <p>&nbsp;</p>
         </section>
-        <section id="datagrid" class="page-section" style="border: none;">
-            <h2>Ignite Feature Summary</h2>
-            <p>The following is a summary of list of features currently available in Apache Ignite.</p><br/>
-            <h2><a class="feature-header" href="/features/datagrid.html" target="_blank">Data Grid <i class="fa fa-external-link" style="padding-left:5px;"></i></a></h2>
 
-            <table class="formatted features" name="distributed caching">
-                <thead>
+        <section id="ignite-features" class="page-section" style="border: none;">
+            <h2>Ignite Feature Summary</h2>
+            <p>The following is a summary of list of features currently available in Apache Ignite.</p>
+            <section id="architecture" class="page-section" style="border: none;">
+                <h2><a class="feature-header" href="/features/whatisignite.html" target="_blank">Architecture <i class="fa fa-external-link" style="padding-left:5px;"></i></a></h2>
+                <table class="formatted features" name="deploy">
+                    <thead>
                     <tr>
-                        <th colspan="2" class="left">DISTRIBUTED CACHING</th>
+                        <th colspan="2" class="left">Durable Memory</th>
                     </tr>
-                </thead>
-                <tbody>
+                    </thead>
+                    <tbody>
                     <tr>
-                        <td class="features-left">Key-Value Store</td>
+                        <td class="features-left">Memory Architecture</td>
                         <td>
                             <p>
-                                Ignite data grid is an <b>in-memory key-value store</b> which can be viewed as a distributed partitioned hash map.
+                                Apache Ignite memory-centric platform is based on the Durable Memory architecture that allows storing and processing data and indexes both in memory and on disk.
                             </p>
                             <div  class="page-links">
-                                <a href="http://apacheignite.readme.io/docs/data-grid" target="docs">Docs for this feature <i class="fa fa-angle-double-right"></i></a>
+                                <a href="https://apacheignite.readme.io/docs/clients-vs-servers" target="docs">Docs for this feature <i class="fa fa-angle-double-right"></i></a>
+                            </div>
+                        </td>
+                    </tr>
+                    <!--<tr>-->
+                        <!--<td class="features-left">Persistence</td>-->
+                        <!--<td>-->
+                            <!--<p>-->
+                                <!--Ignite Persistent Store is a distributed ACID and SQL-compliant disk store that transparently integrates with Ignite's durable memory as an optional disk layer-->
+                                <!--storing data and indexes on SSD, Flash, 3D XPoint, and other types of non-volatile storages.-->
+                            <!--</p>-->
+                            <!--<div  class="page-links">-->
+                                <!--<a href="https://apacheignite.readme.io/docs/distributed-persistent-store" target="docs">Docs for this feature <i class="fa fa-angle-double-right"></i></a>-->
+                            <!--</div>-->
+                        <!--</td>-->
+                    <!--</tr>-->
+                    <tr class="sub-heading">
+                        <th colspan="2" class="left">MARSHALLING</th>
+                    </tr>
+                    <tr></tr> <!-- this empty row is required to change the background color-->
+                    <tr>
+                        <td class="features-left">Binary Protocol</td>
+                        <td>
+                            <p>
+                                Starting from v1.5 Ignite introduced a new concept of storing data in caches, called BinaryObjects. It allows you to:
+                            </p>
+                            <ul class="page-list">
+                                <li>Read a serialized object's field without full object deserialization.</li>
+                                <li>Dynamically change  an object's structure.</li>
+                                <li>Dynamically create an object.</li>
+                            </ul>
+                            <div  class="page-links">
+                                <a href="https://apacheignite.readme.io/docs/binary-marshaller" target="docs">Docs for this feature <i class="fa fa-angle-double-right"></i></a>
+                            </div>
+                        </td>
+                    </tr>
+                    <tr class="sub-heading">
+                        <th colspan="2" class="left">HIGH AVAILABILITY</th>
+                    </tr>
+                    <tr></tr> <!-- this empty row is required to change the background color-->
+                    <tr>
+                        <td class="features-left">Self-Healing Cluster</td>
+                        <td>
+                            <p>
+                                Ignite cluster can self-heal, where clients automatically reconnect in case of failures.
+                            </p>
+                            <div  class="page-links">
+                                <a href="https://apacheignite.readme.io/docs/clients-vs-servers" target="docs">Docs for this feature <i class="fa fa-angle-double-right"></i></a>
                             </div>
                         </td>
                     </tr>
@@ -138,100 +187,229 @@ under the License.
                             </div>
                         </td>
                     </tr>
+                    </tbody>
+                </table>
+                <a href="#components">Top <i class="fa fa-angle-double-up"></i></a>
+            </section>
+
+            <section id="sqldatabase" class="page-section" style="border: none;">
+                <h2><a class="feature-header" href="/features/sql.html" target="_blank">SQL Database <i class="fa fa-external-link" style="padding-left:5px;"></i></a></h2>
+                <table class="formatted features" name="sql database">
+                    <thead>
                     <tr>
-                        <td class="features-left">Client-Side (Near) Cache</td>
+                        <th colspan="2" class="left">DISTRIBUTED QUERIES</th>
+                    </tr>
+                    </thead>
+                    <tbody>
+                    <tr>
+                        <td class="features-left">SQL Queries</td>
                         <td>
                             <p>
-                                Near cache is local client-side cache that stores the most recently and most frequently accessed data.
+                                Ignite supports the standard SQL syntax (ANSI 99) to query the cache. You can use any SQL function, aggregation, or grouping.
                             </p>
                             <div  class="page-links">
-                                <a href="https://apacheignite.readme.io/docs/near-caches" target="docs">Docs for this feature <i class="fa fa-angle-double-right"></i></a>
+                                <a href="https://apacheignite.readme.io/docs/sql-queries" target="docs">Docs for this feature <i class="fa fa-angle-double-right"></i></a>
                             </div>
                         </td>
                     </tr>
                     <tr>
-                        <td class="features-left">Collocated Processing</td>
+                        <td class="features-left">Distributed DDL </td>
                         <td>
                             <p>
-                                Ignite allows executing any native Java, C++, and .NET/C# code directly on the server-side, close to the data, in collocated fashion.
+                                Apache Ignite supports using Data Definition Language (DDL) statements for creating and removing SQL indexes at runtime.
                             </p>
                             <div  class="page-links">
-                                <a href="https://apacheignite.readme.io/docs/affinity-collocation" target="docs">Docs for this feature <i class="fa fa-angle-double-right"></i></a>
+                                <a href="https://apacheignite.readme.io/docs/distributed-ddl" target="docs">Docs for this feature <i class="fa fa-angle-double-right"></i></a>
+                            </div>
+                        </td>
+                    </tr>
+                    <tr>
+                        <td class="features-left">Distributed DML </td>
+                        <td>
+                            <p>
+                                Ignite supports DML statements like INSERT, MERGE, UPDATE, and DELETE to modify cached data.
+                            </p>
+                            <div  class="page-links">
+                                <a href="https://apacheignite.readme.io/docs/dml" target="docs">Docs for this feature <i class="fa fa-angle-double-right"></i></a>
+                            </div>
+                        </td>
+                    </tr>
+                    <tr>
+                        <td class="features-left">Collocated Joins</td>
+                        <td>
+                            <p>
+                                Ignite supports SQL joins on collocated data stored across multiple caches.
+                            </p>
+                            <div  class="page-links">
+                                <a href="https://apacheignite.readme.io/docs/sql-queries#section-distributed-joins" target="docs">Docs for this feature <i class="fa fa-angle-double-right"></i></a>
+                            </div>
+                        </td>
+                    </tr>
+                    <tr>
+                        <td class="features-left">Non-Collocated Joins</td>
+                        <td>
+                            <p>
+                                Ignite offers non-collocated SQL joins for cases where it is extremely difficult to collocate all the data.
+                            </p>
+                            <div  class="page-links">
+                                <a href="https://apacheignite.readme.io/docs/sql-queries#section-distributed-non-collocated-joins" target="docs">Docs for this feature <i class="fa fa-angle-double-right"></i></a>
+                            </div>
+                        </td>
+                    </tr>
+                    <tr>
+                        <td class="features-left">Query Indexing</td>
+                        <td>
+                            <p>
+                                For SQL queries, ignites supports in-memory indexing, so all the data lookups are extremely fast.
+                            </p>
+                            <div  class="page-links">
+                                <a href="https://apacheignite.readme.io/docs/indexes" target="docs">Docs for this feature <i class="fa fa-angle-double-right"></i></a>
+                            </div>
+                        </td>
+                    </tr>
+                    <tr>
+                        <td class="features-left">Query Consistency</td>
+                        <td>
+                            <p>
+                                Ignite provides full query consistency. Updates that happened after the query execution started do not affect the query result.
+                            </p>
+                        </td>
+                    </tr>
+                    <tr>
+                        <td class="features-left">Query Fault-Tolerance</td>
+                        <td>
+                            <p>
+                                Ignite queries are fault-tolerant, i.e. query result is always consistent and is not affected by cluster topology changes.
+                            </p>
+                        </td>
+                    </tr>
+                    <tr>
+                        <td class="features-left">Geospacial Support</td>
+                        <td>
+                            <p>
+                                Ignite supports querying and indexing geometry data types such as points, lines, and polygons.
+                            </p>
+                            <div  class="page-links">
+                                <a href="http://apacheignite.gridgain.org/docs/geospatial-queries" target="docs">Docs for this feature <i class="fa fa-angle-double-right"></i></a>
                             </div>
                         </td>
                     </tr>
-
                     <tr class="sub-heading">
-                        <th colspan="2" class="left">CLUSTER RESILIENCY</th>
+                        <th colspan="2" class="left">SQL DRIVERS</th>
                     </tr>
                     <tr></tr> <!-- this empty row is required to change the background color-->
                     <tr>
-                        <td class="features-left">Self-Healing Cluster</td>
+                        <td class="features-left">JDBC Driver</td>
                         <td>
                             <p>
-                                Ignite cluster can self-heal, where clients automatically reconnect in case of failures.
+                                Ignite JDBC driver allows users to retrieve and modify data, stored in Ignite caches, using standard SQL/DML commands and JDBC API.
                             </p>
                             <div  class="page-links">
-                                <a href="https://apacheignite.readme.io/docs/clients-vs-servers" target="docs">Docs for this feature <i class="fa fa-angle-double-right"></i></a>
+                                <a href="https://apacheignite.readme.io/docs/jdbc-driver" target="docs">Docs for this feature <i class="fa fa-angle-double-right"></i></a>
+                            </div>
+                        </td>
+                    </tr>
+                    <tr>
+                        <td class="features-left">ODBC Driver</td>
+                        <td>
+                            <p>
+                                Ignite ODBC driver allows users to retrieve and modify data, stored in Ignite caches, using standard SQL/DML comands and ODBC API.
+                            </p>
+                            <div  class="page-links">
+                                <a href="https://apacheignite.readme.io/docs/odbc-driver" target="docs">Docs for this feature <i class="fa fa-angle-double-right"></i></a>
                             </div>
                         </td>
                     </tr>
-
-
                     <tr class="sub-heading">
-                        <th colspan="2" class="left">MEMORY FORMATS</th>
+                        <th colspan="2" class="left">STANDARDS</th>
                     </tr>
+                    <tr></tr> <!-- this empty row is required to change the background color-->
                     <tr>
-                        <td class="left">Page Memory</td>
+                        <td class="features-left">SQL, JDBC, ODBC</td>
                         <td>
                             <p>
-                                Apache Ignite <code>Page Memory</code> is a manageable off-heap based memory architecture that is split into pages of fixed size. By default, Ignite stores data in off-heap memory.
+                                Ignite supports retrieving distributed data from cache using standard SQL queries, JDBC and ODBC API.
                             </p>
-                            <div class="page-links">
-                                <a href="https://apacheignite.readme.io/docs/page-memory" target="docs">Docs for this Feature <i class="fa fa-angle-double-right"></i></a>
+                        </td>
+                    </tr>
+                    <tr class="sub-heading">
+                        <th colspan="2" class="left">INTEGRATIONS</th>
+                    </tr>
+                    <tr>
+                        <td class="features-left">Apache Zeppelin</td>
+                        <td>
+                            <p>
+                                Apache Ignite SQL Grid defines a set of APIs that allows integrating with Apache Zeppelin.
+                            </p>
+                            <div  class="page-links">
+                                <a href="https://apacheignite-mix.readme.io/docs/apache-zeppelin" target="docs">Docs for this feature <i class="fa fa-angle-double-right"></i></a>
                             </div>
                         </td>
                     </tr>
                     <tr>
-                        <td class="features-left">On-Heap Memory</td>
+                        <td class="features-left">Tableau</td>
                         <td>
                             <p>
-                                Ignite stores data in off-heap memory with an option to store data on-heap.
+                                Using Ignite ODBC driver, you can connect to the Ignite cluster from Tableau to analyze cached data.
                             </p>
                             <div  class="page-links">
-                                <a href="https://apacheignite.readme.io/docs/page-memory#on-heap-caching" target="docs">Docs for this feature <i class="fa fa-angle-double-right"></i></a>
+                                <a href="https://apacheignite-mix.readme.io/docs/tableau" target="docs">Docs for this feature <i class="fa fa-angle-double-right"></i></a>
                             </div>
                         </td>
                     </tr>
                     <tr>
-                        <td class="features-left">Off-Heap Indexes</td>
+                        <td class="features-left">PHP Data Objects</td>
                         <td>
                             <p>
-                                Ignite stores query indexes off-heap memory. For every unique index that is declared in an SQL schema, Apache Ignite instantiates and manages a dedicated B+ tree instance.
+                                Using Ignite ODBC driver and PHP Data Objects, you can connect to the Ignite cluster from PHP side.
                             </p>
                             <div  class="page-links">
-                                <a href="https://apacheignite.readme.io/docs/page-memory#section-b-tree-and-index-page" target="docs">Docs for this feature <i class="fa fa-angle-double-right"></i></a>
+                                <a href="https://apacheignite-mix.readme.io/docs/php-pdo" target="docs">Docs for this feature <i class="fa fa-angle-double-right"></i></a>
                             </div>
                         </td>
                     </tr>
+                    </tbody>
+                </table>
+            </section>
+            <h2><a class="feature-header" href="/features/datagrid.html" target="_blank">Data Grid <i class="fa fa-external-link" style="padding-left:5px;"></i></a></h2>
 
-                    <tr class="sub-heading">
-                        <th colspan="2" class="left">MARSHALLING</th>
+            <table class="formatted features" name="distributed caching">
+                <thead>
+                    <tr>
+                        <th colspan="2" class="left">DISTRIBUTED CACHING</th>
                     </tr>
-                    <tr></tr> <!-- this empty row is required to change the background color-->
+                </thead>
+                <tbody>
                     <tr>
-                        <td class="features-left">Binary Protocol</td>
+                        <td class="features-left">Key-Value Store</td>
                         <td>
                             <p>
-                                Starting from v1.5 Ignite introduced a new concept of storing data in caches, called BinaryObjects. It allows you to:
+                                Ignite data grid is an <b>in-memory key-value store</b> which can be viewed as a distributed partitioned hash map.
                             </p>
-                            <ul class="page-list">
-                                <li>Read a serialized object's field without full object deserialization.</li>
-                                <li>Dynamically change  an object's structure.</li>
-                                <li>Dynamically create an object.</li>
-                            </ul>
                             <div  class="page-links">
-                                <a href="https://apacheignite.readme.io/docs/binary-marshaller" target="docs">Docs for this feature <i class="fa fa-angle-double-right"></i></a>
+                                <a href="http://apacheignite.readme.io/docs/data-grid" target="docs">Docs for this feature <i class="fa fa-angle-double-right"></i></a>
+                            </div>
+                        </td>
+                    </tr>
+                    <tr>
+                        <td class="features-left">Client-Side (Near) Cache</td>
+                        <td>
+                            <p>
+                                Near cache is local client-side cache that stores the most recently and most frequently accessed data.
+                            </p>
+                            <div  class="page-links">
+                                <a href="https://apacheignite.readme.io/docs/near-caches" target="docs">Docs for this feature <i class="fa fa-angle-double-right"></i></a>
+                            </div>
+                        </td>
+                    </tr>
+                    <tr>
+                        <td class="features-left">Collocated Processing</td>
+                        <td>
+                            <p>
+                                Ignite allows executing any native Java, C++, and .NET/C# code directly on the server-side, close to the data, in collocated fashion.
+                            </p>
+                            <div  class="page-links">
+                                <a href="https://apacheignite.readme.io/docs/affinity-collocation" target="docs">Docs for this feature <i class="fa fa-angle-double-right"></i></a>
                             </div>
                         </td>
                     </tr>
@@ -469,216 +647,11 @@ under the License.
                             </div>
                         </td>
                     </tr>
-                    <tr class="sub-heading">
-                        <th colspan="2" class="left">SUPPORTED PLATFORMS</th>
-                    </tr>
-                    <tr></tr> <!-- this empty row is required to change the background color-->
-                    <tr>
-                        <td class="features-left">Java & JVM-based Platforms</td>
-                        <td>
-                            <p>
-                                Ignite is developed predominantly in Java and provides native support for JVM based languages such as Scala.
-                            </p>
-                            <div  class="page-links">
-                                <a href="https://apacheignite.readme.io/docs" target="docs">Docs for this feature <i class="fa fa-angle-double-right"></i></a>
-                            </div>
-                        </td>
-                    </tr>
-                    <tr>
-                        <td class="features-left">C#/.NET</td>
-                        <td>
-                            <p>
-                                Ignite.NET is built on top of Ignite. This allows you to perform almost all the in-memory data grid operations.
-                            </p>
-                            <div  class="page-links">
-                                <a href="https://apacheignite-net.readme.io/docs/" target="docs">Docs for this feature <i class="fa fa-angle-double-right"></i></a>
-                            </div>
-                        </td>
-                    </tr>
-                    <tr>
-                        <td class="features-left">C++</td>
-                        <td>
-                            <p>
-                                Ignite C++ is built on top of Ignite. This allows you to perform almost all the in-memory data grid operations.
-                            </p>
-                            <div  class="page-links">
-                                <a href="https://apacheignite-cpp.readme.io/docs" target="docs">Docs for this feature <i class="fa fa-angle-double-right"></i></a>
-                            </div>
-                        </td>
-                    </tr>
                 </tbody>
             </table>
             <a href="#components">Top <i class="fa fa-angle-double-up"></i></a>
         </section>
 
-        <section id="sqlgrid" class="page-section" style="border: none;">
-            <h2><a class="feature-header" href="/features/sql.html" target="_blank">SQL Grid <i class="fa fa-external-link" style="padding-left:5px;"></i></a></h2>
-            <table class="formatted features" name="compute grid">
-                <thead>
-                <tr>
-                    <th colspan="2" class="left">DISTRIBUTED QUERIES</th>
-                </tr>
-                </thead>
-                <tbody>
-                <tr>
-                    <td class="features-left">SQL Queries</td>
-                    <td>
-                        <p>
-                            Ignite supports the standard SQL syntax (ANSI 99) to query the cache. You can use any SQL function, aggregation, or grouping.
-                        </p>
-                        <div  class="page-links">
-                            <a href="https://apacheignite.readme.io/docs/sql-queries" target="docs">Docs for this feature <i class="fa fa-angle-double-right"></i></a>
-                        </div>
-                    </td>
-                </tr>
-                <tr>
-                    <td class="features-left">Distributed DML </td>
-                    <td>
-                        <p>
-                            Ignite supports DML statements like INSERT, MERGE, UPDATE, and DELETE to modify cached data.
-                        </p>
-                        <div  class="page-links">
-                            <a href="https://apacheignite.readme.io/docs/dml" target="docs">Docs for this feature <i class="fa fa-angle-double-right"></i></a>
-                        </div>
-                    </td>
-                </tr>
-                <tr>
-                    <td class="features-left">Collocated Joins</td>
-                    <td>
-                        <p>
-                            Ignite supports SQL joins on collocated data stored across multiple caches.
-                        </p>
-                        <div  class="page-links">
-                            <a href="https://apacheignite.readme.io/docs/sql-queries#section-distributed-joins" target="docs">Docs for this feature <i class="fa fa-angle-double-right"></i></a>
-                        </div>
-                    </td>
-                </tr>
-                <tr>
-                    <td class="features-left">Non-Collocated Joins</td>
-                    <td>
-                        <p>
-                            Ignite offers non-collocated SQL joins for cases where it is extremely difficult to collocate all the data.
-                        </p>
-                        <div  class="page-links">
-                            <a href="https://apacheignite.readme.io/docs/sql-queries#section-distributed-non-collocated-joins" target="docs">Docs for this feature <i class="fa fa-angle-double-right"></i></a>
-                        </div>
-                    </td>
-                </tr>
-                <tr>
-                    <td class="features-left">Query Indexing</td>
-                    <td>
-                        <p>
-                            For SQL queries, ignites supports in-memory indexing, so all the data lookups are extremely fast.
-                        </p>
-                        <div  class="page-links">
-                            <a href="https://apacheignite.readme.io/docs/indexes" target="docs">Docs for this feature <i class="fa fa-angle-double-right"></i></a>
-                        </div>
-                    </td>
-                </tr>
-                <tr>
-                    <td class="features-left">Query Consistency</td>
-                    <td>
-                        <p>
-                            Ignite provides full query consistency. Updates that happened after the query execution started do not affect the query result.
-                        </p>
-                    </td>
-                </tr>
-                <tr>
-                    <td class="features-left">Query Fault-Tolerance</td>
-                    <td>
-                        <p>
-                            Ignite queries are fault-tolerant, i.e. query result is always consistent and is not affected by cluster topology changes.
-                        </p>
-                    </td>
-                </tr>
-                <tr>
-                    <td class="features-left">Geospacial Support</td>
-                    <td>
-                        <p>
-                            Ignite supports querying and indexing geometry data types such as points, lines, and polygons.
-                        </p>
-                        <div  class="page-links">
-                            <a href="http://apacheignite.gridgain.org/docs/geospatial-queries" target="docs">Docs for this feature <i class="fa fa-angle-double-right"></i></a>
-                        </div>
-                    </td>
-                </tr>
-                <tr class="sub-heading">
-                    <th colspan="2" class="left">SQL DRIVERS</th>
-                </tr>
-                <tr></tr> <!-- this empty row is required to change the background color-->
-                <tr>
-                    <td class="features-left">JDBC Driver</td>
-                    <td>
-                        <p>
-                            Ignite JDBC driver allows users to retrieve and modify data, stored in Ignite caches, using standard SQL/DML commands and JDBC API.
-                        </p>
-                        <div  class="page-links">
-                            <a href="https://apacheignite.readme.io/docs/jdbc-driver" target="docs">Docs for this feature <i class="fa fa-angle-double-right"></i></a>
-                        </div>
-                    </td>
-                </tr>
-                <tr>
-                    <td class="features-left">ODBC Driver</td>
-                    <td>
-                        <p>
-                            Ignite ODBC driver allows users to retrieve and modify data, stored in Ignite caches, using standard SQL/DML comands and ODBC API.
-                        </p>
-                        <div  class="page-links">
-                            <a href="https://apacheignite.readme.io/docs/odbc-driver" target="docs">Docs for this feature <i class="fa fa-angle-double-right"></i></a>
-                        </div>
-                    </td>
-                </tr>
-                <tr class="sub-heading">
-                    <th colspan="2" class="left">STANDARDS</th>
-                </tr>
-                <tr></tr> <!-- this empty row is required to change the background color-->
-                <tr>
-                    <td class="features-left">SQL, JDBC, ODBC</td>
-                    <td>
-                        <p>
-                            Ignite supports retrieving distributed data from cache using standard SQL queries, JDBC and ODBC API.
-                        </p>
-                    </td>
-                </tr>
-                <tr class="sub-heading">
-                    <th colspan="2" class="left">INTEGRATIONS</th>
-                </tr>
-                <tr>
-                    <td class="features-left">Apache Zeppelin</td>
-                    <td>
-                        <p>
-                            Apache Ignite SQL Grid defines a set of APIs that allows integrating with Apache Zeppelin.
-                        </p>
-                        <div  class="page-links">
-                            <a href="https://apacheignite-mix.readme.io/docs/apache-zeppelin" target="docs">Docs for this feature <i class="fa fa-angle-double-right"></i></a>
-                        </div>
-                    </td>
-                </tr>
-                <tr>
-                    <td class="features-left">Tableau</td>
-                    <td>
-                        <p>
-                            Using Ignite ODBC driver, you can connect to the Ignite cluster from Tableau to analyze cached data.
-                        </p>
-                        <div  class="page-links">
-                            <a href="https://apacheignite-mix.readme.io/docs/tableau" target="docs">Docs for this feature <i class="fa fa-angle-double-right"></i></a>
-                        </div>
-                    </td>
-                </tr>
-                <tr>
-                    <td class="features-left">PHP Data Objects</td>
-                    <td>
-                        <p>
-                            Using Ignite ODBC driver and PHP Data Objects, you can connect to the Ignite cluster from PHP side.
-                        </p>
-                        <div  class="page-links">
-                            <a href="https://apacheignite-mix.readme.io/docs/php-pdo" target="docs">Docs for this feature <i class="fa fa-angle-double-right"></i></a>
-                        </div>
-                    </td>
-                </tr>
-                </tbody>
-            </table>
-        </section>
         <section id="computegrid" class="page-section" style="border: none;">
             <h2><a class="feature-header" href="/features/computegrid.html" target="_blank">Compute Grid <i class="fa fa-external-link" style="padding-left:5px;"></i></a></h2>
             <table class="formatted features" name="compute grid">
@@ -811,28 +784,6 @@ under the License.
                             </div>
                         </td>
                     </tr>
-                    <tr>
-                        <td class="features-left">Sliding Windows</td>
-                        <td>
-                            <p>
-                                Streaming allows querying into sliding windows of data. Sliding windows can be time-based, size-based, or batch-based.
-                            </p>
-                            <div  class="page-links">
-                                <a href="https://apacheignite.readme.io/docs/sliding-windows" target="docs">Docs for this feature <i class="fa fa-angle-double-right"></i></a>
-                            </div>
-                        </td>
-                    </tr>
-                    <tr>
-                        <td class="features-left">Querying Sliding Windows</td>
-                        <td>
-                            <p>
-                                Ignite supports SQL, TEXT, and Predicate based cache queries to query into the streaming data.
-                            </p>
-                            <div class="page-links">
-                                <a href="http://apacheignite.readme.io/docs/cache-queries" target="docs">Docs for this Feature <i class="fa fa-angle-double-right"></i></a>
-                            </div>
-                        </td>
-                    </tr>
                     <tr>
                         <td class="features-left">Continuous Queries</td>
                         <td>

Modified: ignite/site/trunk/features/durablememory.html
URL: http://svn.apache.org/viewvc/ignite/site/trunk/features/durablememory.html?rev=1802322&r1=1802321&r2=1802322&view=diff
==============================================================================
Binary files - no diff available.

Modified: ignite/site/trunk/scss/ignite.scss
URL: http://svn.apache.org/viewvc/ignite/site/trunk/scss/ignite.scss?rev=1802322&r1=1802321&r2=1802322&view=diff
==============================================================================
--- ignite/site/trunk/scss/ignite.scss (original)
+++ ignite/site/trunk/scss/ignite.scss Tue Jul 18 18:21:11 2017
@@ -1316,11 +1316,12 @@ table.comparison-matrix {
                 border: none !important;
                 font-weight: 300;
                 letter-spacing: 0.2px;
+                padding-right: 0px !important;
 
                 & > p {
                     margin-top : 8px;
                     margin-bottom : 8px;
-                    padding-right: 15px;
+
 
                     @media (max-width: $mobile) {
                         margin-top : 0px;