-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmain.go
143 lines (131 loc) · 3.84 KB
/
main.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
package main
import "os"
import "flag"
import "time"
import "strings"
import "runtime"
import "net/http"
import "runtime/pprof"
import _ "net/http/pprof"
import "github.com/bnclabs/golog"
import "github.com/bnclabs/gostore/bogn"
import "github.com/bnclabs/gostore/bubt"
import "github.com/bnclabs/gostore/llrb"
var validate = false
var options struct {
db string
cpu int
bogn string
memstore string
period int
load int
inserts int
upserts int
deletes int
gets int
ranges int
limit int
keylen int
vallen int
lsm bool
seed int
setas string
delas string
getas string
rngas string
flushratio float64
memcapacity int
npaths int
msize int
zsize int
vsize int
mmap bool
log string
}
func optparse(args []string) {
f := flag.NewFlagSet("dbperf", flag.ExitOnError)
cpu := runtime.GOMAXPROCS(-1) / 2
f.StringVar(&options.db, "db", "llrb", "pick db storage to benchmark.")
f.IntVar(&options.cpu, "cpu", cpu, "limit number of cores.")
f.StringVar(&options.bogn, "bogn", "memonly", "memonly|durable|dgm|workset")
f.StringVar(&options.memstore, "memstore", "mvcc", "llrb|mvcc for bogn")
f.IntVar(&options.period, "period", 10, "bogn flush period, in seconds")
f.IntVar(&options.load, "load", 0, "items to initially load")
f.IntVar(&options.inserts, "inserts", 0, "new items to create")
f.IntVar(&options.upserts, "upserts", 0, "items to update")
f.IntVar(&options.deletes, "deletes", 0, "items to delete")
f.IntVar(&options.gets, "gets", 0, "items to get")
f.IntVar(&options.ranges, "ranges", 0, "items to iterate")
f.IntVar(&options.limit, "limit", 100, "limit items per iteration")
f.IntVar(&options.keylen, "klen", 32, "size of each key")
f.IntVar(&options.vallen, "vlen", 32, "size of each value")
f.BoolVar(&options.lsm, "lsm", true, "delete in lsm mode.")
f.IntVar(&options.seed, "seed", 0, "seed value to generate randomness")
f.StringVar(&options.setas, "setas", "set", "set|cas|txn|cur|all")
f.StringVar(&options.delas, "delas", "del", "del|txn|cur|delcur|all")
f.StringVar(&options.getas, "getas", "get", "get|txn|view|all")
f.StringVar(&options.rngas, "rngas", "all", "tgn|tyn|vgn|vyn|all")
f.IntVar(&options.memcapacity, "memcap", 0, "memory cap on llrb/mvcc in MB")
f.IntVar(&options.npaths, "npaths", 1, "number of directory paths for bubt")
f.Float64Var(&options.flushratio, "flushratio", 0.25, "m-block size for bubt")
f.IntVar(&options.msize, "msize", 4096, "m-block size for bubt")
f.IntVar(&options.zsize, "zsize", 0, "z-block size for bubt")
f.IntVar(&options.vsize, "vsize", 0, "v-block size for bubt")
f.BoolVar(&options.mmap, "mmap", false, "enable mmap for z-blocks")
f.StringVar(&options.log, "log", "", "llrb,mvcc,bubt,bogn")
f.Parse(args)
if options.seed == 0 {
options.seed = int(time.Now().UnixNano())
}
for _, comp := range strings.Split(options.log, ",") {
switch comp {
case "bubt":
bubt.LogComponents("self")
case "bogn":
bogn.LogComponents("self")
case "llrb", "mvcc":
llrb.LogComponents("self")
case "all":
bubt.LogComponents("all")
bogn.LogComponents("all")
llrb.LogComponents("all")
}
}
}
func main() {
optparse(os.Args[1:])
go func() {
log.Infof("%v", http.ListenAndServe("localhost:6060", nil))
}()
// cpu profile
f1, err := os.Create("dbperf.pprof")
if err != nil {
log.Fatalf("%v", err)
}
defer f1.Close()
pprof.StartCPUProfile(f1)
defer pprof.StopCPUProfile()
// mem profile
f2, err := os.Create("dbperf.mprof")
if err != nil {
log.Fatalf("%v", err)
}
defer f2.Close()
defer pprof.WriteHeapProfile(f2)
switch options.db {
case "lmdb":
perflmdb()
case "bolt":
perfbolt()
case "llrb":
perfllrb()
case "mvcc":
perfmvcc()
case "bubt":
perfbubt()
case "bogn":
perfbogn()
case "badger":
perfbadger()
}
}