Find a file
Cheng Chang fc9b416013 Fix typo in db_wal_test (#7571)
Summary:
as title

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

Test Plan: make check

Reviewed By: zhichao-cao

Differential Revision: D24392577

Pulled By: cheng-chang

fbshipit-source-id: c94f92db48270d0e215aa0f2782b0ff2e31bf708
2020-10-20 11:50:30 -07:00
.circleci Add macos tests to circleci (#7536) 2020-10-12 10:46:40 -07:00
.github/workflows
buckifier Add a rocksdb lib target with link_whole=True (#7466) 2020-09-30 22:50:32 -07:00
build_tools New bit manipulation functions and 128-bit value library (#7338) 2020-09-03 09:32:59 -07:00
cache Introduce BlobFileCache and add support for blob files to Get() (#7540) 2020-10-15 13:04:47 -07:00
cmake
coverage
db Fix typo in db_wal_test (#7571) 2020-10-20 11:50:30 -07:00
db_stress_tool db_stress prints key in Hex (#7533) 2020-10-13 12:38:59 -07:00
docs Update github-pages to v207 (#7235) 2020-08-12 09:26:24 -07:00
env Add a host location property to TableProperties (#7479) 2020-10-19 11:38:48 -07:00
examples Bring the Configurable options together (#5753) 2020-09-14 17:01:01 -07:00
file Fix for stress test failure (#7574) 2020-10-20 09:13:42 -07:00
hdfs
include/rocksdb Add a host location property to TableProperties (#7479) 2020-10-19 11:38:48 -07:00
java Small JNI improvements (#7371) 2020-10-14 22:23:56 -07:00
logging Add more tests to ASSERT_STATUS_CHECKED (#7367) 2020-09-16 15:48:07 -07:00
memory
memtable Test for LoadLatestOptions (#7554) 2020-10-14 22:28:55 -07:00
monitoring Add Stats for MultiGet (#7366) 2020-10-07 13:28:48 -07:00
options Add a host location property to TableProperties (#7479) 2020-10-19 11:38:48 -07:00
port Fix MSVC-related build issues (#7439) 2020-10-01 09:23:04 -07:00
table Fix for stress test failure (#7574) 2020-10-20 09:13:42 -07:00
test_util Track WAL in MANIFEST: add option track_and_verify_wals_in_manifest (#7275) 2020-10-09 16:42:19 -07:00
third-party Fix MSVC-related build issues (#7439) 2020-10-01 09:23:04 -07:00
tools db_crashtest preserves expected values file for failed crash tests (#7534) 2020-10-12 14:10:14 -07:00
trace_replay Genericize and clean up FastRange (#7436) 2020-09-28 11:35:00 -07:00
util Add macos tests to circleci (#7536) 2020-10-12 10:46:40 -07:00
utilities Abstract out LockManager interface (#7532) 2020-10-19 10:14:42 -07:00
.clang-format
.gitignore Re-add extra compiler flags when building unittests (#7437) 2020-09-25 16:44:43 -07:00
.lgtm.yml
.travis.yml Update Travis config for broken snapd on ppc (#7381) 2020-09-14 14:23:13 -07:00
.watchmanconfig
appveyor.yml Remove 2019 from appveyor (#7038) 2020-06-29 14:31:41 -07:00
AUTHORS
CMakeLists.txt Abstract out LockManager interface (#7532) 2020-10-19 10:14:42 -07:00
CODE_OF_CONDUCT.md
CONTRIBUTING.md
COPYING
DEFAULT_OPTIONS_HISTORY.md
defs.bzl
DUMP_FORMAT.md
HISTORY.md Add a host location property to TableProperties (#7479) 2020-10-19 11:38:48 -07:00
INSTALL.md
issue_template.md
LANGUAGE-BINDINGS.md Add RestoreDBFromLatestBackup to C API, add new C# package (#7092) 2020-07-08 11:56:41 -07:00
LICENSE.Apache
LICENSE.leveldb
Makefile Abstract out LockManager interface (#7532) 2020-10-19 10:14:42 -07:00
README.md Fix the CI badge for ppc64le Jenkins (#7561) 2020-10-16 09:00:56 -07:00
ROCKSDB_LITE.md
src.mk Abstract out LockManager interface (#7532) 2020-10-19 10:14:42 -07:00
TARGETS Abstract out LockManager interface (#7532) 2020-10-19 10:14:42 -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.