forked from cockroachdb/pebble
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pacer_test.go
198 lines (187 loc) · 5.36 KB
/
pacer_test.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
// Copyright 2019 The LevelDB-Go and Pebble Authors. All rights reserved. Use
// of this source code is governed by a BSD-style license that can be found in
// the LICENSE file.
package pebble
import (
"fmt"
"math"
"math/rand"
"slices"
"testing"
"time"
"github.com/stretchr/testify/require"
)
func TestDeletionPacer(t *testing.T) {
const MB = 1 << 20
const GB = 1 << 30
testCases := []struct {
freeBytes uint64
obsoleteBytes uint64
liveBytes uint64
// history of deletion reporting; first value in the pair is the time,
// second value is the deleted bytes. The time of pacing is the same as the
// last time in the history.
history [][2]int64
// expected pacing rate in MB/s.
expected float64
}{
{
freeBytes: 160 * GB,
obsoleteBytes: 1 * MB,
liveBytes: 160 * MB,
expected: 100.0,
},
// As freeBytes is 2GB below the free space threshold, rate should be
// increased by 204.8MB/s.
{
freeBytes: 14 * GB,
obsoleteBytes: 1 * MB,
liveBytes: 100 * MB,
expected: 304.8,
},
// As freeBytes is 10GB below the free space threshold, rate should be
// increased to by 1GB/s.
{
freeBytes: 6 * GB,
obsoleteBytes: 1 * MB,
liveBytes: 100 * MB,
expected: 1124.0,
},
// obsoleteBytesRatio is 50%. We need to delete 30GB within 5 minutes.
{
freeBytes: 500 * GB,
obsoleteBytes: 50 * GB,
liveBytes: 100 * GB,
expected: 202.4,
},
// When obsolete ratio unknown, there should be no throttling.
{
freeBytes: 500 * GB,
obsoleteBytes: 0,
liveBytes: 0,
expected: math.Inf(1),
},
// History shows 200MB/sec deletions on average over last 5 minutes.
{
freeBytes: 160 * GB,
obsoleteBytes: 1 * MB,
liveBytes: 160 * MB,
history: [][2]int64{{0, 5 * 60 * 200 * MB}},
expected: 200.0,
},
// History shows 200MB/sec deletions on average over last 5 minutes and
// freeBytes is 10GB below the threshold.
{
freeBytes: 6 * GB,
obsoleteBytes: 1 * MB,
liveBytes: 160 * MB,
history: [][2]int64{{0, 5 * 60 * 200 * MB}},
expected: 1224.0,
},
// History shows 200MB/sec deletions on average over last 5 minutes and
// obsoleteBytesRatio is 50%.
{
freeBytes: 500 * GB,
obsoleteBytes: 50 * GB,
liveBytes: 100 * GB,
history: [][2]int64{{0, 5 * 60 * 200 * MB}},
expected: 302.4,
},
// History shows 1000MB/sec deletions on average over last 5 minutes.
{
freeBytes: 160 * GB,
obsoleteBytes: 1 * MB,
liveBytes: 160 * MB,
history: [][2]int64{{0, 60 * 1000 * MB}, {3 * 60, 60 * 4 * 1000 * MB}, {4 * 60, 0}},
expected: 1000.0,
},
// First entry in history is too old, it should be discarded.
{
freeBytes: 160 * GB,
obsoleteBytes: 1 * MB,
liveBytes: 160 * MB,
history: [][2]int64{{0, 10 * 60 * 10000 * MB}, {3 * 60, 4 * 60 * 200 * MB}, {7 * 60, 1 * 60 * 200 * MB}},
expected: 200.0,
},
}
for tcIdx, tc := range testCases {
t.Run(fmt.Sprintf("%d", tcIdx), func(t *testing.T) {
getInfo := func() deletionPacerInfo {
return deletionPacerInfo{
freeBytes: tc.freeBytes,
liveBytes: tc.liveBytes,
obsoleteBytes: tc.obsoleteBytes,
}
}
start := time.Now()
last := start
pacer := newDeletionPacer(start, 100*MB, getInfo)
for _, h := range tc.history {
last = start.Add(time.Second * time.Duration(h[0]))
pacer.ReportDeletion(last, uint64(h[1]))
}
result := 1.0 / pacer.PacingDelay(last, 1*MB)
require.InDelta(t, tc.expected, result, 1e-7)
})
}
}
// TestDeletionPacerHistory tests the history helper by crosschecking Sum()
// against a naive implementation.
func TestDeletionPacerHistory(t *testing.T) {
type event struct {
time time.Time
// If report is 0, this event is a Sum(). Otherwise it is an Add().
report int64
}
numEvents := 1 + rand.Intn(200)
timeframe := time.Duration(1+rand.Intn(60*100)) * time.Second
events := make([]event, numEvents)
startTime := time.Now()
for i := range events {
events[i].time = startTime.Add(time.Duration(rand.Int63n(int64(timeframe))))
if rand.Intn(3) == 0 {
events[i].report = 0
} else {
events[i].report = int64(rand.Intn(100000))
}
}
slices.SortFunc(events, func(a, b event) int { return a.time.Compare(b.time) })
var h history
h.Init(startTime, timeframe)
// partialSums[i] := SUM_j<i events[j].report
partialSums := make([]int64, len(events)+1)
for i := range events {
partialSums[i+1] = partialSums[i] + events[i].report
}
for i, e := range events {
if e.report != 0 {
h.Add(e.time, e.report)
continue
}
result := h.Sum(e.time)
// getIdx returns the largest event index <= i that is before the cutoff
// time.
getIdx := func(cutoff time.Time) int {
for j := i; j >= 0; j-- {
if events[j].time.Before(cutoff) {
return j
}
}
return -1
}
// Sum all report values in the last timeframe, and see if recent events
// (allowing 1% error in the cutoff time) match the result.
a := getIdx(e.time.Add(-timeframe * (historyEpochs + 1) / historyEpochs))
b := getIdx(e.time.Add(-timeframe * (historyEpochs - 1) / historyEpochs))
found := false
for j := a; j <= b; j++ {
if partialSums[i+1]-partialSums[j+1] == result {
found = true
break
}
}
if !found {
t.Fatalf("incorrect Sum() result %d; %v", result, events[a+1:i+1])
}
}
}