Find a file
Andrew Kryczka 08304c0867 Expose RepairDB as ldb command
Summary: This will make it easier for admins and devs to use RepairDB.

Test Plan:
Tried deleting the manifest and verified it recovers:

  $ ldb --create_if_missing --db=/tmp/test_db put ok ok
  $ rm -f /tmp/test_db/MANIFEST-000001
  $ ./ldb --db=/tmp/test_db repair
  $ ldb --db=/tmp/test_db get ok
  ok

Reviewers: yhchiang, sdong, IslamAbdelRahman

Reviewed By: IslamAbdelRahman

Subscribers: leveldb, andrewkr, dhruba

Differential Revision: https://reviews.facebook.net/D55359
2016-03-12 13:50:20 -08:00
arcanist_util
build_tools
coverage
db Aggregate hot Iterator counters in LocalStatistics (DBIter::Next perf regression) 2016-03-11 19:01:12 -08:00
doc
examples
hdfs
include/rocksdb Cache to have an option to fail Cache::Insert() when full 2016-03-10 17:35:19 -08:00
java
memtable
port
table Cache to have an option to fail Cache::Insert() when full 2016-03-10 17:35:19 -08:00
third-party
tools Expose RepairDB as ldb command 2016-03-12 13:50:20 -08:00
util Add multithreaded transaction test 2016-03-11 15:16:52 -08:00
utilities Add multithreaded transaction test 2016-03-11 15:16:52 -08:00
.arcconfig
.clang-format
.gitignore
.travis.yml
appveyor.yml
AUTHORS
CMakeLists.txt Cache to have an option to fail Cache::Insert() when full 2016-03-10 17:35:19 -08:00
CONTRIBUTING.md
DUMP_FORMAT.md
HISTORY.md Aggregate hot Iterator counters in LocalStatistics (DBIter::Next perf regression) 2016-03-11 19:01:12 -08:00
INSTALL.md
LICENSE
Makefile Cache to have an option to fail Cache::Insert() when full 2016-03-10 17:35:19 -08:00
PATENTS
README.md
ROCKSDB_LITE.md
src.mk Add multithreaded transaction test 2016-03-11 15:16:52 -08:00
thirdparty.inc
USERS.md
Vagrantfile
WINDOWS_PORT.md

RocksDB: A Persistent Key-Value Store for Flash and RAM Storage

Build Status

RocksDB is developed and maintained by Facebook Database Engineering Team. It is built on earlier work on LevelDB by Sanjay Ghemawat (sanjay@google.com) and Jeff Dean (jeff@google.com)

This code is a library that forms the core building block for a fast key value server, especially suited for storing data on flash drives. It has a Log-Structured-Merge-Database (LSM) design with flexible tradeoffs between Write-Amplification-Factor (WAF), Read-Amplification-Factor (RAF) and Space-Amplification-Factor (SAF). It has multi-threaded compactions, making it specially suitable for storing multiple terabytes of data in a single database.

Start with example usage here: https://github.com/facebook/rocksdb/tree/master/examples

See the github wiki for more explanation.

The public interface is in include/. Callers should not include or rely on the details of any other header files in this package. Those internal APIs may be changed without warning.

Design discussions are conducted in https://www.facebook.com/groups/rocksdb.dev/