Find a file
Cheng Chang 3f9b75604d Fix wrong level args (#7346)
Summary:
The level args should be output level instead of input levels.

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

Test Plan: make check

Reviewed By: ajkr

Differential Revision: D23506373

Pulled By: cheng-chang

fbshipit-source-id: b2f701d44c13581c5c10c4dbebded4fcd354d641
2020-09-03 23:17:37 -07:00
.circleci New bit manipulation functions and 128-bit value library (#7338) 2020-09-03 09:32:59 -07:00
.github/workflows
buckifier
build_tools New bit manipulation functions and 128-bit value library (#7338) 2020-09-03 09:32:59 -07:00
cache Add more tests to ASSERT_STATUS_CHECKED (#7211) 2020-08-06 17:19:41 -07:00
cmake
coverage
db Fix wrong level args (#7346) 2020-09-03 23:17:37 -07:00
db_stress_tool Fix, enable, and enhance backup/restore in db_stress (#7348) 2020-09-03 20:13:15 -07:00
docs Update github-pages to v207 (#7235) 2020-08-12 09:26:24 -07:00
env Store FSRandomAccessPtr object in RandomAccessFileReader (#7192) 2020-08-27 11:21:52 -07:00
examples Make examples work on Windows (#7304) 2020-09-01 18:03:50 -07:00
file Add buffer prefetch support for non directIO usecase (#7312) 2020-08-27 18:16:53 -07:00
hdfs
include/rocksdb add ldb unsafe_remove_sst_file subcommand (#7335) 2020-09-03 16:54:51 -07:00
java RocksJava should not limit valid format_version (#7242) 2020-08-13 20:43:28 -07:00
logging Add EnvTestWithParam::OptionsTest to the ASSERT_STATUS_CHECKED passes (#7283) 2020-08-20 19:18:35 -07:00
memory
memtable
monitoring Add test function MockTimeEnv.SleepForMicroseconds() (#7293) 2020-08-21 11:34:37 -07:00
options Add initial set of options for integrated blob write path (#7280) 2020-08-18 18:32:37 -07:00
port
table fix SstFileWriter with dictionary compression (#7323) 2020-09-03 15:49:57 -07:00
test_util Add test function MockTimeEnv.SleepForMicroseconds() (#7293) 2020-08-21 11:34:37 -07:00
third-party
tools Fix, enable, and enhance backup/restore in db_stress (#7348) 2020-09-03 20:13:15 -07:00
trace_replay Add some simulator cache and block tracer tests to ASSERT_STATUS_CHECKED (#7305) 2020-08-24 16:43:31 -07:00
util New bit manipulation functions and 128-bit value library (#7338) 2020-09-03 09:32:59 -07:00
utilities Recompress blobs during GC if compression changed (#7331) 2020-09-01 18:03:50 -07:00
.clang-format
.gitignore Generate and install a pkg-config file (#7244) 2020-08-17 11:53:11 -07:00
.lgtm.yml
.travis.yml Travis: fail fast on install failures (#7239) 2020-08-20 10:39:10 -07:00
.watchmanconfig
appveyor.yml
AUTHORS
CMakeLists.txt Add options for forcing AVX and AVX2 instructions (#7334) 2020-09-03 08:03:51 -07:00
CODE_OF_CONDUCT.md
CONTRIBUTING.md
COPYING
DEFAULT_OPTIONS_HISTORY.md
defs.bzl
DUMP_FORMAT.md
HISTORY.md add ldb unsafe_remove_sst_file subcommand (#7335) 2020-09-03 16:54:51 -07:00
INSTALL.md
issue_template.md
LANGUAGE-BINDINGS.md
LICENSE.Apache
LICENSE.leveldb
Makefile New bit manipulation functions and 128-bit value library (#7338) 2020-09-03 09:32:59 -07:00
README.md
ROCKSDB_LITE.md
src.mk Add buffer prefetch support for non directIO usecase (#7312) 2020-08-27 18:16:53 -07:00
TARGETS Add buffer prefetch support for non directIO usecase (#7312) 2020-08-27 18:16:53 -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.