Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 3E7D4200CF3 for ; Tue, 15 Aug 2017 04:21:15 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 3D1731662D3; Tue, 15 Aug 2017 02:21:15 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 8AF4A1662D0 for ; Tue, 15 Aug 2017 04:21:14 +0200 (CEST) Received: (qmail 58426 invoked by uid 500); 15 Aug 2017 02:21:13 -0000 Mailing-List: contact commits-help@ignite.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@ignite.apache.org Delivered-To: mailing list commits@ignite.apache.org Received: (qmail 58417 invoked by uid 99); 15 Aug 2017 02:21:13 -0000 Received: from Unknown (HELO svn01-us-west.apache.org) (209.188.14.144) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 15 Aug 2017 02:21:13 +0000 Received: from svn01-us-west.apache.org (localhost [127.0.0.1]) by svn01-us-west.apache.org (ASF Mail Server at svn01-us-west.apache.org) with ESMTP id 36AF23A00A7 for ; Tue, 15 Aug 2017 02:21:11 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1805049 - /ignite/site/trunk/features/persistence.html Date: Tue, 15 Aug 2017 02:21:10 -0000 To: commits@ignite.apache.org From: dmagda@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20170815022112.36AF23A00A7@svn01-us-west.apache.org> archived-at: Tue, 15 Aug 2017 02:21:15 -0000 Author: dmagda Date: Tue Aug 15 02:21:09 2017 New Revision: 1805049 URL: http://svn.apache.org/viewvc?rev=1805049&view=rev Log: did some renamings Modified: ignite/site/trunk/features/persistence.html Modified: ignite/site/trunk/features/persistence.html URL: http://svn.apache.org/viewvc/ignite/site/trunk/features/persistence.html?rev=1805049&r1=1805048&r2=1805049&view=diff ============================================================================== --- ignite/site/trunk/features/persistence.html (original) +++ ignite/site/trunk/features/persistence.html Tue Aug 15 02:21:09 2017 @@ -55,11 +55,11 @@ under the License.

Ignite Native Persistence

-

Ignite Persistent Store is a distributed ACID and SQL-compliant disk store that transparently integrates with Ignite's +

Ignite Native Persistence 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.

- With persistent store enabled, you no longer need to keep all the data and indexes in memory or warm it up after a node or cluster restart because - Apache Durable Memory is tightly coupled with the Persistent Store and treats it as a secondary storage. This implies that if a subset of data or an + With the Ignite Persistence enabled, you no longer need to keep all the data and indexes in memory or warm it up after a node or cluster restart because + Apache Durable Memory is tightly coupled with the persistence and treats it as a secondary storage. This implies that if a subset of data or an index is missing in RAM, the durable memory will take it from disk.

@@ -69,13 +69,13 @@ under the License.

- Apache Ignite Persistent Store has the following advantages over 3rd party stores (RDBMS, NoSQL, Hadoop) + Apache Ignite Native Persistence has the following advantages over 3rd party persistent stores (RDBMS, NoSQL, Hadoop) that can be used as an alternative persistence layer for an Apache Ignite cluster:

  • Ability to execute SQL queries over the data that is both in memory and on disk which means that Apache Ignite can be used as a memory-optimized distributed SQL database.
  • -
  • No need to have all the data and indexes in memory. The Persistent Store allows storing a superset of data on disk and only most frequently used subsets in memory.
  • -
  • Instantaneous cluster restarts. If the whole cluster goes down there is no need to warm up the memory by preloading data from the Persistent Store. +
  • No need to have all the data and indexes in memory. The Ignite Persistence allows storing a superset of data on disk and only most frequently used subsets in memory.
  • +
  • Instantaneous cluster restarts. If the whole cluster goes down there is no need to warm up the memory by preloading data from the Ignite Persistence. The cluster becomes fully operational once all the cluster nodes are interconnected with each other.
  • Data and indexes are stored in a similar format both in memory and on disk that helps to avoid expensive transformations while the data sets are being moved between memory and disk.
  • An ability to create full and incremental cluster snapshots by plugging-in 3rd party solutions.