Find a file
sdong 0abaed2e08 Support multiple DB directories in universal compaction style
Summary:
This patch adds a target size parameter in options.db_paths and universal compaction will base it to determine which DB path to place a new file.
Level-style stays the same.

Test Plan: Add new unit tests

Reviewers: ljin, yhchiang

Reviewed By: yhchiang

Subscribers: MarkCallaghan, dhruba, igor, leveldb

Differential Revision: https://reviews.facebook.net/D19869
2014-07-15 12:06:28 -07:00
build_tools
coverage
db Support multiple DB directories in universal compaction style 2014-07-15 12:06:28 -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 Removing NewTotalOrderPlainTableFactory 2014-07-10 11:32:04 -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
.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 Update master to version 3.3 2014-07-10 11:59:35 -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/