RavenDB

NoSQL document-oriented database From Wikipedia, the free encyclopedia

RavenDB is an open-source document-oriented database written in C#, developed by Hibernating Rhinos Ltd.[6][7][8][1][9][10] It is cross-platform, supported on Windows, Linux, and Mac OS.[6][11] RavenDB stores data as JSON documents and can be deployed in distributed clusters with master-master replication.

Quick Facts Original author(s), Developer(s) ...
RavenDB
Original author(s)Oren Eini (aka Ayende Rahien)
Developer(s)Hibernating Rhinos[1]
Initial release2010; 15 years ago (2010)[2]
Stable release
6.2 / October 2024; 6 months ago (2024-10)[3]
Repository
Written inC#
EngineVoron
Operating systemWindows, Linux, Mac OS, Docker and Raspberry Pi[4][5]
Available inEnglish
TypeDocument-oriented database
LicenseAGPLv3
Websiteravendb.net
hibernatingrhinos.com
Close

History

Originally named "Rhino DivanDB",[6][12] RavenDB began in 2008 as a project by Oren Eini (aka Ayende Rahien)[13][14] and is developed by Hibernating Rhinos Ltd.[1] The company claims it was the first document database to run natively in the .NET Framework.[15][16][7][17] It was an early document database to offer ACID guarantees.[8][17][18]

In 2019, Hibernating Rhinos began offering RavenDB as a cloud service named RavenDB Cloud.[19][20][21]

Version history

Summarize
Perspective
More information Version, Date ...
Version Date Features added (partial list)
1.0 May 2010[2]
2.0 January 2013[22] Replication[23][24]
2.5 June 2013[25] Projections; facet querying[23]
3.0 November 2014[26] Java API; Voron storage engine[27][28]
3.5 October 2016[29] Clustering[29]
4.0 February 2018[30] Became cross-platform; available with a free license[5]
4.1 August 2018[31] Cluster-wide transactions[19][31]
4.2 May 2019[3] Graph querying[19]
5.0 July 2020[32] Time series;[33] Data compression using the Zstd algorithm[34]
5.1 November 2020[35] Indexing attachments;[36] Hub/Sink replication with filtering[37]
5.2 June 2021[35] OLAP ETL;[38] Custom Analyzers[39]
5.3 November 2021[35] Concurrent Data Subscriptions;[40] Microsoft Power BI support[41]
Close
  • Red: Not supported
  • Green: Supported

System architecture

Data is stored as schemaless documents in JSON format.[6][12][7][42][23][24][10] Documents are grouped into collections, with each document having exactly one collection.[23][24][43]

Databases can be deployed on a distributed cluster of servers (called ‘nodes’) using multi-master replication.[6][8] Some operations at the cluster level require a consensus of a majority of nodes; consensus is determined using an implementation of the Raft algorithm called Rachis.[6] Tasks are distributed to the different nodes in a balanced way.[6][44]

Versions 1.0 through 3.5 supported sharding, but versions 4.x do not.[6][7][8][23][24]

RavenDB originally used the ESENT storage engine.[12][13][24] Version 3.0 replaced it with a new open-source storage engine called Voron.[27][28]

Clients are supported for C#, C++, Java, NodeJS, Python, Ruby, and Go.[8]

Main features

  • Cluster-wide ACID Transactions - ACID transactions can be executed at the scope of a cluster (in addition to single node transactions). The transaction will only be persisted if it is confirmed by a consensus of nodes; if it is not, the transaction is cancelled and rolled back.[6][19]
  • Distributed counters[45][46]

Indexes and querying

Queries are expressed in LINQ or with a custom query language named RQL (stands for Raven Query Language) with syntax similar to SQL.[6][7][8]

  • Dynamic indexes - in RavenDB is that queries can only be satisfied by an index; if no appropriate index exists, a new index is created to satisfy the query.[6][16][4][23][24][10]
  • Graph querying - related documents can be treated as vertices in a graph, with the connections treated as edges. This makes it possible to create recursive queries.[45][46][47]
  • Projection - indexes can be configured to transform indexed data, perform calculations, perform aggregations, and execute JavaScript code on the server side.[6][8][48]
  • Full-text search - at a low level, data is indexed with Lucene.net, which means indexes support full-text search.[6][18][23][24][49][50]

Document extensions

Documents can be extended with other data types less suited to JSON. These extensions can be loaded, modified, and stored independently of the document itself.[42]

  • Attachments - documents can have multiple attachments of any data type, such as images, audio, or pure binary.[4]
  • Time Series - numerical data associated with specific times and ordered chronologically.[34][33]

RavenDB Cloud

RavenDB Cloud is a managed database-as-a-service launched in 2019 on AWS, Azure, and GCP. The service performs administration tasks such as hardware maintenance and security for users. It features the sharing of CPU resources among the different nodes in a cluster to avoid throttling.[19][20][21]

Embedded instance

RavenDB can also be run as an embedded instance, a great option for smaller applications and proof of concepts, for instance.

From their Server: Running an Embedded Instance[51] page: "RavenDB makes it very easy to be embedded within your application, with RavenDB Embedded package you can integrate your RavenDB server with a few easy steps."

Licensing

RavenDB is open source under an AGPLv3 license.[6] It is available with a commercial license and a free license for open source projects, but it must be applied for.[52]

References

Loading related searches...

Wikiwand - on

Seamless Wikipedia browsing. On steroids.