A library that provides an embeddable, persistent key-value store for fast storage.
Go to file
Islam AbdelRahman 29b028b0ed Make DeleteScheduler tests more reliable
Summary: Update DeleteScheduler tests so that they verify the used penalties for waiting instead of measuring the time spent which is not reliable

Test Plan:
make -j64 delete_scheduler_test && ./delete_scheduler_test
COMPILE_WITH_TSAN=1 make -j64 delete_scheduler_test && ./delete_scheduler_test
COMPILE_WITH_ASAN=1 make -j64 delete_scheduler_test && ./delete_scheduler_test

make -j64 db_test && ./db_test --gtest_filter="DBTest.RateLimitedDelete:DBTest.DeleteSchedulerMultipleDBPaths"
COMPILE_WITH_TSAN=1 make -j64 db_test && ./db_test --gtest_filter="DBTest.RateLimitedDelete:DBTest.DeleteSchedulerMultipleDBPaths"
COMPILE_WITH_ASAN=1 make -j64 db_test && ./db_test --gtest_filter="DBTest.RateLimitedDelete:DBTest.DeleteSchedulerMultipleDBPaths"

Reviewers: yhchiang, sdong

Reviewed By: sdong

Subscribers: dhruba

Differential Revision: https://reviews.facebook.net/D43635
2015-08-05 19:16:52 -07:00
arcanist_util
build_tools
coverage
db Make DeleteScheduler tests more reliable 2015-08-05 19:16:52 -07:00
doc Remove seek compaction 2014-06-20 10:23:02 +02:00
examples
hdfs
include/rocksdb Add function 'GetInfoLogList()' 2015-08-05 16:16:46 -07:00
java
port
table
third-party
tools
util Make DeleteScheduler tests more reliable 2015-08-05 19:16:52 -07:00
utilities Add function 'GetInfoLogList()' 2015-08-05 16:16:46 -07:00
.arcconfig
.clang-format
.gitignore
.travis.yml
AUTHORS
CMakeLists.txt Add two unit tests for SyncWAL() 2015-08-05 14:27:02 -07:00
CONTRIBUTING.md
DUMP_FORMAT.md
HISTORY.md
INSTALL.md
LICENSE
Makefile valgrind_check to exit on test failures 2015-08-05 17:46:09 -07:00
PATENTS
README.md
ROCKSDB_LITE.md
src.mk Add function 'GetInfoLogList()' 2015-08-05 16:16:46 -07: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/