Find a file
Tomasz Posluszny ec5add398c Implement Java API for ConcurrentTaskLimiter class and compaction_thread_limiter field in ColumnFamilyOptions (#7347)
Summary:
as title

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

Test Plan: unit tests included

Reviewed By: jay-zhuang

Differential Revision: D23592552

Pulled By: pdillinger

fbshipit-source-id: 1c3571b6f42bfd0cfd723ff49d01fbc02a1be45b
2020-09-09 12:44:20 -07:00
.circleci Fix compile error for old gcc-4.8 (#7358) 2020-09-08 12:09:34 -07:00
.github/workflows
buckifier
build_tools New bit manipulation functions and 128-bit value library (#7338) 2020-09-03 09:32:59 -07:00
cache Add more tests to ASSERT_STATUS_CHECKED (#7211) 2020-08-06 17:19:41 -07:00
cmake
coverage
db Add getters to the C API for flush, write, cache and compact options (#7321) 2020-09-09 11:45:27 -07:00
db_stress_tool More backup/restore stress test fixes (#7361) 2020-09-09 11:19:05 -07:00
docs Update github-pages to v207 (#7235) 2020-08-12 09:26:24 -07:00
env Use FSRandomRWFilePtr Object to call underlying file system. (#7198) 2020-09-08 12:21:58 -07:00
examples Make examples work on Windows (#7304) 2020-09-01 18:03:50 -07:00
file Store FSWritableFilePtr object in WritableFileWriter (#7193) 2020-09-08 10:56:08 -07:00
hdfs
include/rocksdb Add getters to the C API for flush, write, cache and compact options (#7321) 2020-09-09 11:45:27 -07:00
java Implement Java API for ConcurrentTaskLimiter class and compaction_thread_limiter field in ColumnFamilyOptions (#7347) 2020-09-09 12:44:20 -07:00
logging Add EnvTestWithParam::OptionsTest to the ASSERT_STATUS_CHECKED passes (#7283) 2020-08-20 19:18:35 -07:00
memory
memtable
monitoring Add a new stats level to exclude tickers (#7329) 2020-09-04 23:25:03 -07:00
options Add initial set of options for integrated blob write path (#7280) 2020-08-18 18:32:37 -07:00
port
table Fix compile error for old gcc-4.8 (#7358) 2020-09-08 12:09:34 -07:00
test_util Fix backup/restore in stress/crash test (#7357) 2020-09-08 10:50:19 -07:00
third-party
tools Fix db_bench_tool_test. Fixes 7341 (#7344) 2020-09-09 09:07:16 -07:00
trace_replay Add some simulator cache and block tracer tests to ASSERT_STATUS_CHECKED (#7305) 2020-08-24 16:43:31 -07:00
util New bit manipulation functions and 128-bit value library (#7338) 2020-09-03 09:32:59 -07:00
utilities Fix backup/restore in stress/crash test (#7357) 2020-09-08 10:50:19 -07:00
.clang-format
.gitignore Generate and install a pkg-config file (#7244) 2020-08-17 11:53:11 -07:00
.lgtm.yml
.travis.yml Fix platform_dependent in Travis, rebalance groups (#7360) 2020-09-09 09:49:24 -07:00
.watchmanconfig
appveyor.yml
AUTHORS
CMakeLists.txt tests need linked with third_party libs (#7351) 2020-09-09 09:02:34 -07:00
CODE_OF_CONDUCT.md
CONTRIBUTING.md
COPYING
DEFAULT_OPTIONS_HISTORY.md
defs.bzl
DUMP_FORMAT.md
HISTORY.md Update HISTORY.md for PR7329 (#7355) 2020-09-08 11:10:25 -07:00
INSTALL.md
issue_template.md
LANGUAGE-BINDINGS.md
LICENSE.Apache
LICENSE.leveldb
Makefile Fix platform_dependent in Travis, rebalance groups (#7360) 2020-09-09 09:49:24 -07:00
README.md
ROCKSDB_LITE.md
src.mk Implement Java API for ConcurrentTaskLimiter class and compaction_thread_limiter field in ColumnFamilyOptions (#7347) 2020-09-09 12:44:20 -07:00
TARGETS Add buffer prefetch support for non directIO usecase (#7312) 2020-08-27 18:16:53 -07: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/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.