Go to file
Zhichao Cao 861e544335 Add db_flush_test to ASSERT_STATUS_CHECKED list (#7476)
Summary:
Added status check enforcement for db_flush_test

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

Test Plan: ASSERT_STATUS_CHECKED=1 make -j48 db_flush_test

Reviewed By: akankshamahajan15

Differential Revision: D24033752

Pulled By: zhichao-cao

fbshipit-source-id: d957934e1666d0043bebdd8a4149e94cdcbbb89b
2020-10-12 15:18:00 -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 Genericize and clean up FastRange (#7436) 2020-09-28 11:35:00 -07:00
cmake
coverage
db Add db_flush_test to ASSERT_STATUS_CHECKED list (#7476) 2020-10-12 15:18:00 -07:00
db_stress_tool Redesign block cache pinning API (#7520) 2020-10-11 14:58:24 -07:00
docs Update github-pages to v207 (#7235) 2020-08-12 09:26:24 -07:00
env Disable a known flaky test: RandomAccessUniqueIDDeletes (#7511) 2020-10-08 09:40:59 -07:00
examples Bring the Configurable options together (#5753) 2020-09-14 17:01:01 -07:00
file Avoid to suppress status code in ~BlockBasedTableBuilder (#7507) 2020-10-05 14:58:49 -07:00
hdfs
include/rocksdb Redesign block cache pinning API (#7520) 2020-10-11 14:58:24 -07:00
java Add Stats for MultiGet (#7366) 2020-10-07 13:28:48 -07:00
logging Add more tests to ASSERT_STATUS_CHECKED (#7367) 2020-09-16 15:48:07 -07:00
memory
memtable Genericize and clean up FastRange (#7436) 2020-09-28 11:35:00 -07:00
monitoring Add Stats for MultiGet (#7366) 2020-10-07 13:28:48 -07:00
options Redesign block cache pinning API (#7520) 2020-10-11 14:58:24 -07:00
port Fix MSVC-related build issues (#7439) 2020-10-01 09:23:04 -07:00
table Redesign block cache pinning API (#7520) 2020-10-11 14:58:24 -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 Add few unit test cases in ASSERT_STATUS_CHECKED (#7500) 2020-10-08 11:22:44 -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
AUTHORS
CMakeLists.txt Clean up BlobLogReader and rename it to BlobLogSequentialReader (#7517) 2020-10-07 17:48:16 -07:00
CODE_OF_CONDUCT.md
CONTRIBUTING.md
COPYING
DEFAULT_OPTIONS_HISTORY.md
DUMP_FORMAT.md
HISTORY.md Redesign block cache pinning API (#7520) 2020-10-11 14:58:24 -07:00
INSTALL.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 Add db_flush_test to ASSERT_STATUS_CHECKED list (#7476) 2020-10-12 15:18:00 -07:00
README.md
ROCKSDB_LITE.md
TARGETS Clean up BlobLogReader and rename it to BlobLogSequentialReader (#7517) 2020-10-07 17:48:16 -07:00
USERS.md
Vagrantfile
WINDOWS_PORT.md
appveyor.yml
defs.bzl
issue_template.md
src.mk Clean up BlobLogReader and rename it to BlobLogSequentialReader (#7517) 2020-10-07 17:48:16 -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.