-
Notifications
You must be signed in to change notification settings - Fork 3.9k
/
Copy pathsplit_queue.go
287 lines (254 loc) · 9.84 KB
/
split_queue.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
// Copyright 2015 The Cockroach Authors.
//
// Use of this software is governed by the Business Source License
// included in the file licenses/BSL.txt.
//
// As of the Change Date specified in that file, in accordance with
// the Business Source License, use of this software will be governed
// by the Apache License, Version 2.0, included in the file
// licenses/APL.txt.
package kvserver
import (
"context"
"fmt"
"time"
"github.com/cockroachdb/cockroach/pkg/kv"
"github.com/cockroachdb/cockroach/pkg/kv/kvserver/kvserverbase"
"github.com/cockroachdb/cockroach/pkg/roachpb"
"github.com/cockroachdb/cockroach/pkg/server/telemetry"
"github.com/cockroachdb/cockroach/pkg/spanconfig"
"github.com/cockroachdb/cockroach/pkg/storage/enginepb"
"github.com/cockroachdb/cockroach/pkg/util/hlc"
"github.com/cockroachdb/cockroach/pkg/util/humanizeutil"
"github.com/cockroachdb/cockroach/pkg/util/log"
"github.com/cockroachdb/cockroach/pkg/util/timeutil"
"github.com/cockroachdb/errors"
)
const (
// splitQueueTimerDuration is the duration between splits of queued ranges.
splitQueueTimerDuration = 0 // zero duration to process splits greedily.
// splitQueuePurgatoryCheckInterval is the interval at which replicas in
// purgatory make split attempts. Purgatory is used by the splitQueue to
// store ranges that are large enough to require a split but are
// unsplittable because they do not contain a suitable split key. Purgatory
// prevents them from repeatedly attempting to split at an unbounded rate.
splitQueuePurgatoryCheckInterval = 1 * time.Minute
// splits should be relatively isolated, other than requiring expensive
// RocksDB scans over part of the splitting range to recompute stats. We
// allow a limitted number of splits to be processed at once.
splitQueueConcurrency = 4
)
// splitQueue manages a queue of ranges slated to be split due to size
// or along intersecting zone config boundaries.
type splitQueue struct {
*baseQueue
db *kv.DB
purgChan <-chan time.Time
// loadBasedCount counts the load-based splits performed by the queue.
loadBasedCount telemetry.Counter
}
var _ queueImpl = &splitQueue{}
// newSplitQueue returns a new instance of splitQueue.
func newSplitQueue(store *Store, db *kv.DB) *splitQueue {
var purgChan <-chan time.Time
if c := store.TestingKnobs().SplitQueuePurgatoryChan; c != nil {
purgChan = c
} else {
purgTicker := time.NewTicker(splitQueuePurgatoryCheckInterval)
purgChan = purgTicker.C
}
sq := &splitQueue{
db: db,
purgChan: purgChan,
loadBasedCount: telemetry.GetCounter("kv.split.load"),
}
sq.baseQueue = newBaseQueue(
"split", sq, store,
queueConfig{
maxSize: defaultQueueMaxSize,
maxConcurrency: splitQueueConcurrency,
needsLease: true,
needsSystemConfig: true,
acceptsUnsplitRanges: true,
successes: store.metrics.SplitQueueSuccesses,
failures: store.metrics.SplitQueueFailures,
pending: store.metrics.SplitQueuePending,
processingNanos: store.metrics.SplitQueueProcessingNanos,
purgatory: store.metrics.SplitQueuePurgatory,
},
)
return sq
}
func shouldSplitRange(
ctx context.Context,
desc *roachpb.RangeDescriptor,
ms enginepb.MVCCStats,
maxBytes int64,
shouldBackpressureWrites bool,
confReader spanconfig.StoreReader,
) (shouldQ bool, priority float64) {
if confReader.NeedsSplit(ctx, desc.StartKey, desc.EndKey) {
// Set priority to 1 in the event the range is split by zone configs.
priority = 1
shouldQ = true
}
// Add priority based on the size of range compared to the max
// size for the zone it's in.
if ratio := float64(ms.Total()) / float64(maxBytes); ratio > 1 {
priority += ratio
shouldQ = true
}
// additionalPriorityDueToBackpressure is a mechanism to prioritize splitting
// ranges which will actively backpressure writes.
//
// NB: This additional weight is totally arbitrary. The priority in the split
// queue is usually 1 plus the ratio of the current size over the max size.
// When a range is much larger than it is allowed to be given the
// backpressureRangeSizeMultiplier and the zone config, backpressure is
// not going to be applied because of the backpressureByteTolerance (see the
// comment there for more details). However, when the range size is close to
// the limit, we will backpressure. We strongly prefer to split over
// backpressure.
const additionalPriorityDueToBackpressure = 50
if shouldQ && shouldBackpressureWrites {
priority += additionalPriorityDueToBackpressure
}
return shouldQ, priority
}
// shouldQueue determines whether a range should be queued for
// splitting. This is true if the range is intersected by a zone config
// prefix or if the range's size in bytes exceeds the limit for the zone,
// or if the range has too much load on it.
func (sq *splitQueue) shouldQueue(
ctx context.Context, now hlc.ClockTimestamp, repl *Replica, confReader spanconfig.StoreReader,
) (shouldQ bool, priority float64) {
shouldQ, priority = shouldSplitRange(ctx, repl.Desc(), repl.GetMVCCStats(),
repl.GetMaxBytes(), repl.shouldBackpressureWrites(), confReader)
if !shouldQ && repl.SplitByLoadEnabled() {
if splitKey := repl.loadBasedSplitter.MaybeSplitKey(timeutil.Now()); splitKey != nil {
shouldQ, priority = true, 1.0 // default priority
}
}
return shouldQ, priority
}
// unsplittableRangeError indicates that a split attempt failed because a no
// suitable split key could be found.
type unsplittableRangeError struct{}
func (unsplittableRangeError) Error() string { return "could not find valid split key" }
func (unsplittableRangeError) PurgatoryErrorMarker() {}
var _ PurgatoryError = unsplittableRangeError{}
// process synchronously invokes admin split for each proposed split key.
func (sq *splitQueue) process(
ctx context.Context, r *Replica, confReader spanconfig.StoreReader,
) (processed bool, err error) {
processed, err = sq.processAttempt(ctx, r, confReader)
if errors.HasType(err, (*roachpb.ConditionFailedError)(nil)) {
// ConditionFailedErrors are an expected outcome for range split
// attempts because splits can race with other descriptor modifications.
// On seeing a ConditionFailedError, don't return an error and enqueue
// this replica again in case it still needs to be split.
log.Infof(ctx, "split saw concurrent descriptor modification; maybe retrying; err: %v", err)
sq.MaybeAddAsync(ctx, r, sq.store.Clock().NowAsClockTimestamp())
return false, nil
}
return processed, err
}
func (sq *splitQueue) processAttempt(
ctx context.Context, r *Replica, confReader spanconfig.StoreReader,
) (processed bool, err error) {
desc := r.Desc()
// First handle the case of splitting due to span config maps.
if splitKey := confReader.ComputeSplitKey(ctx, desc.StartKey, desc.EndKey); splitKey != nil {
if _, err := r.adminSplitWithDescriptor(
ctx,
roachpb.AdminSplitRequest{
RequestHeader: roachpb.RequestHeader{
Key: splitKey.AsRawKey(),
},
SplitKey: splitKey.AsRawKey(),
ExpirationTime: hlc.Timestamp{},
},
desc,
false, /* delayable */
"span config",
); err != nil {
return false, errors.Wrapf(err, "unable to split %s at key %q", r, splitKey)
}
return true, nil
}
// Next handle case of splitting due to size. Note that we don't perform
// size-based splitting if maxBytes is 0 (happens in certain test
// situations).
size := r.GetMVCCStats().Total()
maxBytes := r.GetMaxBytes()
if maxBytes > 0 && float64(size)/float64(maxBytes) > 1 {
_, err := r.adminSplitWithDescriptor(
ctx,
roachpb.AdminSplitRequest{},
desc,
false, /* delayable */
fmt.Sprintf("%s above threshold size %s", humanizeutil.IBytes(size), humanizeutil.IBytes(maxBytes)),
)
return err == nil, err
}
now := timeutil.Now()
if splitByLoadKey := r.loadBasedSplitter.MaybeSplitKey(now); splitByLoadKey != nil {
batchHandledQPS, _ := r.QueriesPerSecond()
raftAppliedQPS := r.WritesPerSecond()
splitQPS := r.loadBasedSplitter.LastQPS(now)
reason := fmt.Sprintf(
"load at key %s (%.2f splitQPS, %.2f batches/sec, %.2f raft mutations/sec)",
splitByLoadKey,
splitQPS,
batchHandledQPS,
raftAppliedQPS,
)
// Add a small delay (default of 5m) to any subsequent attempt to merge
// this range split away. While the merge queue does takes into account
// load to avoids merging ranges that would be immediately re-split due
// to load-based splitting, it did not used to take into account historical
// load. This has since been fixed by #64201, but we keep this small manual
// delay for compatibility reasons.
// TODO(nvanbenschoten): remove this entirely in v22.1 when it is no longer
// needed.
var expTime hlc.Timestamp
if expDelay := kvserverbase.SplitByLoadMergeDelay.Get(&sq.store.cfg.Settings.SV); expDelay > 0 {
expTime = sq.store.Clock().Now().Add(expDelay.Nanoseconds(), 0)
}
if _, pErr := r.adminSplitWithDescriptor(
ctx,
roachpb.AdminSplitRequest{
RequestHeader: roachpb.RequestHeader{
Key: splitByLoadKey,
},
SplitKey: splitByLoadKey,
ExpirationTime: expTime,
},
desc,
false, /* delayable */
reason,
); pErr != nil {
return false, errors.Wrapf(pErr, "unable to split %s at key %q", r, splitByLoadKey)
}
telemetry.Inc(sq.loadBasedCount)
// Reset the splitter now that the bounds of the range changed.
r.loadBasedSplitter.Reset(sq.store.Clock().PhysicalTime())
return true, nil
}
return false, nil
}
func (*splitQueue) postProcessScheduled(
ctx context.Context, replica replicaInQueue, priority float64,
) {
}
// timer returns interval between processing successive queued splits.
func (*splitQueue) timer(_ time.Duration) time.Duration {
return splitQueueTimerDuration
}
// purgatoryChan returns the split queue's purgatory channel.
func (sq *splitQueue) purgatoryChan() <-chan time.Time {
return sq.purgChan
}
func (sq *splitQueue) updateChan() <-chan time.Time {
return nil
}