This repository has been archived by the owner on Jun 20, 2023. It is now read-only.
forked from linxGnu/grocksdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
backup.go
159 lines (134 loc) · 4.6 KB
/
backup.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
package grocksdb
// #include <stdlib.h>
// #include "rocksdb/c.h"
import "C"
import (
"unsafe"
)
// BackupInfo represents the information about a backup.
type BackupInfo struct {
ID uint32
Timestamp int64
Size uint64
NumFiles uint32
}
// BackupEngine is a reusable handle to a RocksDB Backup, created by
// OpenBackupEngine.
type BackupEngine struct {
c *C.rocksdb_backup_engine_t
db *DB
}
// OpenBackupEngine opens a backup engine with specified options.
func OpenBackupEngine(opts *Options, path string) (be *BackupEngine, err error) {
cpath := C.CString(path)
var cErr *C.char
bEngine := C.rocksdb_backup_engine_open(opts.c, cpath, &cErr)
if err = fromCError(cErr); err == nil {
be = &BackupEngine{
c: bEngine,
}
}
C.free(unsafe.Pointer(cpath))
return
}
// OpenBackupEngineWithOpt opens a backup engine with specified options.
func OpenBackupEngineWithOpt(opts *BackupEngineOptions, env *Env) (be *BackupEngine, err error) {
var cErr *C.char
bEngine := C.rocksdb_backup_engine_open_opts(opts.c, env.c, &cErr)
if err = fromCError(cErr); err == nil {
be = &BackupEngine{
c: bEngine,
}
}
return
}
// CreateBackupEngine opens a backup engine from DB.
func CreateBackupEngine(db *DB) (be *BackupEngine, err error) {
if be, err = OpenBackupEngine(db.opts, db.Name()); err == nil {
be.db = db
}
return
}
// CreateBackupEngineWithPath opens a backup engine from DB and path
func CreateBackupEngineWithPath(db *DB, path string) (be *BackupEngine, err error) {
if be, err = OpenBackupEngine(db.opts, path); err == nil {
be.db = db
}
return
}
// CreateNewBackup takes a new backup from db.
func (b *BackupEngine) CreateNewBackup() (err error) {
var cErr *C.char
C.rocksdb_backup_engine_create_new_backup(b.c, b.db.c, &cErr)
err = fromCError(cErr)
return
}
// CreateNewBackupFlush takes a new backup from db.
// Backup would be created after flushing.
func (b *BackupEngine) CreateNewBackupFlush(flushBeforeBackup bool) (err error) {
var cErr *C.char
C.rocksdb_backup_engine_create_new_backup_flush(b.c, b.db.c, boolToChar(flushBeforeBackup), &cErr)
err = fromCError(cErr)
return
}
// PurgeOldBackups deletes old backups, where `numBackupsToKeep` is how many backups you’d like to keep.
func (b *BackupEngine) PurgeOldBackups(numBackupsToKeep uint32) (err error) {
var cErr *C.char
C.rocksdb_backup_engine_purge_old_backups(b.c, C.uint32_t(numBackupsToKeep), &cErr)
err = fromCError(cErr)
return
}
// VerifyBackup verifies a backup by its id.
func (b *BackupEngine) VerifyBackup(backupID uint32) (err error) {
var cErr *C.char
C.rocksdb_backup_engine_verify_backup(b.c, C.uint32_t(backupID), &cErr)
err = fromCError(cErr)
return
}
// GetInfo gets an object that gives information about
// the backups that have already been taken
func (b *BackupEngine) GetInfo() (infos []BackupInfo) {
info := C.rocksdb_backup_engine_get_backup_info(b.c)
n := int(C.rocksdb_backup_engine_info_count(info))
infos = make([]BackupInfo, n)
for i := range infos {
index := C.int(i)
infos[i].ID = uint32(C.rocksdb_backup_engine_info_backup_id(info, index))
infos[i].Timestamp = int64(C.rocksdb_backup_engine_info_timestamp(info, index))
infos[i].Size = uint64(C.rocksdb_backup_engine_info_size(info, index))
infos[i].NumFiles = uint32(C.rocksdb_backup_engine_info_number_files(info, index))
}
C.rocksdb_backup_engine_info_destroy(info)
return
}
// RestoreDBFromLatestBackup restores the latest backup to dbDir. walDir
// is where the write ahead logs are restored to and usually the same as dbDir.
func (b *BackupEngine) RestoreDBFromLatestBackup(dbDir, walDir string, ro *RestoreOptions) (err error) {
cDbDir := C.CString(dbDir)
cWalDir := C.CString(walDir)
var cErr *C.char
C.rocksdb_backup_engine_restore_db_from_latest_backup(b.c, cDbDir, cWalDir, ro.c, &cErr)
err = fromCError(cErr)
C.free(unsafe.Pointer(cDbDir))
C.free(unsafe.Pointer(cWalDir))
return
}
// RestoreDBFromBackup restores the backup (identified by its id) to dbDir. walDir
// is where the write ahead logs are restored to and usually the same as dbDir.
func (b *BackupEngine) RestoreDBFromBackup(dbDir, walDir string, ro *RestoreOptions, backupID uint32) (err error) {
cDbDir := C.CString(dbDir)
cWalDir := C.CString(walDir)
var cErr *C.char
C.rocksdb_backup_engine_restore_db_from_backup(b.c, cDbDir, cWalDir, ro.c, C.uint32_t(backupID), &cErr)
err = fromCError(cErr)
C.free(unsafe.Pointer(cDbDir))
C.free(unsafe.Pointer(cWalDir))
return
}
// Close close the backup engine and cleans up state
// The backups already taken remain on storage.
func (b *BackupEngine) Close() {
C.rocksdb_backup_engine_close(b.c)
b.c = nil
b.db = nil
}