Go to file
Jay Zhuang 55bf42a80c Recompress blobs during GC if compression changed (#7331)
Summary:
Recompress blobs if compression type is changed.

Pull Request resolved: https://github.com/facebook/rocksdb/pull/7331

Test Plan: `make check`

Reviewed By: ltamasi

Differential Revision: D23437102

Pulled By: jay-zhuang

fbshipit-source-id: bb699ebdad137721d422e42e331d4de8a82a7c5f
2020-09-01 18:03:50 -07:00
.circleci
.github/workflows
buckifier
build_tools Use standard variables for installing/uninstalling with make (#7187) 2020-08-28 14:47:31 -07:00
cache
cmake
coverage
db Log info about generated blob files in BlobFileBuilder (#7324) 2020-08-31 13:24:12 -07:00
db_stress_tool
docs
env Store FSRandomAccessPtr object in RandomAccessFileReader (#7192) 2020-08-27 11:21:52 -07:00
examples
file Add buffer prefetch support for non directIO usecase (#7312) 2020-08-27 18:16:53 -07:00
hdfs
include/rocksdb Add buffer prefetch support for non directIO usecase (#7312) 2020-08-27 18:16:53 -07:00
java
logging
memory
memtable
monitoring
options
port
table Add buffer prefetch support for non directIO usecase (#7312) 2020-08-27 18:16:53 -07:00
test_util
third-party
tools
trace_replay
util Real fix for race in backup custom checksum checking (#7309) 2020-08-26 10:39:20 -07:00
utilities Recompress blobs during GC if compression changed (#7331) 2020-09-01 18:03:50 -07:00
.clang-format
.gitignore
.lgtm.yml
.travis.yml
.watchmanconfig
AUTHORS
CMakeLists.txt Add buffer prefetch support for non directIO usecase (#7312) 2020-08-27 18:16:53 -07:00
CODE_OF_CONDUCT.md
CONTRIBUTING.md
COPYING
DEFAULT_OPTIONS_HISTORY.md
DUMP_FORMAT.md
HISTORY.md Add unit test for max_write_buffer_size_to_maintain (#7311) 2020-08-28 17:38:05 -07:00
INSTALL.md
LANGUAGE-BINDINGS.md
LICENSE.Apache
LICENSE.leveldb
Makefile Use standard variables for installing/uninstalling with make (#7187) 2020-08-28 14:47:31 -07:00
README.md
ROCKSDB_LITE.md
TARGETS Add buffer prefetch support for non directIO usecase (#7312) 2020-08-27 18:16:53 -07:00
USERS.md
Vagrantfile
WINDOWS_PORT.md
appveyor.yml
defs.bzl
issue_template.md
src.mk Add buffer prefetch support for non directIO usecase (#7312) 2020-08-27 18:16:53 -07:00
thirdparty.inc

README.md

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

CircleCI Status TravisCI Status Appveyor Build status PPC64le 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 especially 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/ and https://rocksdb.slack.com/

License

RocksDB is dual-licensed under both the GPLv2 (found in the COPYING file in the root directory) and Apache 2.0 License (found in the LICENSE.Apache file in the root directory). You may select, at your option, one of the above-listed licenses.