Difference between revisions of "RocksDB"
Jump to navigation
Jump to search
↑ https://github.com/facebook/rocksdb/wiki/RocksDB-FAQ
Line 1: | Line 1: | ||
{{Draft}} | {{Draft}} | ||
− | [[wikipedia:RocksDB]] is a high performance embedded database/library for [[key-value]] [[database]]. Database has to be open by a [[single]] [[process]] for writting and multiprocessor for reading.<ref>https://github.com/facebook/rocksdb/wiki/RocksDB-FAQ</ref>. A single DB can be configured to store its data in multiple directories. | + | [[wikipedia:RocksDB]] is a high performance embedded database/library for [[key-value]] [[database]] released in 2012. Database has to be open by a [[single]] [[process]] for writting and multiprocessor for reading.<ref>https://github.com/facebook/rocksdb/wiki/RocksDB-FAQ</ref>. A single DB can be configured to store its data in multiple directories. |
RocksDB execute periodic compactions which reads from one or more <code>[[SST]]</code> files, perform merge-sort like operation, generate new SST files, and delete the old SST files it inputs. | RocksDB execute periodic compactions which reads from one or more <code>[[SST]]</code> files, perform merge-sort like operation, generate new SST files, and delete the old SST files it inputs. |
Revision as of 16:18, 1 January 2020
This article is a Draft. Help us to complete it.
wikipedia:RocksDB is a high performance embedded database/library for key-value database released in 2012. Database has to be open by a single process for writting and multiprocessor for reading.[1]. A single DB can be configured to store its data in multiple directories.
RocksDB execute periodic compactions which reads from one or more SST
files, perform merge-sort like operation, generate new SST files, and delete the old SST files it inputs.
Installation
- macOS:
brew install rocksdb
- Binaries: rocksdb_sanity_test rocksdb_stress rocksdb_undump rocksdb_sst_dump rocksdb_ldb rocksdb_repl_stress rocksdb_dump rocksdb_write_stress
Related binaries: sst_dump and SstFileReader.
Activities
- Read RocksDB source: https://github.com/facebook/rocksdb/wiki/RocksDB-FAQ
See also
- Key-value databases: Berkeley DB, Redis,
etcd
, leveldb, RocksDB (MyRocks), Infinispan, Amazon DynamoDB, Apache Zookeeper, LevelDB, RocksDB, Pebble - Databases: Database management, SQL, NoSQL, Wide column, PostgreSQL, MariaDB, MySQL, Derby DB, MongoDB, Cassandra, SQLite, HSQL2, H2, RocksDB, Microsoft SQL Server, DB2, Oracle Database, Memcached, Berkeley DB, Collation, SingleStore, Amazon Aurora, Graph database, Amazon DynamoDB, PrestoDB, Cache hit ratio, ACID, WAL, ARIES, DBMS, OLTP, OLAP, Database Schema, CockroachDB, Tables, Views, Apache Druid, RDMS
- Homepage: https://rocksdb.org/
Advertising: