Movatterモバイル変換


[0]ホーム

URL:


Jump to content
WikipediaThe Free Encyclopedia
Search

ArangoDB

From Wikipedia, the free encyclopedia
Multi-model database
ArangoDB
Developer(s)ArangoDB GmbH
Initial release2011; 14 years ago (2011)
Stable release
3.11.5 / November 9, 2023; 16 months ago (2023-11-09)
Repository
Written inC++,JavaScript
TypeMulti-model database,Graph database,Document-oriented database,Key/Value database,Full-text Search Engine
LicenseBusiness Source License 1.1 and Arango Community License
Websitearangodb.com

ArangoDB is agraph database system developed by ArangoDB Inc. ArangoDB is amulti-model database system since it supports three data models (graphs,JSON documents,key/value)[1] with one database core and a unifiedquery language AQL (ArangoDB Query Language). AQL is mainly a declarative language[2] and allows the combination of different data access patterns in a single query.[3]

ArangoDB is aNoSQL database system[4] but AQL is similar in many ways toSQL,[5] it usesRocksDB as a storage engine.

History

[edit]

ArangoDB GmbH was founded in 2014 by Claudius Weinberger and Frank Celler.[6] They originally called the database system “A Versatile Object Container", or AVOC for short, leading them to call the database AvocadoDB.[7][8][9] Later, they changed the name to ArangoDB.[10] The word "arango" refers to a little-known avocado variety grown in Cuba.[11]

In January 2017 ArangoDB raised a seed round investment of 4.2 million Euros led by Target Partners. In March 2019 ArangoDB raised 10 million dollars in series A funding[12] led by Bow Capital. In October 2021 ArangoDB raised 27.8 million dollars in series B funding led byIris Capital.[13]

Release history

[edit]
ReleaseFirst ReleaseLatest Minor VersionLatest ReleaseFeature NotesReference
3.112023-05-303.11.52023-11-09
  • Faster query performance across search and graph.
  • Data science and analytics operational enhancements.
  • Improved user experience for database administration and management.
Release Notes
3.102022-10-043.10.112023-10-19
  • Native ARM support, including native support forApple Silicon.
  • Support for computed values (persistent document attributes that are generated when a document is created or updated).
  • Parallelism for sharded graphs.
  • A graph traversal algorithm to query for all paths with the shortest value, between two documents.
Release Notes
3.92022-02-153.9.122023-08-23
  • Collections replicated on all cluster nodes can be combined with graphs sharded by document attributes to enable more local execution of graph queries ("Hybrid SmartGraphs", "Hybrid Disjoint SmartGraphs").
  • Language-agnostic tokenization of text ("Segmentation Analyzer").
Release Notes
3.82021-07-293.8.92023-03-27
  • Graph traversal algorithms to enumerate all paths between two vertices ("k Paths") and to emit paths in order of increasing edge weights ("Weighted Traversals").
  • Support for sliding window queries to aggregate adjacent documents, value ranges and time intervals.
  • Geo-spatial queries can be combined with full-text search.
  • Flexible data field pre-processing with custom queries ("AQL Analyzer") and the ability to chain built-in and custom analyzers ("Pipeline Analyzer").
  • Hardware-accelerated on-disk encryption.
Release Notes
3.72020-09-163.7.172022-02-01
  • Graphs replicated on all cluster nodes to execute graph traversals locally ("SatelliteGraphs").
  • Document validation using JSON Schema.
  • Wildcard and fuzzy search support for full-text search.
  • Key rotation for superuser JWT tokens, TLS certificates, and on-disk encryption keys.
Release Notes
3.62020-01-083.6.162021-09-06
  • Option to store all collections of a database on a single cluster node, to combine the performance of a single server and ACID semantics with a fault-tolerant cluster setup ("OneShard").
  • Parallel execution of queries on several cluster nodes.
  • Late document materialization to only fetch the relevant documents from SORT/LIMIT queries and early pruning of non-matching documents in full collection scans.
  • Inlining of certain subqueries to improve execution time.
Release Notes
3.52019-08-213.5.72020-12-30
  • Multi-document transactions with individual begin and commit / abort commands ("Stream Transactions").
  • Time-based removal of expired documents ("Time-to-live Index").
  • Stop condition support for graph traversals ("Pruning in Traversals").
  • Graph traversal algorithm to get multiple shortest paths ("k Shortest Paths").
  • Co-located joins in a cluster using identically sharded collections ("SmartJoins").
  • Consistent snapshot backup in cluster mode.
  • Custom text pre-processors for full-text search ("Configurable Analyzers").
  • Data masking capabilities for attributes containing sensitive data / PII when creating backups.
Release Notes
3.42018-12-063.4.112020-09-09
  • Integrated full-text search and information retrieval engine ("ArangoSearch").
  • Improved geo-spatial index with GeoJSON support.
  • Insert operations can be turned into a replace automatically, in case that the target document already exists ("Repsert").
  • Round-robin load-balancer support for cloud environments.
  • Query profiling to show detailed runtime information.
  • Cluster-distributed aggregation queries.
  • Native implementations in C++ of all built-in query functions.
  • Multi-threaded dump and restore operations.
Release Notes
3.32017-12-223.3.252020-02-28
  • Datacenter to Datacenter Replication for disaster recovery ("DC2DC").
  • Encrypted backups.
  • Deployment mode for single servers with automatic failover.
Release Notes
3.22017-07-203.2.182019-02-02
  • Distributed iterative graph processing with Pregel in single server and cluster.
  • Collections replicated on all cluster nodes to execute joins with sharded data locally ("SatelliteCollections").
  • Fault-tolerant microservices.
  • Support for composable, distance-based geo-queries.
  • Export utility for multiple formats.
  • Encryption of on-disk data.
  • LDAP authentication.
Release Notes
3.12016-11-033.1.292018-06-23
  • Value-based sharding of large graph datasets for better data locality when traversing graphs ("SmartGraphs").
  • Support for vertex-centric indexes for more efficient graph traversals with filter conditions.
  • New viewer for large graphs, supporting WebGL.
  • Binary wire format ("VelocyStream").
  • Low-latency request handling using a boost-ASIO server infrastructure.
  • Improved query editor and query explain output.
  • Audit logging.
Release Notes
3.02016-07-233.0.122016-11-23
  • Cluster support with synchronous replication and automatic failover.
  • Binary storage format ("VelocyPack").
  • Persistent indexes that are stored on disk for faster restarts.
Release

Notes

Features

[edit]
  • JSON: ArangoDB usesJSON as a default storage format,[14] but internally it uses ArangoDB VelocyPack – a fast and compact binary format for serialization and storage.[15] ArangoDB can natively store a nested JSON object as a data entry inside a collection. Therefore, there is no need to disassemble the resulting JSON objects. Thus, the stored data would simply inherit the tree structure of the JSON data.
  • Predictable performance: ArangoDB is written mainly in C++[16] and manages its own memory to avoid unpredictable performance arising fromgarbage collection.
  • Scaling: ArangoDB providesscaling through clustering.[17]
  • Reliability: ArangoDB provides datacenter-to-datacenter replication.[18]
  • Kubernetes: ArangoDB runs on Kubernetes, including cloud-based Kubernetes services Amazon Elastic Kubernetes Service (EKS), Google Kubernetes Engine (GKE), andMicrosoft Azure Kubernetes Service (AKS).[19]
  • Microservices: ArangoDB provides integration with nativeJavaScript microservices directly on top of the DBMS using the Foxx framework.[20]
  • Multiple query languages: The database has its own query language, AQL (ArangoDB Query Language), and also providesGraphQL to write flexible native web services directly on top of the DBMS.[21]
  • Search: ArangoDB's search engine combines boolean retrieval capabilities with generalized ranking components allowing for data retrieval based on a precisevector space model.[22]
  • Pregel algorithm:Pregel is a system for large scale graph processing.[23] Pregel is implemented in ArangoDB and can be used with predefined algorithms, e.g.PageRank, Single-Source Shortest Path and Connected components.[24]
  • Transactions: ArangoDB supports user-definable transactions. Transactions in ArangoDB are atomic, consistent, isolated, and durable (ACID), but only if data is not sharded.[25]

AQL (ArangoDB Query Language) is theSQL-like query language[26] used in ArangoDB. It supportsCRUD operations for both documents (nodes) and edges, but it is not adata definition language (DDL). AQL does supportgeospatial queries.

AQL isJSON-oriented:

// Return every document in a collectionFORdocINcollectionRETURNdoc// Count the number of documents in a collectionFORdocINcollectionCOLLECTWITHCOUNTINTOlengthRETURNlength// Add a new document into our collectionINSERT{_key:"john",name:"John",age:45}INTOcollection// Update document with key of “john” to have age 46.UPDATE{_key:"john",age:46}INcollection// Add an attribute numberOfLogins for all users with status active:FORuINusersFILTERu.active==trueUPDATEuWITH{numberOfLogins:0}INusers

Editions

[edit]
  • Community Edition: ArangoDB Community Edition is a graph database with native multi-model database capabilities written mainly in C++ and was available under anopen-source license (Apache 2) until October 2023. It was then changed to "ArangoDB Community License, which limits its use for commercial purposes and imposes a 100GB limit on dataset size within a single cluster"[27]
  • Commercial self-managed: ArangoDB Enterprise is a paid subscription that includes graph-aware sharding (called “SmartGraphs”)[28] and collection replication (called “Satellite Collections”) to reduce query times,[29] and increased security.[30]
  • Cloud: ArangoDB is offered as a cloud service called Oasis, providing ArangoDB databases as a Service (DBaaS). ArangoDB Oasis provides the functionality of an ArangoDB cluster deployment while minimizing the amount of administrative effort required.[31] ArangoDB Oasis run on multiplecloud service providers, include AWS, Azure, and Google Cloud.[32]

See also

[edit]

References

[edit]
  1. ^"Advantages of native multi-model in ArangoDB".ArangoDB. Retrieved2022-07-26.
  2. ^"ArangoDB Query Language (AQL) Introduction | ArangoDB Documentation".www.arangodb.com. Retrieved2022-07-26.
  3. ^"AQL Query Patterns & Examples | ArangoDB Documentation".www.arangodb.com. Retrieved2022-07-26.
  4. ^Celler, Frank (2012-03-07)."ArangoDB's design objectives".ArangoDB. Retrieved2022-07-26.
  5. ^"ArangoDB Query Language (AQL) Introduction | ArangoDB Documentation".www.arangodb.com. Retrieved2022-07-26.
  6. ^"Variety Database".www.avocadosource.com. Retrieved2022-07-27.
  7. ^Ortell, Bill (2021-03-08),AvocadoDB, retrieved2022-07-27
  8. ^AvocadoDB explained, retrieved2022-07-27
  9. ^AvocadoDB Query Language Jan Steemann in english, retrieved2022-07-27
  10. ^""AvocadoDB" becomes "ArangoDB"".ArangoDB. 2012-05-09. Retrieved2022-07-27.
  11. ^"Variety Database".www.avocadosource.com. Retrieved2022-08-05.
  12. ^Weinberger, Claudius (2019-03-14)."ArangoDB receives Series A Funding led by Bow Capital".ArangoDB. Retrieved2022-07-27.
  13. ^"ArangoDB Announces $27.8 Million Series B Investment to Accelerate Development of Next-Generation Graph ML, Providing Advanced Analytics and AI Capabilities at Enterprise Scale".ArangoDB. Retrieved2022-07-27.
  14. ^AvocadoDB explained, retrieved2022-08-05
  15. ^AvocadoDB Query Language Jan Steemann in english, retrieved2022-08-05
  16. ^ArangoDB, ArangoDB, 2022-08-05, retrieved2022-08-05
  17. ^"Cluster | ArangoDB Deployment Modes | Architecture | Manual | ArangoDB Documentation".www.arangodb.com. Retrieved2022-08-05.
  18. ^"DC2DC Replication | ArangoDB Documentation".www.arangodb.com. Retrieved2022-08-05.
  19. ^"Kubernetes | Tutorials | Manual | ArangoDB Documentation".www.arangodb.com. Retrieved2022-08-05.
  20. ^"Foxx Microservices | ArangoDB Documentation".www.arangodb.com. Retrieved2022-08-05.
  21. ^ArangoDB, ArangoDB, 2022-08-05, retrieved2022-08-05
  22. ^"ArangoSearch - Full-text search engine including similarity ranking capabilities".ArangoDB. Retrieved2022-08-05.
  23. ^"Stanford University Pregel White paper"(PDF).
  24. ^"Pregel | Data Science | Manual | ArangoDB Documentation".www.arangodb.com. Retrieved2022-08-05.
  25. ^"Transactions | Manual | ArangoDB Documentation".www.arangodb.com. Retrieved2022-08-05.
  26. ^"Cluster | ArangoDB Deployment Modes | Architecture | Manual | ArangoDB Documentation".www.arangodb.com. Retrieved2022-08-11.
  27. ^ArangoDB, ArangoDB, 2023-10-13, retrieved2023-10-13
  28. ^"ArangoDB SmartGraphs | ArangoDB Documentation".www.arangodb.com. Retrieved2022-08-11.
  29. ^"ArangoDB SatelliteCollections | ArangoDB Documentation".www.arangodb.com. Retrieved2022-08-11.
  30. ^"ArangoDB Enterprise Features".ArangoDB. Retrieved2022-08-11.
  31. ^"Getting Started with ArangoDB Oasis | ArangoDB Documentation".www.arangodb.com. Retrieved2022-08-11.
  32. ^"ArangoDB Oasis".ArangoDB Oasis. Retrieved2022-08-11.
Retrieved from "https://en.wikipedia.org/w/index.php?title=ArangoDB&oldid=1281779187"
Categories:
Hidden categories:

[8]ページ先頭

©2009-2025 Movatter.jp