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/05/25 00:29:57 UTC

svn commit: r1796120 - in /ignite/site/trunk: blogs.html features/datagrid.html features/sql.html index.html news.html

Author: dmagda
Date: Thu May 25 00:29:57 2017
New Revision: 1796120

URL: http://svn.apache.org/viewvc?rev=1796120&view=rev
Log:
updated the news page

Modified:
    ignite/site/trunk/blogs.html
    ignite/site/trunk/features/datagrid.html
    ignite/site/trunk/features/sql.html
    ignite/site/trunk/index.html
    ignite/site/trunk/news.html

Modified: ignite/site/trunk/blogs.html
URL: http://svn.apache.org/viewvc/ignite/site/trunk/blogs.html?rev=1796120&r1=1796119&r2=1796120&view=diff
==============================================================================
Binary files - no diff available.

Modified: ignite/site/trunk/features/datagrid.html
URL: http://svn.apache.org/viewvc/ignite/site/trunk/features/datagrid.html?rev=1796120&r1=1796119&r2=1796120&view=diff
==============================================================================
--- ignite/site/trunk/features/datagrid.html (original)
+++ ignite/site/trunk/features/datagrid.html Thu May 25 00:29:57 2017
@@ -343,43 +343,10 @@ under the License.
                         </td>
                     </tr>
                     <tr>
-                        <td class="left">Off-Heap and On-Heap Memory</td>
+                        <td class="left">Page Memory</td>
                         <td>
                             <p>
-                                Ignite supports 2 modes for caching data in-memory:
-                                <span style="white-space: nowrap"><code>off-heap</code></span> and
-                                <span style="white-space: nowrap"><code>on-heap</code></span>.
-                                Off-Heap memory allows your cache to overcome lengthy JVM Garbage Collection (GC) pauses
-                                when working with large heap sizes by caching data outside of main Java Heap space,
-                                but still in RAM.
-                            </p>
-                            <div class="page-links">
-                                <a href="http://apacheignite.readme.io/docs/off-heap-memory" target="docs">Docs for this Feature <i class="fa fa-angle-double-right"></i></a>
-                            </div>
-                        </td>
-                    </tr>
-                    <tr>
-                        <td class="left">Off-Heap Indexes</td>
-                        <td>
-                            <p>
-                                Whenever off-heap memory is configured, Ignite will also store query indexes off-heap
-                                as well. This means that indexes will not take any portion of on-heap memory.
-                            </p>
-                            <div  class="page-links">
-                                <a href="https://apacheignite.readme.io/docs/off-heap-memory" target="docs">Docs for this feature <i class="fa fa-angle-double-right"></i></a>
-                            </div>
-                        </td>
-                    </tr>
-                    <tr>
-                        <td class="left">Tiered Storage</td>
-                        <td>
-                            <p>
-                                As data gets colder (not accessed) Ignite will optionally migrate it
-                                from On-Heap memory to Off-Heap memory, and from Off-Heap memory to Swap (disk) storage.
-                            </p>
-                            <p>
-                                Whenever some data is accessed, it will immediately be propagated to the top tier
-                                pushing some other colder data down the next memory tier.
+                                Apache Ignite <code>Page Memory</code> is a manageable off-heap based memory architecture that is split into pages of fixed size. Ignite stores data in off-heap memory with an option to store data on-heap.
                             </p>
                             <div class="page-links">
                                 <a href="http://apacheignite.readme.io/docs/off-heap-memory" target="docs">Docs for this Feature <i class="fa fa-angle-double-right"></i></a>
@@ -390,7 +357,7 @@ under the License.
                         <td class="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:
+                                Apache Ignite stores data in caches as <code>BinaryObjects</code> that allows you to:
                             </p>
                             <ul class="page-list">
                                 <li>Read a serialized object's field without full object deserialization.</li>
@@ -398,7 +365,7 @@ under the License.
                                 <li>Dynamically create an object.</li>
                             </ul>
                             <div  class="page-links">
-                                <a href="https://apacheignite.readme.io/docs/jcache" target="docs">Docs for this feature <i class="fa fa-angle-double-right"></i></a>
+                                <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>
@@ -458,7 +425,7 @@ under the License.
                                 Ignite allows developers to define explicit locks enforcing mutual exclusion on cached objects.
                             </p>
                             <div  class="page-links">
-                                <a href="https://apacheignite.readme.io/docs/locks" target="docs">Docs for this feature <i class="fa fa-angle-double-right"></i></a>
+                                <a href="https://apacheignite.readme.io/docs/distributed-locks" target="docs">Docs for this feature <i class="fa fa-angle-double-right"></i></a>
                             </div>
                         </td>
                     </tr>
@@ -480,7 +447,7 @@ under the License.
                                 Ignite supports <b>distributed SQL joins</b> as well as <b>cross-cache joins</b>.
                             </p>
                             <div  class="page-links">
-                                <a href="https://apacheignite.readme.io/docs/sql-queries#sql-joins" target="docs">Docs for this feature <i class="fa fa-angle-double-right"></i></a>
+                                <a href="https://apacheignite.readme.io/docs/sql-queries#distributed-joins" target="docs">Docs for this feature <i class="fa fa-angle-double-right"></i></a>
                             </div>
                         </td>
                     </tr>
@@ -502,7 +469,7 @@ under the License.
                                 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/sql-queries#configuring-sql-indexes-using-annotations" target="docs">Docs for this feature <i class="fa fa-angle-double-right"></i></a>
+                                <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>
@@ -582,7 +549,7 @@ under the License.
                                 Automatically connect to the underlying database and generate XML OR-mapping configuration and Java domain model POJOs.
                             </p>
                             <div  class="page-links">
-                                <a href="https://apacheignite.readme.io/docs/automatic-persistence" target="docs">Docs for this feature <i class="fa fa-angle-double-right"></i></a>
+                                <a href="https://apacheignite-tools.readme.io/docs" target="docs">Docs for this feature <i class="fa fa-angle-double-right"></i></a>
                             </div>
                         </td>
                     </tr>
@@ -612,7 +579,7 @@ under the License.
                                 performance and scalability of the servlet container.
                             </p>
                             <div class="page-links">
-                                <a href="http://apacheignite.readme.io/docs/web-session-clustering" target="docs">Docs for this Feature <i class="fa fa-angle-double-right"></i></a>
+                                <a href="https://apacheignite-mix.readme.io/docs/web-session-clustering" target="docs">Docs for this Feature <i class="fa fa-angle-double-right"></i></a>
                             </div>
                         </td>
                     </tr>
@@ -624,7 +591,7 @@ under the License.
                                 which can significantly speed-up the persistence layer of your application.
                             </p>
                             <div class="page-links">
-                                <a href="http://apacheignite.readme.io/docs/hibernate-l2-cache" target="docs">Docs for this Feature <i class="fa fa-angle-double-right"></i></a>
+                                <a href="https://apacheignite-mix.readme.io/docs/hibernate-l2-cache" target="docs">Docs for this Feature <i class="fa fa-angle-double-right"></i></a>
                             </div>
                         </td>
                     </tr>
@@ -638,7 +605,7 @@ under the License.
                                 the cache instead of actually executing the method.
                             </p>
                             <div class="page-links">
-                                <a href="http://apacheignite.readme.io/docs/spring-caching" target="docs">Docs for this Feature <i class="fa fa-angle-double-right"></i></a>
+                                <a href="http://apacheignite-mix.readme.io/docs/spring-caching" target="docs">Docs for this Feature <i class="fa fa-angle-double-right"></i></a>
                             </div>
                         </td>
                     </tr>
@@ -682,7 +649,7 @@ under the License.
                         <td>
                             <p></p> &nbsp;
                             <div  class="page-links">
-                                <a href="https://apacheignite.readme.io/docs/osgi-starting-inside-a-container" target="docs">Docs for this feature <i class="fa fa-angle-double-right"></i></a>
+                                <a href="https://apacheignite-mix.readme.io/docs/starting-inside-an-osgi-container" target="docs">Docs for this feature <i class="fa fa-angle-double-right"></i></a>
                             </div>
                         </td>
                     </tr>

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

Modified: ignite/site/trunk/index.html
URL: http://svn.apache.org/viewvc/ignite/site/trunk/index.html?rev=1796120&r1=1796119&r2=1796120&view=diff
==============================================================================
--- ignite/site/trunk/index.html (original)
+++ ignite/site/trunk/index.html Thu May 25 00:29:57 2017
@@ -135,31 +135,20 @@ under the License.
                 <div class="col-sm-3 col-md-3 col-xs-12 news-box">
                     <h4>News & Events</h4>
                     <ul>
-                        <!--<li>-->
-                            <!--<a href="https://spark-summit.org/2017/events/apache-spark-and-apache-ignite-this-is-where-fast-data-meets-the-iot/" target="_blank">-->
-                                <!--Apache Ignite and Apache Spark: This is Where Fast Data Meets the IoT</a><br/>-->
-                            <!--<span class="news-box-date">Spark Summit 2017, San Francisco, Denis Magda, June 7, 2017</span>-->
-                        <!--</li>-->
-                        <!--<li>-->
-                            <!--<a href="https://www.gridgain.com/resources/webinars/apacher-ignitetm-whats-new-version-201" target="_blank">-->
-                                <!--Apache® Ignite™: What’s New in Version 2.0</a><br/>-->
-                            <!--<span class="news-box-date">Webinar, Denis Magda, June 7, 2017</span>-->
-                        <!--</li>-->
                         <li>
-                            <a href="https://apachecon2017.sched.com/event/9zot" target="_blank">
+                            <a href="https://spark-summit.org/2017/events/apache-spark-and-apache-ignite-this-is-where-fast-data-meets-the-iot/" target="_blank">
                                 Apache Ignite and Apache Spark: This is Where Fast Data Meets the IoT</a><br/>
-                            <span class="news-box-date">ApacheCon North America, Miami, Denis Magda, May 18, 2017</span>
+                            <span class="news-box-date">Spark Summit 2017, San Francisco, Denis Magda, June 7, 2017</span>
                         </li>
-
                         <li>
-                            <a href="https://apachebigdata2017.sched.com/event/A01a?iframe=no" target="_blank">
-                                Apache Ignite SQL Grid: Hot Blend of Traditional SQL and Swift Data Grid</a><br/>
-                            <span class="news-box-date">ApacheCon North America, Miami, Denis Magda, May 18, 2017</span>
+                            <a href="https://www.gridgain.com/resources/webinars/apacher-ignitetm-whats-new-version-201" target="_blank">
+                                Apache® Ignite™: What’s New in Version 2.0</a><br/>
+                            <span class="news-box-date">Webinar, Denis Magda, June 7, 2017</span>
                         </li>
                         <li>
-                            <a href="https://www.meetup.com/Miami-Hadoop-User-Group/events/239713172/" target="_blank">
-                                Apache Ignite and Apache Spark: Where Fast Data Meets the IoT</a><br/>
-                            <span class="news-box-date">Miami Hadoop User Group, Miami, FL <br/> Denis Magda, May 17, 2017</span>
+                            <a href="https://dzone.com/articles/how-to-monitor-multiple-apache-ignite-clusters" target="_blank">
+                                How to Monitor Multiple Apache Ignite Clusters</a><br/>
+                            <span class="news-box-date">Blog, Prachi Garg, May 24, 2017</span>
                         </li>
                         <li>
                             <a href="https://dzone.com/articles/benchmarking-apache-ignite-still-keeps-ahead-of-ha-1" target="_blank">

Modified: ignite/site/trunk/news.html
URL: http://svn.apache.org/viewvc/ignite/site/trunk/news.html?rev=1796120&r1=1796119&r2=1796120&view=diff
==============================================================================
Binary files - no diff available.