Go to file
Adam Retter 5a26f392ca Use the correct Docker Image for RocksJava on Linux (#12169)
Summary: Pull Request resolved: https://github.com/facebook/rocksdb/pull/12169

Reviewed By: pdillinger

Differential Revision: D52715225

Pulled By: ajkr

fbshipit-source-id: 28476d363034fa1bb9c8c919d577c03b6391451b
2024-01-19 10:12:31 -08:00
.circleci Use the correct Docker Image for RocksJava on Linux (#12169) 2024-01-19 10:12:31 -08:00
.github Use the correct Docker Image for RocksJava on Linux (#12169) 2024-01-19 10:12:31 -08:00
buckifier
build_tools
cache Add CompressionOptions to the compressed secondary cache (#12234) 2024-01-16 12:21:27 -08:00
cmake
coverage
db Add some asserts in FilePickerMultiGet for debugging (#12241) 2024-01-16 17:08:58 -08:00
db_stress_tool Fix backup/checkpoint stress test failure (#12227) 2024-01-16 13:28:51 -08:00
docs
env Remove unused variables in internal_repo_rocksdb/repo/env/env_posix.cc (#12243) 2024-01-17 14:08:07 -08:00
examples
file Fix PREFETCH_BYTES_USEFUL stat calculation (#12251) 2024-01-18 19:09:49 -08:00
fuzz
include/rocksdb Add CompressionOptions to the compressed secondary cache (#12234) 2024-01-16 12:21:27 -08:00
java Add native logger support to RocksJava (#12213) 2024-01-17 17:51:36 -08:00
logging
memory
memtable
microbench
monitoring
options
plugin
port
table Fix bug in auto_readahead_size that returned wrong key (#12229) 2024-01-16 11:30:36 -08:00
test_util
third-party
tools Add CompressionOptions to the compressed secondary cache (#12234) 2024-01-16 12:21:27 -08:00
trace_replay
unreleased_history Add a changelog entry for PR 12235 (#12238) 2024-01-16 13:02:18 -08:00
util Add native logger support to RocksJava (#12213) 2024-01-17 17:51:36 -08:00
utilities
.clang-format
.gitignore
.lgtm.yml
.watchmanconfig
AUTHORS
CMakeLists.txt Fix gcc12 build failure caused by INT_MIN in NumberToHumanString (#12215) 2024-01-10 10:17:31 -08:00
CODE_OF_CONDUCT.md
CONTRIBUTING.md
COPYING
DEFAULT_OPTIONS_HISTORY.md
DUMP_FORMAT.md
HISTORY.md
INSTALL.md
LANGUAGE-BINDINGS.md
LICENSE.Apache
LICENSE.leveldb
Makefile Fix gcc12 build failure caused by INT_MIN in NumberToHumanString (#12215) 2024-01-10 10:17:31 -08:00
PLUGINS.md
README.md
TARGETS
USERS.md
Vagrantfile
WINDOWS_PORT.md
common.mk
crash_test.mk
issue_template.md
rocksdb.pc.in
src.mk Add native logger support to RocksJava (#12213) 2024-01-17 17:51:36 -08:00
thirdparty.inc

README.md

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

CircleCI 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.