Find a file
Aravind Ramesh 2eac6bb120 db_stress: db_stress fails on custom filesystems. (#9352)
Summary:
db_stress listener service always uses default filesystem to operate,
causing it to not recognize custom filesystem (like ZenFS plugin FS).
Pass the env to db_stress listener with the correct filesystem
information, so it can open the user intended filesystem.

Signed-off-by: Aravind Ramesh <Aravind.Ramesh@wdc.com>

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

Reviewed By: riversand963

Differential Revision: D33776762

Pulled By: pdillinger

fbshipit-source-id: e79bb9a544384f80ae9dd0108241ab9c83223954
2022-01-25 16:22:58 -08:00
.circleci Move RADOS support to separate repo (#9206) 2022-01-24 22:50:07 -08:00
.github/workflows
buckifier
build_tools Move HDFS support to separate repo (#9170) 2022-01-24 20:23:54 -08:00
cache
cmake
coverage
db Make bottommost_temperature dynamically changeable (#9402) 2022-01-25 15:23:04 -08:00
db_stress_tool db_stress: db_stress fails on custom filesystems. (#9352) 2022-01-25 16:22:58 -08:00
docs
env Move HDFS support to separate repo (#9170) 2022-01-24 20:23:54 -08:00
examples
file
fuzz
include/rocksdb Make bottommost_temperature dynamically changeable (#9402) 2022-01-25 15:23:04 -08:00
java Move HDFS support to separate repo (#9170) 2022-01-24 20:23:54 -08:00
logging
memory
memtable
microbench
monitoring
options Make bottommost_temperature dynamically changeable (#9402) 2022-01-25 15:23:04 -08:00
plugin
port
table Not try to finish index builder after errors (#9426) 2022-01-25 10:22:32 -08:00
test_util
third-party
tools Remove tools/rdb from main repo (#9399) 2022-01-24 21:23:03 -08:00
trace_replay
util
utilities Move RADOS support to separate repo (#9206) 2022-01-24 22:50:07 -08:00
.clang-format
.gitignore
.lgtm.yml
.travis.yml
.watchmanconfig
appveyor.yml
AUTHORS
CMakeLists.txt Move RADOS support to separate repo (#9206) 2022-01-24 22:50:07 -08:00
CODE_OF_CONDUCT.md
CONTRIBUTING.md
COPYING
DEFAULT_OPTIONS_HISTORY.md
defs.bzl
DUMP_FORMAT.md
HISTORY.md Make bottommost_temperature dynamically changeable (#9402) 2022-01-25 15:23:04 -08:00
INSTALL.md
issue_template.md
LANGUAGE-BINDINGS.md
LICENSE.Apache
LICENSE.leveldb
Makefile Move RADOS support to separate repo (#9206) 2022-01-24 22:50:07 -08:00
PLUGINS.md Move RADOS support to separate repo (#9206) 2022-01-24 22:50:07 -08:00
README.md
ROCKSDB_LITE.md
src.mk Move HDFS support to separate repo (#9170) 2022-01-24 20:23:54 -08:00
TARGETS Move HDFS support to separate repo (#9170) 2022-01-24 20:23:54 -08: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/main/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.

Questions and discussions are welcome on the RocksDB Developers Public Facebook group and email list on Google Groups.

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.