RocksDB

RocksDB is a high performance[1][2][3][4][5] embedded database for key-value data. It is a fork of LevelDB by Google optimized to exploit many central processing unit (CPU) cores, and make efficient use of fast storage, such as solid-state drives (SSD), for input/output (I/O) bound workloads. It is based on a log-structured merge-tree (LSM tree) data structure. It is written in C++ and provides official application programming interface (API) language bindings for C++, C, and Java; alongside many third-party language bindings. RocksDB is open-source software, and was originally released under a BSD 3-clause license[6][7][8]. However, in July 2017 the project was migrated to a dual license of both Apache 2.0 and GPLv2 license[9], possibly in response to the Apache Software Foundation's blacklist of the previous BSD+Patents license clause.[10][11]

RocksDB
Developer(s)Facebook
Initial releaseMay 2012 (2012-05)
Stable release
6.10.2 / June 11, 2020 (2020-06-11)
Repository
Written inC++
Operating systemWindows, macOS, Linux, FreeBSD, OpenBSD, Solaris, AIX
Platformx86, x86_64, ppc64, ppc64le, aarch64
TypeEmbedded database
LicenseApache 2.0 or GPL 2
Websiterocksdb.org

RocksDB is used in production systems at various web-scale enterprises[12] including Facebook, Yahoo!,[13] and LinkedIn.[14]

Features

RocksDB, like LevelDB, stores keys and values in arbitrary byte arrays, and data is sorted byte-wise by key or by providing a custom comparator.

RocksDB provides all of the features of LevelDB, plus:

and others: List of RocksDB features that are not in LevelDB.

RocksDB is not an SQL database (although MyRocks combines RocksDB with MySQL). Like other NoSQL and dbm stores, it has no relational data model, and it does not support SQL queries. Also, it has no direct support for secondary indexes, however a user may build their own internally using Column Families or externally. Applications use RocksDB as a library, as it does not provide a server or command-line interface.

History

RocksDB was created at Facebook by Dhruba Borthakur[25][26] in April 2012, as a fork of LevelDB with the initial stated goal of improving performance for server workloads.[27][28]

Integration

As an embeddable database, RocksDB can be used as a storage engine within a larger database management system (DBMS). For example, CockroachDB uses RocksDB as its storage engine[29], mostly for transactional workloads while Rockset uses RocksDB mostly for analytical data processing. This shows that RocksDB can be used as a storage engine for both Online transaction processing and Online analytical processing.

Alternative backend

The following projects have been started to replace or offer an alternative storage engines for already-established database systems with RocksDB:

ArangoDB

ArangoDB has added RocksDB to its previous storage engine ("mmfiles").[30] Starting with ArangoDB 3.4, RocksDB will be the default storage engine in ArangoDB.[31]

Cassandra

Cassandra on RocksDB can improve the performance of Apache Cassandra significantly (3-4 times faster in general, 100 times faster in some use-cases). The Instagram team at Facebook developed and open-sourced their code, along with benchmarks of their performance results.[32]

MariaDB

MariaDB can use the MyRocks storage engine (which is forked from RocksDB) since MariaDB 10.2.5 (Alpha status) [33] and stable since MariaDB 10.2.16 in 2018.[34]

MongoDB

The MongoRocks project provides a storage module for MongoDB where the storage engine is RocksDB.[35][36][37]

A related program is Rocks Strata, a tool written in Go, which allows managing incremental backups of MongoDB when RocksDB is used as the storage engine.[38]

MySQL

The MyRocks project creates a new RocksDB based storage engine for MySQL.[39][40] In-depth details about MyRocks were presented at Percona Live 2016.[41]

Embedded

The following database systems and applications have chosen to use RocksDB as their embedded storage engine:

Ceph's BlueStore

The Ceph's BlueStore storage layer uses RocksDB for metadata management in OSD devices.[42]

Apache Flink uses RocksDB to store checkpoints.[43]

FusionDB

FusionDB[44] uses RocksDB as its storage engine for XML, Key/Value, and JSON.[45]

LogDevice LogsDB

LogDevice's LogsDB is built atop RocksDB.[46]

Rockset

The Rockset service that is used for operational data analytics uses RocksDB as its storage engine.[47]

SSDB

The ssdb-rocks[48] project uses RocksDB as the storage engine for the SSDB[49] NoSQL Database.

TiDB

The TiDB[50] project uses RocksDB as its storage engine.[51]

Third-party language bindings

Third-party programming language bindings available for RocksDB include:

References

  1. "Performance Benchmarks". Retrieved November 29, 2015.
  2. "Benchmarking the leveldb family". Retrieved March 10, 2016.
  3. "Comparing LevelDB and RocksDB, take 2". Retrieved March 10, 2016.
  4. "Benchmarking LevelDB vs. RocksDB vs. HyperLevelDB vs. LMDB Performance for InfluxDB". Retrieved March 10, 2016.
  5. Golan-Gueta, Guy; Bortnikov, Edward; Hillel, Eschar; Keidar, Idit (April 21, 2015). "Scaling Concurrent Log-Structured Data Stores". EuroSys '15 Proceedings of the Tenth European Conference on Computer Systems. doi:10.1145/2741948.2741973.
  6. "Facebook's latest open source effort: a flash-powered database called RocksDB". Retrieved March 10, 2016.
  7. "Under the Hood: Building and open-sourcing RocksDB". Retrieved March 10, 2016.
  8. "RocksDB - Facebook's Database Now Open Source". Retrieved March 10, 2016.
  9. "GitHub pull request". Retrieved July 20, 2017.
  10. "Apache says 'no' to Facebook code libraries". Retrieved July 20, 2017.
  11. "GitHub issue". Retrieved July 20, 2017.
  12. "Users.md". Retrieved December 1, 2015.
  13. "RocksDB on Steroids". Retrieved March 10, 2016.
  14. "Benchmarking Apache Samza: 1.2 million messages per second on a single node". Retrieved March 10, 2016.
  15. "RocksDB transactions". GitHub. Retrieved 2016-04-04.
  16. "How to backup RocksDB?". Retrieved 2017-07-19.
  17. "Checkpoints". Retrieved 2017-07-19.
  18. "Column families in RocksDB". GitHub. Retrieved 2016-04-04.
  19. "RocksDB bloom filters". GitHub. Retrieved 2016-04-04.
  20. "RocksDB TTL support". GitHub. Retrieved 2016-04-04.
  21. "Universal compaction". GitHub. Retrieved 2016-04-04.
  22. "RocksDB merge operator". GitHub. Retrieved 2016-04-04.
  23. "RocksDB perf context and IO stats context". GitHub. Retrieved 2016-04-04.
  24. "Spatial indexing in RocksDB". rocksdb.org. Retrieved 2018-07-19.
  25. "First commit where RocksDB diverges from LevelDB". May 10, 2012. Retrieved March 15, 2016.
  26. "rocksdb README file". Nov 30, 2012. Retrieved March 15, 2016.
  27. "The History of RocksDB". November 24, 2013. Retrieved March 10, 2016.
  28. Borthakur, Dhruba (November 22, 2013). "RocksDB: A High Performance Embedded Key-Value Store for Flash Storage - Data@Scale". Retrieved March 10, 2016. ... The story of why we decided to do RocksDB ...
  29. Edwards, Jessica (2015-10-29). "Hello World: Meet CockroachDB, the Resilient SQL Database". The New Stack. Retrieved 2016-07-08.
  30. "Comparing new RocksDB and MMFiles storage engines".
  31. "RC1 ArangoDB 3.4 - Whats new?".
  32. "Open-sourcing a 10x reduction in Apache Cassandra tail latency".
  33. "MyRocks". MariaDB KnowledgeBase. Retrieved 2019-04-28.
  34. https://mariadb.com/kb/en/mariadb-10216-release-notes/
  35. "mongodb-partners/mongo-rocks".
  36. "Integrating RocksDB with MongoDB". Retrieved July 19, 2018.
  37. "MongoDB + RocksDB at Parse". Retrieved December 1, 2015.
  38. "facebookgo/rocks-strata".
  39. "facebook/mysql-5.6".
  40. "MyRocks: MySQL on RocksDB" (PDF). Retrieved November 29, 2015.
  41. "MyRocks Deep Dive". Retrieved May 9, 2016.
  42. "Storage Devices -- Ceph Documentation".
  43. "Apache Flink 1.8 Documentation: State Backends". ci.apache.org. Retrieved 2019-08-11.
  44. "FusionDB". Evolved Binary.
  45. "The Design and Implementation of FusionDB" (PDF). XML Prague.
  46. "LogDevice: a distributed data store for logs". Mark Marchukov, Facebook.
  47. "How we use RocksDB at Rockset". rockset.com. Retrieved 2019-07-10.
  48. "ideawu/ssdb-rocks".
  49. https://ssdb.io
  50. "pingcap/tidb".
  51. "TiDB Internal (I) - Data Storage". Shen Li.
  52. "warrenfalk/rocksdb-sharp".
  53. "b1naryth1ef/rocksdb".
  54. "urbint/rox".
  55. "leo-project/erocksdb".
  56. "barrel-db/erlang-rocksdb".
  57. "tecbot/gorocksdb".
  58. "rocksdb-haskell: Haskell bindings to RocksDB".
  59. "RocksJava".
  60. "rocksdb".
  61. "iabudiab/ObjectiveRocks".
  62. "OCaml bindings for RocksDB".
  63. "An OCaml RocksDb binding using ocaml-ctypes".
  64. "RocksDB - Perl extension for RocksDB - metacpan.org".
  65. "Photonios/rocksdb-php".
  66. "SWI-Prolog interface for RocksDB".
  67. "stephan-hof/pyrocksdb".
  68. "rocksdb-ruby - RubyGems.org - your community gem host".
  69. "spacejam/rust-rocksdb".
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.