Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/apache/ignite
Apache Ignite
https://github.com/apache/ignite
big-data cache cloud data-management-platform database distributed-sql-database hadoop ignite in-memory-computing in-memory-database iot network-client network-server osgi sql
Last synced: 2 days ago
JSON representation
Apache Ignite
- Host: GitHub
- URL: https://github.com/apache/ignite
- Owner: apache
- License: apache-2.0
- Created: 2015-02-19T08:00:05.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2024-10-29T12:21:51.000Z (about 1 month ago)
- Last Synced: 2024-10-29T14:50:17.605Z (about 1 month ago)
- Topics: big-data, cache, cloud, data-management-platform, database, distributed-sql-database, hadoop, ignite, in-memory-computing, in-memory-database, iot, network-client, network-server, osgi, sql
- Language: Java
- Homepage: https://ignite.apache.org/
- Size: 415 MB
- Stars: 4,793
- Watchers: 279
- Forks: 1,899
- Open Issues: 783
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
- awesome-csharp - Ignite - Distributed in-memory platform: document database with SQL and LINQ support; distributed computations; distributed services and events. (Database)
- awesome-dotnet-cn - Ignite - Distributed 内存平台:SQL和LINQ支持的文件数据库;分布式计算;分布式服务和事件。 (数据库)
- awesome-dotnet - Ignite - Distributed in-memory platform: document database with SQL and LINQ support; distributed computations; distributed services and events. (Database)
- awesome-dot-dev - Ignite - Distributed in-memory platform: document database with SQL and LINQ support; distributed computations; distributed services and events. (Database)
- awesome-starts - apache/ignite - Apache Ignite (Java)
- awsome-dotnet - Ignite - Distributed in-memory platform: document database with SQL and LINQ support; distributed computations; distributed services and events. (Database)
- awesome-dotnet - Ignite - Distributed in-memory platform: document database with SQL and LINQ support; distributed computations; distributed services and events. (Database)
- awesome-production-machine-learning - Apache Ignite - A memory-centric distributed database, caching, and processing platform for transactional, analytical, and streaming workloads delivering in-memory speeds at petabyte scale - [Demo](https://www.youtube.com/watch?v=Xt4PWQ__YPw). (Data Storage Optimisation)
README
# Apache Ignite
[![Build Status](https://travis-ci.org/apache/ignite.svg?branch=master)](https://travis-ci.org/apache/ignite)
[![GitHub](https://img.shields.io/github/license/apache/ignite?color=blue)](https://www.apache.org/licenses/LICENSE-2.0.html)
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.apache.ignite/ignite-core/badge.svg)](https://search.maven.org/search?q=org.apache.ignite)
[![GitHub release](https://img.shields.io/badge/release-download-brightgreen.svg)](https://ignite.apache.org/download.cgi)
![GitHub commit activity](https://img.shields.io/github/commit-activity/m/apache/ignite)
[![Twitter Follow](https://img.shields.io/twitter/follow/ApacheIgnite?style=social)](https://twitter.com/ApacheIgnite)## What is Apache Ignite?
Apache Ignite is a distributed database for high-performance computing with in-memory speed.
* [Technical Documentation](https://ignite.apache.org/docs/latest/)
* [JavaDoc](https://ignite.apache.org/releases/latest/javadoc/)
* [C#/.NET APIs](https://ignite.apache.org/releases/latest/dotnetdoc/api/)
* [C++ APIs](https://ignite.apache.org/releases/latest/cppdoc/)## Multi-Tier Storage
Apache Ignite is designed to work with memory, disk, and Intel Optane as active storage tiers. The memory tier allows using DRAM and Intel® Optane™ operating in the Memory Mode for data storage and processing needs. The disk tier is optional with the support of two options -- you can persist data in an external database or keep it in the Ignite native persistence. SSD, Flash, HDD, or Intel Optane operating in the AppDirect Mode can be used as a storage device.
[Read More](https://ignite.apache.org/arch/multi-tier-storage.html)
## Ignite Native Persistence
Even though Apache Ignite is broadly used as a caching layer on top of external databases, it comes with its native persistence - a distributed, ACID, and SQL-compliant disk-based store. The native persistence integrates into the Ignite multi-tier storage as a disk tier that can be turned on to let Ignite store more data on disk than it can cache in memory and to enable fast cluster restarts.
[Read More](https://ignite.apache.org/arch/persistence.html)
## ACID Compliance
Data stored in Ignite is ACID-compliant both in memory and on disk, making Ignite a **strongly consistent** system. Ignite transactions work across the network and can span multiple servers.[Read More](https://ignite.apache.org/features/transactions.html)
## ANSI SQL Support
Apache Ignite comes with a ANSI-99 compliant, horizontally scalable, and fault-tolerant SQL engine that allows you to interact with Ignite as with a regular SQL database using JDBC, ODBC drivers, or native SQL APIs available for Java, C#, C++, Python, and other programming languages. Ignite supports all DML commands, including SELECT, UPDATE, INSERT, and DELETE queries as well as a subset of DDL commands relevant for distributed systems.[Read More](https://ignite.apache.org/features/sql.html)
## High-Performance Computing
High-performance computing (HPC) is the ability to process data and perform complex calculations at high speeds. Using Apache Ignite as a [high-performance compute cluster](https://ignite.apache.org/use-cases/hpc.html), you can turn a group of commodity machines or a cloud environment into a distributed supercomputer of interconnected Ignite nodes. Ignite enables speed and scale by processing records in memory and reducing network utilization with APIs for data and compute-intensive calculations. Those APIs implement the MapReduce paradigm and allow you to run arbitrary tasks across the cluster of nodes.