Find a file
mrambacher 2e062b2227 Fix LITE build (#8689)
Summary:
Conditional compilation of static functions not used in LITE mode.

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

Reviewed By: ltamasi

Differential Revision: D30476218

Pulled By: mrambacher

fbshipit-source-id: 5f3af90982d34818f47d2cb1d36dd5816d0333a5
2021-08-23 05:10:13 -07:00
.circleci Add missing steps for cmake build (#8524) 2021-07-15 13:37:49 -07:00
.github/workflows
buckifier
build_tools Pass extra db_stress args to fbcode crash tests (#8587) 2021-07-27 12:46:47 -07:00
cache Add a PerfContext counter for secondary cache hits (#8685) 2021-08-20 15:17:30 -07:00
cmake
coverage
db Embed original file number in SST table properties (#8686) 2021-08-20 20:40:48 -07:00
db_stress_tool Add Bloom/Ribbon hybrid API support (#8679) 2021-08-20 18:00:16 -07:00
docs Bump addressable from 2.7.0 to 2.8.0 in /docs (#8515) 2021-07-12 17:06:07 -07:00
env Make TraceRecord and Replayer public (#8611) 2021-08-11 19:32:46 -07:00
examples
file Add db_test2 to to ASSERT_STATUS_CHECKED (#8640) 2021-08-16 08:10:32 -07:00
fuzz Make EventListener into a Customizable Class (#8473) 2021-07-27 07:47:02 -07:00
hdfs
include/rocksdb Update version.h and HISTORY.md for the 6.24 release (#8688) 2021-08-20 22:28:16 -07:00
java Add a stat to count secondary cache hits (#8666) 2021-08-16 21:01:14 -07:00
logging Do not attempt to rename non-existent info log (#8622) 2021-08-04 17:25:00 -07:00
memory
memtable Improve MemPurge sampling (#8656) 2021-08-13 14:35:41 -07:00
microbench Add micro-benchmark support (#8493) 2021-07-08 18:22:45 -07:00
monitoring Add a PerfContext counter for secondary cache hits (#8685) 2021-08-20 15:17:30 -07:00
options Fix LITE build (#8689) 2021-08-23 05:10:13 -07:00
plugin
port Support dynamic sector size in alignment validation for Windows. (#8613) 2021-08-16 07:31:57 -07:00
table Embed original file number in SST table properties (#8686) 2021-08-20 20:40:48 -07:00
test_util Fix some minor issues in the Customizable infrastructure (#8566) 2021-08-19 10:10:47 -07:00
third-party
tools Add Bloom/Ribbon hybrid API support (#8679) 2021-08-20 18:00:16 -07:00
trace_replay Add IteratorTraceExecutionResult for iterator related trace records. (#8687) 2021-08-20 15:35:56 -07:00
util Upgrade xxhash, add Hash128 (#8634) 2021-08-20 18:41:51 -07:00
utilities Allow Replayer to report the results of TraceRecords. (#8657) 2021-08-18 17:06:14 -07:00
.clang-format
.gitignore
.lgtm.yml
.travis.yml
.watchmanconfig
appveyor.yml
AUTHORS
CMakeLists.txt Allow Replayer to report the results of TraceRecords. (#8657) 2021-08-18 17:06:14 -07:00
CODE_OF_CONDUCT.md
CONTRIBUTING.md
COPYING
DEFAULT_OPTIONS_HISTORY.md
defs.bzl
DUMP_FORMAT.md
HISTORY.md Update version.h and HISTORY.md for the 6.24 release (#8688) 2021-08-20 22:28:16 -07:00
INSTALL.md
issue_template.md
LANGUAGE-BINDINGS.md
LICENSE.Apache
LICENSE.leveldb
Makefile Add db_test2 to to ASSERT_STATUS_CHECKED (#8640) 2021-08-16 08:10:32 -07:00
PLUGINS.md
README.md
ROCKSDB_LITE.md
src.mk Allow Replayer to report the results of TraceRecords. (#8657) 2021-08-18 17:06:14 -07:00
TARGETS Allow Replayer to report the results of TraceRecords. (#8657) 2021-08-18 17:06:14 -07:00
thirdparty.inc
USERS.md
Vagrantfile
WINDOWS_PORT.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.