Find a file
Yueh-Hsuan Chiang 296e340753 Add struct CompactionInputFiles to manage compaction input files.
Summary: Add struct CompactionInputFiles to manage compaction input files.

Test Plan:
export ROCKSDB_TESTS=Compact
make db_test
./db_test

Reviewers: ljin, igor, sdong

Reviewed By: sdong

Subscribers: leveldb

Differential Revision: https://reviews.facebook.net/D20061
2014-07-16 18:12:17 -07:00
build_tools
coverage
db Add struct CompactionInputFiles to manage compaction input files. 2014-07-16 18:12:17 -07:00
doc
examples
hdfs
helpers/memenv
include Support multiple DB directories in universal compaction style 2014-07-15 12:06:28 -07:00
java
linters
port
table Fix compressed cache 2014-07-16 06:45:49 -07:00
third-party/rapidjson
tools [db stress] Don't drop column families if there's only 1 2014-07-14 07:56:07 -07:00
util Support multiple DB directories in universal compaction style 2014-07-15 12:06:28 -07:00
utilities Add missing DB functions to DocumentDB 2014-07-10 09:52:46 -07:00
.arcconfig
.clang-format
.gitignore
.travis.yml
CONTRIBUTING.md
HISTORY.md Support multiple DB directories in universal compaction style 2014-07-15 12:06:28 -07:00
INSTALL.md
LICENSE
Makefile Fix db_test 2014-07-16 14:51:43 -07:00
PATENTS
README.md
ROCKSDB_LITE.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 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/