-
Notifications
You must be signed in to change notification settings - Fork 1
/
README
180 lines (133 loc) · 7.66 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
## PebblesDB
[![Build Status](https://travis-ci.org/utsaslab/pebblesdb.svg?branch=master)](https://travis-ci.org/utsaslab/pebblesdb)
[![License](https://img.shields.io/badge/License-BSD%203--Clause-blue.svg)](https://opensource.org/licenses/BSD-3-Clause)
[PebblesDB](https://github.com/utsaslab/pebblesdb) is a write-optimized key-value store which is built using
the novel FLSM (Fragmented Log-Structured Merge Tree) data
structure. FLSM is a modification of the standard log-structured merge tree data structure which
aims at achieving higher write throughput and lower write
amplification without compromising on read throughput.
PebblesDB is built by modifying
[HyperLevelDB](https://github.com/rescrv/HyperLevelDB) which, in turn,
is built on top of
[LevelDB](https://github.com/google/leveldb). PebblesDB is API
compatible with HyperLevelDB and LevelDB. Thus, PebblesDB is a
*drop-in* replacement for LevelDB and HyperLevelDB. The source code is available on [Github](https://github.com/utsaslab/pebblesdb). The full paper on
PebblesDB can be found
[here](http://www.cs.utexas.edu/~vijay/papers/sosp17-pebblesdb.pdf
"PebblesDB SOSP'17"). The slides for the SOSP 17 talk, which explains the core ideas behind PebblesDB, can be found [here](http://www.cs.utexas.edu/~vijay/papers/pebblesdb-sosp17-slides.pdf).
If you are using LevelDB in your deployment, do consider trying out
PebblesDB! PebblesDB can also be used to replace RocksDB as long as
the RocksDB-specific functionality like column families are not used.
Please
[cite](http://www.cs.utexas.edu/~vijay/bibtex/sosp17-pebblesdb.bib)
the following paper if you use PebblesDB: [PebblesDB: Building
Key-Value Stores using Fragmented Log-Structured Merge
Trees](http://www.cs.utexas.edu/~vijay/papers/sosp17-pebblesdb.pdf). Pandian
Raju, Rohan Kadekodi, Vijay Chidambaram, Ittai Abraham. [SOSP
17](https://www.sigops.org/sosp/sosp17/). [Bibtex](http://www.cs.utexas.edu/~vijay/bibtex/sosp17-pebblesdb.bib)
The [benchmarks
page](https://github.com/utsaslab/pebblesdb/blob/master/benchmark.md)
has a list of experiments evaluating PebblesDB vs LevelDB,
HyperLevelDB, and RocksDB. The summary is that PebblesDB outperforms
the other stores on write throughput, equals other stores on read
throughput, and incurs a penalty for small range queries on fully
compacted key-value stores. PebblesDB achieves **6x** the write throughput of RocksDB, while providing similar read throughput, and performing 50% lesser IO. Please see the paper for more details.
If you would like to run MongoDB with PebblesDB as the storage engine, please check out [mongo-pebbles](https://github.com/utsaslab/mongo-pebbles), a modification of the mongo-rocks layer between RocksDB and MongoDB.
___
### Dependencies
PebblesDB requires `libsnappy` and `libtool`. To install on Linux, please use
`sudo apt-get install libsnappy-dev libtool`. For MacOSX, use `brew install snappy` and instead of `ldconfig`, use `update_dyld_shared_cache`.
PebblesDB was built, compiled, and tested with g++-4.7, g++-4.9, and g++-5. It may not work with other versions of g++ and other C++ compilers.
### Installation
Using Autotools:
```
$ cd pebblesdb/src
$ autoreconf -i
$ ./configure
$ make
$ make install
$ ldconfig
```
Using CMake:
```shell
$ mkdir -p build && cd build
$ cmake .. && make install -j16
```
___
### Running microbenchmark
1. `cd pebblesdb/src/`
2. `make db_bench` (this only works if you are compiling using autotools, and have done `autoreconf` and `configure` before this step)
3. `./db_bench --benchmarks=<list-of-benchmarks> --num=<number-of-keys> --value_size=<size-of-value-in-bytes> --reads=<number-of-reads> --db=<database-directory-path>`
A complete set of parameters can be found in `db/db_bench.cc`
Sample usage:
`./db_bench --benchmarks=fillrandom,readrandom --num=1000000 --value_size=1024 --reads=500000 --db=/tmp/pebblesdbtest-1000`
Use `filter` benchmark property to print the filter policy statistics like memory usage.
`./db_bench --benchmarks=fillrandom,readrandom,filter --num=1000000 --value_size=1024 --reads=500000 --db=/tmp/pebblesdbtest-1000`
```
fillrandom : 110.460 micros/op; 9.0 MB/s
readrandom : 4.120 micros/op; (5000 of 10000 found)
Filter in-memory size: 0.024 MB
Count of filters: 1928
```
___
### Optimizations in PebblesDB
PebblesDB uses the FLSM data structure to logically arrange the sstables
on disk. FLSM helps in achieving high write throughput by reducing
write amplification. But in FLSM, each guard can contain multiple
overlapping sstables. Hence a read or seek over the database requires
examining one guard (multiple sstables) per level, thereby increasing
the read/seek latency. PebblesDB employs some optimizations to tackle
these challenges as follows:
#### Read optimization
* PebblesDB makes use of sstable-level bloom filter instead of block
level bloom filter used in HyperLevelDB or LevelDB. With this
optimization, even though a guard can contain multiple sstables,
PebblesDB effectively reads only one sstable from disk per level.
* By default, this optimization is turned on, but this can be disabled
by commenting the macro `#define FILE_LEVEL_FILTER` in
`db/version_set.h`. Remember to do `make db_bench` after making a
change.
#### Seek optimization
Sstable-level bloom filter can't be used to reduce the disk read for
`seek` operation since `seek` has to examine all files within a guard
even if a file doesn't contain the key. To tackle this challenge,
PebblesDB does two optimizations:
1. **Parallel seeks:** PebblesDB employs multiple threads to do
`seek()` operation on multiple files within a guard. Note that this
optimization might only be helpful when the size of the data set is
much larger than the RAM size because otherwise the overhead of thread
synchronization conceals the benefits obtained by using multiple
threads. By default, this optimization is disabled. This can be
enabled by uncommenting `#define SEEK_PARALLEL` in `db/version_set.h`.
2. **Forced compaction:** When the workload is seek-heavy, PebblesDB
can be configured to do a seek-based forced compaction which aims to
reduce the number of files within a guard. This can lead to an
increase in write IO, but this is a trade-off between write IO and
seek throughput. By default, this optimization is enabled. This can
be disabled by uncommenting `#define DISABLE_SEEK_BASED_COMPACTION` in
`db/version_set.h`.
___
### Tuning PebblesDB
* The amount of overhead PebblesDB has for read/seek workloads as well
as the amount of gain it has for write workloads depends on a single
parameter: `kMaxFilesPerGuardSentinel`, which determines the maximum
number of sstables that can be present within a single guard.
* This parameter can be set in `db/dbformat.h` (default value:
2). Setting this parameter high will favor write throughput while
setting it lower will favor read/seek throughputs.
---
### Running YCSB Benchmarks
The Java Native Interface wrapper to PebblesDB is available [here](https://github.com/utsaslab/leveldbjni).
Please follow the instructions specified under *Running YCSB Workloads with PebblesDB* section for running the YCSB benchmarks.
The YCSB bindings for PebblesDB can be found [here](https://github.com/utsaslab/YCSB/tree/master/pebblesdb).
---
### Improvements made after the SOSP paper
The following improvements are made to the codebase after the SOSP paper:
- Add CMake build system support (Zeyuan Hu @xxks-kkk)
- Add JNI Wrapper and support for running YCSB benchmarks (Abhijith Nair @abhijith97)
- Accounting for memory used by bloom filters (Karuna Grewal @aakp10)
---
### Contact
Please contact us at `vijay@cs.utexas.edu` with any questions. Drop
us a note if you are using or plan to use PebblesDB in your company or
university.