Find a file
Maysam Yabandeh 537a233941 Exclude StackableDB from transaction stress tests (#4132)
Summary:
The transactions are currently tested with and without using StackableDB. This is mostly to check that the code path is consistent with stackable db as well. Slow, stress tests however do not benefit from being run again with StackableDB. The patch excludes StackableDB from such tests.
On a single core it reduced the runtime of transaction_test from 199s to 135s.
Pull Request resolved: https://github.com/facebook/rocksdb/pull/4132

Differential Revision: D8841655

Pulled By: maysamyabandeh

fbshipit-source-id: 7b9aaba2673b542b195439dfb306cef26bd63b19
2018-07-13 13:59:11 -07:00
buckifier Remove two CI tests (#4110) 2018-07-12 11:43:25 -07:00
build_tools
cache Support group commits of version edits (#3944) 2018-06-28 12:34:39 -07:00
cmake
coverage
db Re-enable kUniversalSubcompactions option_config (#4125) 2018-07-13 11:13:01 -07:00
docs Update docs/Gemfile.lock for nokogiri cve (#4116) 2018-07-12 11:57:40 -07:00
env Disable EnvPosixTest.RunImmediately, add EnvPosixTest.RunEventually. (#4126) 2018-07-12 18:27:15 -07:00
examples
hdfs
include/rocksdb Add GCC 8 to Travis (#3433) 2018-07-13 10:58:06 -07:00
java Update comments of WriteBatchWithIndex 2018-07-11 17:42:50 -07:00
memtable
monitoring Support group commits of version edits (#3944) 2018-06-28 12:34:39 -07:00
options Add bottommost_compression_opts to for bottommost_compression (#3985) 2018-06-27 17:42:38 -07:00
port
table Add GCC 8 to Travis (#3433) 2018-07-13 10:58:06 -07:00
third-party Add GCC 8 to Travis (#3433) 2018-07-13 10:58:06 -07:00
tools Support compaction filter in db_bench (#4106) 2018-07-12 19:42:27 -07:00
util Add GCC 8 to Travis (#3433) 2018-07-13 10:58:06 -07:00
utilities Exclude StackableDB from transaction stress tests (#4132) 2018-07-13 13:59:11 -07:00
.clang-format
.gitignore
.lgtm.yml
.travis.yml Add GCC 8 to Travis (#3433) 2018-07-13 10:58:06 -07:00
appveyor.yml
AUTHORS
CMakeLists.txt Add GCC 8 to Travis (#3433) 2018-07-13 10:58:06 -07:00
CODE_OF_CONDUCT.md
CONTRIBUTING.md
COPYING
DEFAULT_OPTIONS_HISTORY.md
DUMP_FORMAT.md
HISTORY.md Change default value of bytes_max_delete_chunk to 0 in NewSstFileManager() (#4092) 2018-07-03 17:57:37 -07:00
INSTALL.md
issue_template.md
LANGUAGE-BINDINGS.md
LICENSE.Apache
LICENSE.leveldb
Makefile Exclude StackableDB from transaction stress tests (#4132) 2018-07-13 13:59:11 -07:00
README.md
ROCKSDB_LITE.md
src.mk Allow DB resume after background errors (#3997) 2018-06-28 12:34:40 -07:00
TARGETS Remove two CI tests (#4110) 2018-07-12 11:43:25 -07:00
thirdparty.inc
USERS.md
Vagrantfile
WINDOWS_PORT.md Add GCC 8 to Travis (#3433) 2018-07-13 10:58:06 -07:00

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

Linux/Mac Build Status Windows 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 specially 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/

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.