-
Notifications
You must be signed in to change notification settings - Fork 8
/
barrel.go
308 lines (253 loc) · 7.37 KB
/
barrel.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
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
package barrel
import (
"bytes"
"fmt"
"os"
"path/filepath"
"sync"
"time"
"github.com/mr-karan/barreldb/internal/datafile"
"github.com/zerodha/logf"
)
const (
LOCKFILE = "barrel.lock"
HINTS_FILE = "barrel.hints"
)
type Barrel struct {
sync.Mutex
lo logf.Logger
bufPool sync.Pool // Pool of byte buffers used for writing.
opts *Options
keydir KeyDir // In-memory hashmap of all active keys.
df *datafile.DataFile // Active datafile.
stale map[int]*datafile.DataFile // Map of older datafiles with their IDs.
flockF *os.File //Lockfile to prevent multiple write access to same datafile.
}
// initLogger initializes logger instance.
func initLogger(debug bool) logf.Logger {
opts := logf.Opts{EnableCaller: true}
if debug {
opts.Level = logf.DebugLevel
}
return logf.New(opts)
}
// Init initialises a datastore for storing data.
func Init(cfg ...Config) (*Barrel, error) {
// Set options.
opts := DefaultOptions()
for _, opt := range cfg {
if err := opt(opts); err != nil {
return nil, err
}
}
var (
lo = initLogger(opts.debug)
index = 0
flockF *os.File
stale = map[int]*datafile.DataFile{}
)
// Load existing datafiles
files, err := getDataFiles(opts.dir)
if err != nil {
return nil, fmt.Errorf("error loading data files: %w", err)
}
if len(files) > 0 {
// Get the existing ids.
ids, err := getIDs(files)
if err != nil {
return nil, fmt.Errorf("error parsing ids for existing files: %w", err)
}
// Increment the index to write to a new datafile.
index = ids[len(ids)-1] + 1
// Add all older datafiles to the list of stale files.
for _, idx := range ids {
df, err := datafile.New(opts.dir, idx)
if err != nil {
return nil, err
}
stale[idx] = df
}
}
// If not running in a read only mode then create a lockfile to ensure only one process writes to the db directory.
if !opts.readOnly {
// Check if a lockfile already exists.
lockPath := filepath.Join(opts.dir, LOCKFILE)
if exists(lockPath) {
return nil, ErrLocked
} else {
flockF, err = createFlockFile(lockPath)
if err != nil {
return nil, fmt.Errorf("error creating lockfile: %w", err)
}
}
}
// Initialise a db store.
df, err := datafile.New(opts.dir, index)
if err != nil {
return nil, err
}
// Initialise an empty keydir.
keydir := make(KeyDir, 0)
// Check if a hints file already exists and then use that to populate the hashtable.
hintsPath := filepath.Join(opts.dir, HINTS_FILE)
if exists(hintsPath) {
if err := keydir.Decode(hintsPath); err != nil {
return nil, fmt.Errorf("error populating hashtable from hints file: %w", err)
}
}
// Initialise barrel.
barrel := &Barrel{
opts: opts,
lo: lo,
df: df,
stale: stale,
flockF: flockF,
keydir: keydir,
bufPool: sync.Pool{New: func() any {
return bytes.NewBuffer([]byte{})
}},
}
// Spawn a goroutine which runs in background and compacts all datafiles in a new single datafile.
go barrel.RunCompaction(opts.compactInterval)
// Spawn a goroutine which checks for the file size of the active file at periodic interval.
go barrel.ExamineFileSize(barrel.opts.checkFileSizeInterval)
// Spawn a goroutine which flushes the file to disk periodically.
if barrel.opts.syncInterval != nil {
go barrel.SyncFile(*opts.syncInterval)
}
return barrel, nil
}
// Shutdown closes all the open file descriptors and removes any file locks.
// If non running in a read-only mode, it's essential to call close so that it
// removes any file locks on the database directory. Not calling close will prevent
// future startups until it's removed manually.
func (b *Barrel) Shutdown() error {
b.Lock()
defer b.Unlock()
// Generate a hints file.
if err := b.generateHints(); err != nil {
b.lo.Error("error generating hints file", "error", err)
return err
}
// Close all active file handlers.
if err := b.df.Close(); err != nil {
b.lo.Error("error closing active db file", "error", err, "id", b.df.ID())
return err
}
// Close all stale datafiles as well.
for _, df := range b.stale {
if err := df.Close(); err != nil {
b.lo.Error("error closing active db file", "error", err, "id", df.ID())
return err
}
}
// Cleanup the lock file.
if !b.opts.readOnly {
if err := destroyFlockFile(b.flockF); err != nil {
b.lo.Error("error destroying lock file", "error", err)
return err
}
}
return nil
}
// Put takes a key and value and encodes the data in bytes and writes to the db file.
// It also stores the key with some metadata in memory.
// This metadata helps for faster reads as the last position of the file is recorded so only
// a single disk seek is required to read value.
func (b *Barrel) Put(k string, val []byte) error {
b.Lock()
defer b.Unlock()
if b.opts.readOnly {
return ErrReadOnly
}
// Validate key and value.
if err := validateKV(k, val); err != nil {
return err
}
b.lo.Debug("storing data", "key", k, "val", val)
return b.put(b.df, k, val, nil)
}
// PutEx is same as Put but also takes an additional expiry time.
func (b *Barrel) PutEx(k string, val []byte, ex time.Duration) error {
b.Lock()
defer b.Unlock()
if b.opts.readOnly {
return ErrReadOnly
}
// Validate key and value.
if err := validateKV(k, val); err != nil {
return err
}
// Add the expiry to the current time.
expiry := time.Now().Add(ex)
b.lo.Debug("storing data with expiry", "key", k, "val", val, "expiry", ex.String())
return b.put(b.df, k, val, &expiry)
}
// Get takes a key and finds the metadata in the in-memory hashtable (Keydir).
// Using the offset present in metadata it finds the record in the datafile with a single disk seek.
// It further decodes the record and returns the value as a byte array for the given key.
func (b *Barrel) Get(k string) ([]byte, error) {
b.Lock()
defer b.Unlock()
b.lo.Debug("fetching data", "key", k)
record, err := b.get(k)
if err != nil {
return nil, err
}
// If expired, then don't return any result.
if record.isExpired() {
return nil, ErrExpiredKey
}
// If invalid checksum, return error.
if !record.isValidChecksum() {
return nil, ErrChecksumMismatch
}
return record.Value, nil
}
// Delete creates a tombstone record for the given key. The tombstone value is simply an empty byte array.
// Actual deletes happen in background when merge is called.
// Since the file is opened in append-only mode, the new value of the key
// is overwritten both on disk and in memory as a tombstone record.
func (b *Barrel) Delete(k string) error {
b.Lock()
defer b.Unlock()
if b.opts.readOnly {
return ErrReadOnly
}
b.lo.Debug("deleting key", "key", k)
return b.delete(k)
}
// List iterates over all keys and returns the list of keys.
func (b *Barrel) List() []string {
b.Lock()
defer b.Unlock()
keys := make([]string, 0, len(b.keydir))
for k := range b.keydir {
keys = append(keys, k)
}
return keys
}
// Len iterates over all keys and returns the total number of keys.
func (b *Barrel) Len() int {
b.Lock()
defer b.Unlock()
return len(b.keydir)
}
// Fold iterates over all keys and calls the given function for each key.
func (b *Barrel) Fold(fn func(k string) error) error {
b.Lock()
defer b.Unlock()
// Call fn for each key.
for k := range b.keydir {
if err := fn(k); err != nil {
return err
}
}
return nil
}
// Sync calls fsync(2) on the active data file.
func (b *Barrel) Sync() error {
b.Lock()
defer b.Unlock()
return b.df.Sync()
}