OrientDB


OrientDB is an open source NoSQL database management system written in Java. It is a Multi-model database, supporting graph, document, key/value, and object models, but the relationships are managed as in graph databases with direct connections between records. It supports schema-less, schema-full and schema-mixed modes. It has a strong security profiling system based on users and roles and supports querying with Gremlin along with SQL extended for graph traversal. OrientDB uses several indexing mechanisms based on B-tree and Extendible hashing, the last one is known as "hash index", there are plans to implement LSM-tree and Fractal tree index based indexes. Each record has Surrogate key which indicates position of record inside of Array list, links between records are stored either as single value of record's position stored inside of referrer or as B-tree of record positions which allows fast traversal of one-to-many relationships and fast addition/removal of new links. OrientDB is the third most popular graph database according to the DB-Engines graph database ranking, as of September 2017.
The development of OrientDB still relies on an open source community led by OrientDB LTD company created by its original author Luca Garulli. The project uses GitHub to manage the sources, contributors and versioning, Google Group and Stack Overflow to provide free support to the worldwide users. OrientDB also offers a free Udemy course for those hoping to learn the basics and get started with OrientDB.

Engine

OrientDB is built with a multi-model graph/document engine. OrientDB feels like a graph database first, but there's no reason the key-value store can't be used on its own. While OrientDB includes a SQL layer, the support for edges effectively means that these may be used to traverse relationships rather than employing a JOIN statement. OrientDB handles every record / document as an object and the linking between objects / documents is not through references, it's direct linking. This leads to quick retrieval of related data as compared to joins in an RDBMS.

Editions & licenses

OrientDB Community Edition is free for any use. The open source software is built upon by a community of developers. Features such as horizontal scaling, fault tolerance, clustering, sharding, and replication aren’t disabled in the OrientDB Community Edition.
OrientDB Enterprise Edition is the commercial extension of OrientDB Community Edition created to handle more robust and demanding use cases. OrientDB Enterprise Edition includes additional features such as a query profiler, distributed clustering configuration, metrics recording, a live monitor, Teleporter, and configurable alerts.

Features

OrientDB was originally authored by Luca Garulli in 2010. Luca wrote it as a Java rewrite of the fast persistent layer of Orient ODBMS database, which was originally written in C++. During 2012–2014 years storage engine was redeveloped by Andrey Lomakin. It has got a new name "plocal" which stands for "paginated local". This name implies that the new storage engine is based on the concept of the splitting of data files by pages and page is treated as a single atomic unit of change. Since 2012, the project is being sponsored by OrientDB LTD, a for-profit company with Luca as its CEO and founder. In 2013 Andrey Lomakin has joined the company as R&D lead engineer and company's co-owner.
The first time the word "multi-model" has been associated to the databases was on May 30, 2012 in Cologne, Germany, during Luca Garulli's keynote "NoSQL Adoption – What’s the Next Step?". Luca Garulli envisioned the evolution of the 1st generation NoSQL products into new products with more features able to be used by multiple use cases. OrientDB was the first product to embrace documents, graphs, key-value, geospatial and reactive models in the same product, at the core level. This means that the multiple models were integrated into the core without using layers. For this reason, OrientDB is a "Native" Multi-model database.
OrientDB has been covered by media outlets and is the winner of the 2015 InfoWorld Bossie award.
On September 15, 2017, OrientDB LTD company has been acquired by CallidusCloud a public company traded on NASDAQ.
On January 30, 2018, it was announced SAP acquired CallidusCloud for $2.4 billion. and therefore OrientDB is now supported by SAP.