Find a file
Peter Dillinger ad528fe5ca Disable folly_synchronization_distributed_mutex_test on ARM for now (#6126)
Summary:
This test is crashing on ARM but is not yet production code.
Let's not let it block ARM CI. See PR https://github.com/facebook/rocksdb/issues/5932
Pull Request resolved: https://github.com/facebook/rocksdb/pull/6126

Test Plan:
./folly_synchronization_distributed_mutex_test, on Linux/ARM,
on Linux/x86_64, and with LITE=1 on Linux/x86_64 (also disabled)

Differential Revision: D18836576

Pulled By: pdillinger

fbshipit-source-id: d8a36eea2f048e8330411d994435d1c58a15d978
2019-12-05 15:48:01 -08:00
buckifier Abandon use of folly::Optional (#6036) 2019-11-14 14:04:15 -08:00
build_tools build_tools/precommit_checker.py: don't hard-code a platform-afflicted python path (#6124) 2019-12-05 11:49:17 -08:00
cache Remove key length assertion LRUHandle::CalcTotalCharge (#6115) 2019-12-02 15:00:07 -08:00
cmake Compatible changes for cmake (#6045) 2019-11-22 08:19:48 -08:00
coverage
db Let DBSecondary close files after catch up (#6114) 2019-12-02 17:45:03 -08:00
docs
env
examples Add asserts in transaction example (#6055) 2019-11-20 14:18:51 -08:00
file
hdfs
include/rocksdb Add missing DataBlock-releated functions to the C-API (#6101) 2019-12-02 11:00:09 -08:00
java fix typo (#6099) 2019-11-27 10:26:42 -08:00
logging
memory
memtable Misc hashing updates / upgrades (#5909) 2019-10-24 17:16:46 -07:00
monitoring
options Allow fractional bits/key in BloomFilterPolicy (#6092) 2019-11-26 15:59:34 -08:00
port Work around weird unused errors with Mingw (#6075) 2019-11-26 21:42:29 -08:00
table Expose and elaborate FilterBuildingContext (#6088) 2019-11-26 18:24:10 -08:00
test_util New Bloom filter implementation for full and partitioned filters (#6007) 2019-11-13 16:44:01 -08:00
third-party Disable folly_synchronization_distributed_mutex_test on ARM for now (#6126) 2019-12-05 15:48:01 -08:00
tools Fix build failure for db_stress tool when building with CMake (#6117) 2019-12-05 15:34:54 -08:00
trace_replay Misc hashing updates / upgrades (#5909) 2019-10-24 17:16:46 -07:00
util Work around weird unused errors with Mingw (#6075) 2019-11-26 21:42:29 -08:00
utilities Fix BlobDB compilation on older GCC versions 2019-11-27 13:09:09 -08:00
.clang-format
.gitignore
.lgtm.yml
.travis.yml Partial rebalance of TEST_GROUPs for Travis (#6010) 2019-11-07 09:50:59 -08:00
.watchmanconfig
appveyor.yml
AUTHORS
CMakeLists.txt Use lowercase for shlwapi.lib rpcrt4.lib (#6076) 2019-11-26 13:28:32 -08:00
CODE_OF_CONDUCT.md
CONTRIBUTING.md
COPYING
DEFAULT_OPTIONS_HISTORY.md
defs.bzl Add clarifying/instructive header to TARGETS and defs.bzl 2019-11-05 20:20:33 -08:00
DUMP_FORMAT.md
HISTORY.md Fix a potential bug scheduling unnecessary threads (#6104) 2019-11-27 14:48:49 -08:00
INSTALL.md
issue_template.md
LANGUAGE-BINDINGS.md
LICENSE.Apache
LICENSE.leveldb
Makefile Make folly-related targets comply with verbosity (#6120) 2019-12-03 16:04:44 -08:00
README.md
ROCKSDB_LITE.md
src.mk
TARGETS Abandon use of folly::Optional (#6036) 2019-11-14 14:04:15 -08:00
thirdparty.inc
USERS.md
Vagrantfile
WINDOWS_PORT.md

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 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/

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.