Software:Apache Ignite

From HandWiki
Apache Ignite
Apache Ignite logo.svg
Original author(s)GridGain Systems
Developer(s)Apache Software Foundation
Initial release24 March 2015; 8 years ago (2015-03-24)
Stable release
2.15.0 / 2 May 2023; 9 months ago (2023-05-02)[1]
Preview release
3.0.0 (alpha 5) / 15 June 2022; 20 months ago (2022-06-15)[1]
RepositoryIgnite Repository
Written inJava, C#, C++, SQL
Operating systemCross-platform
PlatformIA-32, x86-64, PowerPC, SPARC, Java platform, .NET Framework
TypeDatabase, computing platform
LicenseApache License 2.0
Websiteignite.apache.org

Apache Ignite is a distributed database management system for high-performance computing.

Apache Ignite's database utilizes RAM as the default storage and processing tier, thus, belonging to the class of in-memory computing platforms.[2] The disk tier is optional but, once enabled, will hold the full data set whereas the memory tier[3] will cache full or partial data set depending on its capacity.

Data in Ignite is stored in the form of key-value pairs. The database component distributes key-value pairs across the cluster in such a way that every node owns a portion of the overall data set. Data is rebalanced automatically whenever a node is added to or removed from the cluster.

Apache Ignite cluster can be deployed on-premise on a commodity hardware, in the cloud (e.g. Microsoft Azure, AWS, Google Compute Engine) or in a containerized and provisioning environments such as Kubernetes, Docker, Apache Mesos, VMware.[4][5]

History

Apache Ignite was developed by GridGain Systems, Inc. and made open source in 2014. GridGain continues to be the main contributor to the source code, and offers both a commercial version and professional services around Apache Ignite.

Once donated as open source, Ignite was accepted in the Apache Incubator program in October of 2014.[6][7] The Ignite project graduated from the incubator program to become a top-level Apache project on September 18, 2015.[7]

In recent years, Apache Ignite has become one of the top 5 most active projects[8] by some metrics, including user base activity and repository size.

GridGain was founded in 2010 by Nikita Ivanov and Dmitriy Setrakyan in Pleasanton, California. A funding round of $2 to $3 million was disclosed in November, 2011.[9] By 2013 it was located in Foster City, California when it disclosed funding of $10 million.[10]

Clustering

Apache Ignite clustering component uses a shared nothing architecture. Server nodes are storage and computational units of the cluster that hold both data and indexes and process incoming requests along with computations. Server nodes are also known as data nodes.[11]

Client nodes are connection points from applications and services to the distributed database on a cluster of server nodes. Client nodes are usually embedded in the application code written in Java, C# or C++ that have special libraries developed. On top of its distributed foundation, Apache Ignite supports interfaces including JCache-compliant key-value APIs, ANSI-99 SQL with joins, ACID transactions, as well as MapReduce like computations. Ignite provides ODBC,[12] JDBC[13] and REST drivers as a way to work with the database from other programming languages or tools. The drivers utilize either client nodes or low-level socket connections internally in order to communicate to the cluster.

Partitioning and replication

Ignite database organizes data in the form of key-value pairs in distributed "caches" (the cache notion is used for historical reasons because initially, the database supported the memory tier). Generally, each cache represents one entity type such as an employee or organization.

Every cache is split into a fixed set of "partitions" that are evenly distributed among cluster nodes using the rendezvous hashing algorithm. There is always one primary and zero or more backup copies of a partition. The number of copies is configured with a replication factor parameter.[14] If the full replication mode is configured, then every cluster node will store a partition's copy. The partitions are rebalanced[15] automatically if a node is added to or removed from the cluster in order to achieve an even data distribution and spread the workload.

The key-value pairs are kept in the partitions. Apache Ignite maps a pair to a partition by taking the key's value and passing it to a special hash function.

Memory architecture

The memory architecture in Apache Ignite consists of two storage tiers and is called "durable memory". Internally, it uses paging for memory space management and data reference,[16] similar to the virtual memory of systems like Unix. However, one significant difference between the durable and virtual memory architectures is that the former always keeps the whole data set with indexes on disk (assuming that the disk tier is enabled), while the virtual memory uses the disk when it runs out of RAM, for swapping purposes only.

The first tier of the memory architecture, memory tier, keeps data and indexes in RAM out of Java heap in so-called "off-heap regions". The regions are preallocated and managed by the database on its own which prevents Java heap utilization for storage needs, as a result, helping to avoid long garbage collection pauses. The regions are split into pages of fixed size that store data, indexes, and system metadata.[17]

Apache Ignite is fully operational from the memory tier but it is always possible to use the second tier, disk tier, for the sake of durability. The database comes with its own native persistence and, plus, can use RDBMS, NoSQL or Hadoop databases as its disk tier.

Native persistence

Apache Ignite native persistence is a distributed and strongly consistent disk store that always holds a superset of data and indexes on disk. The memory tier [3] will only cache as much data as it can depending on its capacity. For example, if there are 1000 entries and the memory tier can fit only 300 of them, then all 1000 will be stored on disk and only 300 will be cached in RAM.

Persistence uses the write-ahead logging (WAL) technique for keeping immediate data modifications on disk.[18] In the background, the store runs the "checkpointing process" which purpose is to copy dirty pages from the memory tier to the partition files. A dirty page is a page that is modified in memory with the modification recorded in WAL but not written to a respective partition file. The checkpointing allows removing outdated WAL segments over the time and reduces cluster restart time replaying only that part of WAL that has not been applied to the partition files.[19]

Third-party persistence

The native persistence became available starting version 2.1.[20] Before that Apache Ignite supported only third-party databases as its disk tier.

Apache Ignite can be configured as the in-memory tier on top of RDBMS, NoSQL or Hadoop databases speeding up the latter.[21] However, there are some limitations in comparison to the native persistence. For instance, SQL queries will be executed only on the data that is in RAM, thus, requiring to preload all the data set from disk to memory beforehand.

Swap space

When using pure memory storage, it is possible for the data size to exceed the physical RAM size, leading to Out-Of-Memory Errors (OOMEs). To avoid this, the ideal approach would be to enable Ignite native persistence or use third-party persistence. However, if you do not want to use native or third-party persistence, you can enable swapping, in which case, Ignite in-memory data will be moved to the swap space located on disk. Note that Ignite does not provide its own implementation of swap space. Instead, it takes advantage of the swapping functionality provided by the operating system (OS). When swap space is enabled, Ignites stores data in memory mapped files (MMF) whose content will be swapped to disk by the OS depending on the current RAM consumption

Consistency

Apache Ignite is a strongly consistent platform that implements two-phase commit protocol.[22] The consistency guarantees are met for both memory and disk tiers. Transactions in Apache Ignite are ACID-compliant and can span multiple cluster nodes and caches. The database supports pessimistic and optimistic concurrency modes, deadlock-free transactions and deadlock detection techniques.

In the scenarios where transactional guarantees are optional, Apache Ignite allows executing queries in the atomic mode that provides better performance.

Distributed SQL

Apache Ignite can be accessed using SQL APIs exposed via JDBC and ODBC drivers, and native libraries developed for Java, C#, C++ programming languages. Both data manipulation and data definition languages' syntax complies with ANSI-99 specification.

Being a distributed database, Apache Ignite supports both distributed collocated and non-collocated joins.[23] When the data is collocated, joins are executed on the local data of cluster nodes avoiding data movement across the network. Non-collocated joins might move the data sets around the network in order to prepare a consistent result set.

Machine Learning

Apache Ignite provides machine learning training and inference functionality as well as data preprocessing and model quality estimation.[24] It natively supports classical training algorithms such as Linear Regression, Decision Trees, Random Forest, Gradient Boosting, SVM, K-Means and others. In addition to that, Apache Ignite has a deep integration with TensorFlow.[25] This integrations allows to train neural networks on a data stored in Apache Ignite in a single-node or distributed manner.

The key idea of Apache Ignite Machine Learning toolkit is an ability to perform distributed training and inference instantly without massive data transmissions. It's based on MapReduce approach, resilient to node failures and data rebalances, allows to avoid data transfers and so that speed up preprocessing and model training.[26]

References

  1. 1.0 1.1 "Downloads - Apache Ignite". https://ignite.apache.org/download.cgi#sources. 
  2. "Nikita Ivanov on Apache Ignite In-Memory Computing Platform". https://www.infoq.com/news/2017/04/nikita-ivanov-apache-ignite. 
  3. 3.0 3.1 "Apache Ignite Native Persistence, a Brief Overview - DZone Big Data" (in en). https://dzone.com/articles/demystifying-the-apache-ignite-native-persistence. 
  4. "Deploying Apache Ignite in Kubernetes on Microsoft Azure - DZone Cloud" (in en). https://dzone.com/articles/deploying-apache-ignite-in-kubernetes-on-microsoft. 
  5. "Real-time in-memory OLTP and Analytics with Apache Ignite on AWS | Amazon Web Services" (in en-US). Amazon Web Services. 2016-05-14. https://aws.amazon.com/blogs/big-data/real-time-in-memory-oltp-and-analytics-with-apache-ignite-on-aws/. 
  6. "Nikita Ivanov on Apache Ignite In-Memory Computing Platform". https://www.infoq.com/news/2017/04/nikita-ivanov-apache-ignite. 
  7. 7.0 7.1 "Ignite Status - Apache Incubator". https://incubator.apache.org/projects/ignite.html. 
  8. "Apache Ignite Momentum: Highlights from 2020-2021 : Apache Ignite". https://blogs.apache.org/ignite/entry/apache-ignite-momentum-highlights-from. 
  9. "Form D - Notice of Exempt Offering of Securities". United States Securities and Exchange Commission. November 8, 2011. https://www.sec.gov/Archives/edgar/data/1534256/000153425611000001/xslFormDX01/primary_doc.xml. Retrieved February 16, 2022. 
  10. "Form D - Notice of Exempt Offering of Securities". United States Securities and Exchange Commission. May 7, 2013. https://www.sec.gov/Archives/edgar/data/1534256/000153425613000003/xslFormDX01/primary_doc.xml. Retrieved February 16, 2022. 
  11. "Clients and Servers". https://apacheignite.readme.io/docs/clients-vs-servers. 
  12. "ODBC Driver". https://apacheignite.readme.io/docs/odbc-driver. 
  13. "JDBC Driver". https://apacheignite.readme.io/docs/jdbc-driver. 
  14. "Primary & Backup Copies". https://apacheignite.readme.io/docs/primary-and-backup-copies. 
  15. "Data Rebalancing". https://apacheignite.readme.io/docs/rebalancing. 
  16. "Apache Ignite 2.0: Redesigned Off-heap Memory, DDL and Machine Learning : Apache Ignite". https://blogs.apache.org/ignite/entry/apache-ignite-2-0-redesigned. 
  17. "Memory Architecture". https://apacheignite.readme.io/docs/memory-architecture. 
  18. "Ignite Persistence". https://apacheignite.readme.io/docs/distributed-persistent-store#section-write-ahead-log. 
  19. "Ignite Persistence". https://apacheignite.readme.io/docs/distributed-persistent-store#section-checkpointing. 
  20. "Apache Ignite 2.1 - A Leap from In-Memory to Memory-Centric Architecture : Apache Ignite". https://blogs.apache.org/ignite/entry/apache-ignite-2-1-a. 
  21. "Apache Ignite for Database Caching - DZone Database" (in en). https://dzone.com/articles/apache-ignite-for-database-caching-1. 
  22. "Distributed Thoughts". http://gridgain.blogspot.com//2014/09/two-ph%E2%80%A6. 
  23. "Apache Ignite 1.7: Welcome Non-Collocated Distributed Joins! - DZone Database" (in en). https://dzone.com/articles/big-change-in-apache-ignite-17-welcome-the-non-col. 
  24. "Machine Learning". https://apacheignite.readme.io/docs/machine-learning. 
  25. "TensorFlow: Apache Ignite Integration". https://github.com/tensorflow/tensorflow/blob/master/tensorflow/contrib/ignite/README.md. 
  26. "Partition Based Dataset". https://apacheignite.readme.io/docs/ml-partition-based-dataset.