forked from rjl493456442/goleveldb-bench
-
Notifications
You must be signed in to change notification settings - Fork 0
/
readbench.go
215 lines (194 loc) · 4.62 KB
/
readbench.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
package bench
import (
"encoding/json"
"fmt"
"io"
"math/rand"
"sync"
"time"
)
type ReadConfig struct {
Size uint64 `json:"size"` // testing dataset size(pre-constructed)
KeySize uint64 `json:"keysize"` // size of each testing key
DataSize uint64 `json:"datasize"` // size of each testing value
LogPercent bool `json:"-"`
TestName string `json:"-"`
}
type ReadEnv struct {
cfg ReadConfig
// generating keys and values
key, value []byte
rand *rand.Rand
log *json.Encoder
kw io.Writer
kr io.Reader
resetKey func()
keych chan [][]byte
// reporting
mu sync.Mutex
startTime, lastTime time.Duration
read, lastRead uint64
lastPercent int
written, lastWritten uint64
lastWrittenPercent int
}
func NewReadEnv(log io.Writer, kr io.Reader, kw io.Writer, resetKey func(), cfg ReadConfig) *ReadEnv {
return &ReadEnv{
cfg: cfg,
log: json.NewEncoder(log),
kr: kr,
kw: kw,
resetKey: resetKey,
key: make([]byte, cfg.KeySize),
value: make([]byte, cfg.DataSize),
keych: make(chan [][]byte, 100),
}
}
// Run calls write repeatedly with random keys and values.
// The write function should perform a database write and call LegacyWriteProgress when
// data has actually been flushed to disk.
func (env *ReadEnv) Run(write func(key, value string, lastCall bool) error, read func(key string) error) error {
env.start()
var (
err error
keypool [][]byte
wg sync.WaitGroup
result = make(chan [][]byte, 100)
shutdown = make(chan struct{})
)
defer func() {
close(shutdown)
wg.Wait()
}()
// Stage one, construct the test dataset
if env.kw != nil {
wg.Add(1)
go env.writeKey(shutdown, &wg)
stageOne:
for {
env.rand.Read(env.key)
env.rand.Read(env.value)
env.written += env.cfg.DataSize
end := env.written >= env.cfg.Size
err = write(string(env.key), string(env.value), end)
if err != nil || end {
if err == nil {
keypool = append(keypool, copyBytes(env.key))
}
if len(keypool) > 0 {
env.keych <- keypool
keypool = make([][]byte, 0)
}
break stageOne
}
keypool = append(keypool, copyBytes(env.key))
if len(keypool) > 1024 {
env.keych <- keypool
keypool = make([][]byte, 0)
}
env.logWritePercentage()
}
if err != nil {
return err
}
}
// Stage two, read bench
wg.Add(1)
go env.readKey(result, shutdown, &wg)
stageTwo:
for keybatch := range result {
for _, key := range keybatch {
err = read(string(key))
if err != nil {
break stageTwo
}
}
}
if err != nil {
return err
}
return nil
}
func (env *ReadEnv) writeKey(shutdown chan struct{}, wg *sync.WaitGroup) {
defer wg.Done()
for {
select {
case batchKeys := <-env.keych:
var buffer []byte
for _, key := range batchKeys {
buffer = append(buffer, key...)
}
env.kw.Write(buffer)
case <-shutdown:
return
}
}
}
func (env *ReadEnv) readKey(result chan [][]byte, shutdown chan struct{}, wg *sync.WaitGroup) {
defer wg.Done()
buffer := make([]byte, env.cfg.KeySize*1024)
if env.resetKey != nil {
env.resetKey()
}
for {
read, err := env.kr.Read(buffer)
if read == 0 {
close(result)
return
}
batchKey := make([][]byte, read/int(env.cfg.KeySize))
for i := 0; i+int(env.cfg.KeySize) <= read; i += int(env.cfg.KeySize) {
batchKey[i/int(env.cfg.KeySize)] = copyBytes(buffer[i : i+int(env.cfg.KeySize)])
}
select {
case result <- batchKey:
case <-shutdown:
return
}
if err != nil {
close(result)
return
}
}
}
func (env *ReadEnv) start() {
env.rand = rand.New(rand.NewSource(0x1334))
env.startTime = mononow()
env.lastTime = env.startTime
}
// Progress writes a JSON progress event to the environment's output writer.
func (env *ReadEnv) Progress(w int) {
now := mononow()
env.mu.Lock()
defer env.mu.Unlock()
env.read += uint64(w)
d := now - env.lastTime
dw := env.read - env.lastRead
if dw > 0 && dw > emitInterval {
p := Progress{Processed: env.read, Delta: dw, Duration: d}
env.log.Encode(&p)
env.logPercentage()
env.lastTime = now
env.lastRead = env.read
}
}
func (env *ReadEnv) logPercentage() {
if !env.cfg.LogPercent {
return
}
pct := int((float64(env.read) / float64(env.cfg.Size)) * 100)
if pct > env.lastPercent {
fmt.Printf("[Reading] %3d%% %s\n", pct, env.cfg.TestName)
env.lastPercent = pct
}
}
func (env *ReadEnv) logWritePercentage() {
if !env.cfg.LogPercent {
return
}
pct := int((float64(env.written) / float64(env.cfg.Size)) * 100)
if pct > env.lastWrittenPercent {
fmt.Printf("[Writing] %3d%% %s\n", pct, env.cfg.TestName)
env.lastWrittenPercent = pct
}
}