-
Notifications
You must be signed in to change notification settings - Fork 30
/
rocksdb.go
225 lines (197 loc) · 5.38 KB
/
rocksdb.go
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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
//go:build rocksdb
// +build rocksdb
package db
import (
"fmt"
"path/filepath"
"runtime"
"github.com/linxGnu/grocksdb"
"github.com/spf13/cast"
)
func init() {
dbCreator := func(name string, dir string, opts Options) (DB, error) {
return NewRocksDB(name, dir, opts)
}
registerDBCreator(RocksDBBackend, dbCreator, false)
}
// RocksDB is a RocksDB backend.
type RocksDB struct {
db *grocksdb.DB
ro *grocksdb.ReadOptions
wo *grocksdb.WriteOptions
woSync *grocksdb.WriteOptions
}
var _ DB = (*RocksDB)(nil)
// defaultRocksdbOptions, good enough for most cases, including heavy workloads.
// 1GB table cache, 512MB write buffer(may use 50% more on heavy workloads).
// compression: snappy as default, need to -lsnappy to enable.
func defaultRocksdbOptions() *grocksdb.Options {
bbto := grocksdb.NewDefaultBlockBasedTableOptions()
bbto.SetBlockCache(grocksdb.NewLRUCache(1 << 30))
bbto.SetFilterPolicy(grocksdb.NewBloomFilter(10))
rocksdbOpts := grocksdb.NewDefaultOptions()
rocksdbOpts.SetBlockBasedTableFactory(bbto)
// SetMaxOpenFiles to 4096 seems to provide a reliable performance boost
rocksdbOpts.SetMaxOpenFiles(4096)
rocksdbOpts.SetCreateIfMissing(true)
rocksdbOpts.IncreaseParallelism(runtime.NumCPU())
// 1.5GB maximum memory use for writebuffer.
rocksdbOpts.OptimizeLevelStyleCompaction(512 * 1024 * 1024)
return rocksdbOpts
}
func NewRocksDB(name string, dir string, opts Options) (*RocksDB, error) {
defaultOpts := defaultRocksdbOptions()
if opts != nil {
files := cast.ToInt(opts.Get("maxopenfiles"))
if files > 0 {
defaultOpts.SetMaxOpenFiles(files)
}
}
return NewRocksDBWithOptions(name, dir, defaultOpts)
}
func NewRocksDBWithOptions(name string, dir string, opts *grocksdb.Options) (*RocksDB, error) {
dbPath := filepath.Join(dir, name+DBFileSuffix)
db, err := grocksdb.OpenDb(opts, dbPath)
if err != nil {
return nil, err
}
ro := grocksdb.NewDefaultReadOptions()
wo := grocksdb.NewDefaultWriteOptions()
woSync := grocksdb.NewDefaultWriteOptions()
woSync.SetSync(true)
return NewRocksDBWithRawDB(db, ro, wo, woSync), nil
}
// NewRocksDBWithRawDB lets caller has full control on how the db instance is constructed
func NewRocksDBWithRawDB(
db *grocksdb.DB,
ro *grocksdb.ReadOptions,
wo *grocksdb.WriteOptions,
woSync *grocksdb.WriteOptions,
) *RocksDB {
return NewRocksDBWithRaw(db, ro, wo, woSync)
}
// NewRocksDBWithRaw is useful if user want to create the db in read-only or seconday-standby mode,
// or customize the default read/write options.
func NewRocksDBWithRaw(
db *grocksdb.DB, ro *grocksdb.ReadOptions,
wo *grocksdb.WriteOptions, woSync *grocksdb.WriteOptions,
) *RocksDB {
return &RocksDB{
db: db,
ro: ro,
wo: wo,
woSync: woSync,
}
}
// Get implements DB.
func (db *RocksDB) Get(key []byte) ([]byte, error) {
if len(key) == 0 {
return nil, errKeyEmpty
}
res, err := db.db.Get(db.ro, key)
if err != nil {
return nil, err
}
return moveSliceToBytes(res), nil
}
// Has implements DB.
func (db *RocksDB) Has(key []byte) (bool, error) {
bytes, err := db.Get(key)
if err != nil {
return false, err
}
return bytes != nil, nil
}
// Set implements DB.
func (db *RocksDB) Set(key []byte, value []byte) error {
if len(key) == 0 {
return errKeyEmpty
}
if value == nil {
return errValueNil
}
return db.db.Put(db.wo, key, value)
}
// SetSync implements DB.
func (db *RocksDB) SetSync(key []byte, value []byte) error {
if len(key) == 0 {
return errKeyEmpty
}
if value == nil {
return errValueNil
}
return db.db.Put(db.woSync, key, value)
}
// Delete implements DB.
func (db *RocksDB) Delete(key []byte) error {
if len(key) == 0 {
return errKeyEmpty
}
return db.db.Delete(db.wo, key)
}
// DeleteSync implements DB.
func (db *RocksDB) DeleteSync(key []byte) error {
if len(key) == 0 {
return errKeyEmpty
}
return db.db.Delete(db.woSync, key)
}
func (db *RocksDB) DB() *grocksdb.DB {
return db.db
}
// Close implements DB.
func (db *RocksDB) Close() error {
db.ro.Destroy()
db.wo.Destroy()
db.woSync.Destroy()
db.db.Close()
return nil
}
// Print implements DB.
func (db *RocksDB) Print() error {
itr, err := db.Iterator(nil, nil)
if err != nil {
return err
}
defer itr.Close()
for ; itr.Valid(); itr.Next() {
key := itr.Key()
value := itr.Value()
fmt.Printf("[%X]:\t[%X]\n", key, value)
}
return nil
}
// Stats implements DB.
func (db *RocksDB) Stats() map[string]string {
keys := []string{"rocksdb.stats"}
stats := make(map[string]string, len(keys))
for _, key := range keys {
stats[key] = db.db.GetProperty(key)
}
return stats
}
// NewBatch implements DB.
func (db *RocksDB) NewBatch() Batch {
return newRocksDBBatch(db)
}
// NewBatchWithSize implements DB.
// It does the same thing as NewBatch because we can't pre-allocate rocksDBBatch
func (db *RocksDB) NewBatchWithSize(_ int) Batch {
return newRocksDBBatch(db)
}
// Iterator implements DB.
func (db *RocksDB) Iterator(start, end []byte) (Iterator, error) {
if (start != nil && len(start) == 0) || (end != nil && len(end) == 0) {
return nil, errKeyEmpty
}
itr := db.db.NewIterator(db.ro)
return newRocksDBIterator(itr, start, end, false), nil
}
// ReverseIterator implements DB.
func (db *RocksDB) ReverseIterator(start, end []byte) (Iterator, error) {
if (start != nil && len(start) == 0) || (end != nil && len(end) == 0) {
return nil, errKeyEmpty
}
itr := db.db.NewIterator(db.ro)
return newRocksDBIterator(itr, start, end, true), nil
}