-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathqueue_manager.go
More file actions
551 lines (483 loc) · 15.5 KB
/
queue_manager.go
File metadata and controls
551 lines (483 loc) · 15.5 KB
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
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
// Copyright 2013 The Prometheus Authors
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package stackdriver
import (
"math"
"sync"
"time"
"github.com/Stackdriver/stackdriver-prometheus-sidecar/tail"
"github.com/go-kit/kit/log"
"github.com/go-kit/kit/log/level"
"github.com/pkg/errors"
"github.com/prometheus/client_golang/prometheus"
"github.com/prometheus/prometheus/config"
"golang.org/x/time/rate"
monitoring_pb "google.golang.org/genproto/googleapis/monitoring/v3"
)
// String constants for instrumentation.
const (
namespace = "prometheus"
subsystem = "remote_storage"
queue = "queue"
// We track samples in/out and how long pushes take using an Exponentially
// Weighted Moving Average.
ewmaWeight = 0.2
shardUpdateDuration = 15 * time.Second
// Limit to 1 log event every 10s
logRateLimit = 0.1
logBurst = 10
)
var (
succeededSamplesTotal = prometheus.NewCounterVec(
prometheus.CounterOpts{
Namespace: namespace,
Subsystem: subsystem,
Name: "succeeded_samples_total",
Help: "Total number of samples successfully sent to remote storage.",
},
[]string{queue},
)
failedSamplesTotal = prometheus.NewCounterVec(
prometheus.CounterOpts{
Namespace: namespace,
Subsystem: subsystem,
Name: "failed_samples_total",
Help: "Total number of samples which failed on send to remote storage.",
},
[]string{queue},
)
sentBatchDuration = prometheus.NewHistogramVec(
prometheus.HistogramOpts{
Namespace: namespace,
Subsystem: subsystem,
Name: "sent_batch_duration_seconds",
Help: "Duration of sample batch send calls to the remote storage.",
Buckets: prometheus.DefBuckets,
},
[]string{queue},
)
queueLength = prometheus.NewGaugeVec(
prometheus.GaugeOpts{
Namespace: namespace,
Subsystem: subsystem,
Name: "queue_length",
Help: "The number of processed samples queued to be sent to the remote storage.",
},
[]string{queue},
)
queueCapacity = prometheus.NewGaugeVec(
prometheus.GaugeOpts{
Namespace: namespace,
Subsystem: subsystem,
Name: "queue_capacity",
Help: "The capacity of the queue of samples to be sent to the remote storage.",
},
[]string{queue},
)
numShards = prometheus.NewGaugeVec(
prometheus.GaugeOpts{
Namespace: namespace,
Subsystem: subsystem,
Name: "shards",
Help: "The number of shards used for parallel sending to the remote storage.",
},
[]string{queue},
)
)
func init() {
prometheus.MustRegister(succeededSamplesTotal)
prometheus.MustRegister(failedSamplesTotal)
prometheus.MustRegister(sentBatchDuration)
prometheus.MustRegister(queueLength)
prometheus.MustRegister(queueCapacity)
prometheus.MustRegister(numShards)
}
// StorageClient defines an interface for sending a batch of samples to an
// external timeseries database.
type StorageClient interface {
// Store stores the given metric families in the remote storage.
Store(*monitoring_pb.CreateTimeSeriesRequest) error
// Release the resources allocated by the client.
Close() error
}
type StorageClientFactory interface {
New() StorageClient
Name() string
}
// QueueManager manages a queue of samples to be sent to the Storage
// indicated by the provided StorageClient.
type QueueManager struct {
logger log.Logger
cfg config.QueueConfig
clientFactory StorageClientFactory
queueName string
logLimiter *rate.Limiter
shardsMtx sync.RWMutex
shards *shardCollection
numShards int
reshardChan chan int
quit chan struct{}
wg sync.WaitGroup
samplesIn, samplesOut, samplesOutDuration *ewmaRate
walSize, walOffset *ewmaRate
tailer *tail.Tailer
lastSize, lastOffset int
}
// NewQueueManager builds a new QueueManager.
func NewQueueManager(logger log.Logger, cfg config.QueueConfig, clientFactory StorageClientFactory, tailer *tail.Tailer) (*QueueManager, error) {
if logger == nil {
logger = log.NewNopLogger()
}
t := &QueueManager{
logger: logger,
cfg: cfg,
clientFactory: clientFactory,
queueName: clientFactory.Name(),
logLimiter: rate.NewLimiter(logRateLimit, logBurst),
numShards: 1,
reshardChan: make(chan int),
quit: make(chan struct{}),
samplesIn: newEWMARate(ewmaWeight, shardUpdateDuration),
samplesOut: newEWMARate(ewmaWeight, shardUpdateDuration),
samplesOutDuration: newEWMARate(ewmaWeight, shardUpdateDuration),
walSize: newEWMARate(ewmaWeight, shardUpdateDuration),
walOffset: newEWMARate(ewmaWeight, shardUpdateDuration),
tailer: tailer,
}
lastSize, err := tailer.Size()
if err != nil {
return nil, errors.Wrap(err, "get WAL size")
}
t.lastSize = lastSize
t.lastOffset = tailer.Offset()
t.shards = t.newShardCollection(t.numShards)
numShards.WithLabelValues(t.queueName).Set(float64(t.numShards))
queueCapacity.WithLabelValues(t.queueName).Set(float64(t.cfg.Capacity))
// Initialise counter labels to zero.
sentBatchDuration.WithLabelValues(t.queueName)
succeededSamplesTotal.WithLabelValues(t.queueName)
failedSamplesTotal.WithLabelValues(t.queueName)
return t, nil
}
// Append queues a sample to be sent to the Stackdriver API.
// Always returns nil.
func (t *QueueManager) Append(hash uint64, sample *monitoring_pb.TimeSeries) error {
queueLength.WithLabelValues(t.queueName).Inc()
t.shardsMtx.RLock()
t.shards.enqueue(hash, sample)
t.shardsMtx.RUnlock()
return nil
}
// Start the queue manager sending samples to the remote storage.
// Does not block.
func (t *QueueManager) Start() error {
t.wg.Add(2)
go t.updateShardsLoop()
go t.reshardLoop()
t.shardsMtx.Lock()
defer t.shardsMtx.Unlock()
t.shards.start()
return nil
}
// Stop stops sending samples to the remote storage and waits for pending
// sends to complete.
func (t *QueueManager) Stop() error {
level.Info(t.logger).Log("msg", "Stopping remote storage...")
close(t.quit)
t.wg.Wait()
t.shardsMtx.Lock()
defer t.shardsMtx.Unlock()
t.shards.stop()
level.Info(t.logger).Log("msg", "Remote storage stopped.")
return nil
}
func (t *QueueManager) updateShardsLoop() {
defer t.wg.Done()
ticker := time.NewTicker(shardUpdateDuration)
defer ticker.Stop()
for {
select {
case <-ticker.C:
t.calculateDesiredShards()
case <-t.quit:
return
}
}
}
func (t *QueueManager) calculateDesiredShards() {
// Get current wal size and offset but don't return on failure so we can
// always call tick() for all rates below.
wsz, err := t.tailer.Size()
if err != nil {
level.Error(t.logger).Log("msg", "get WAL size", "err", err)
}
woff := t.tailer.Offset()
t.walSize.incr(int64(wsz - t.lastSize))
t.walOffset.incr(int64(woff - t.lastOffset))
// The ewma rates are intialized with a specific interval at which we have to guarantee that
// tick is called for each.
// Since the current function is called every interval, this is the point where we do this
// for all rates at once. This ensures they are sensical to use for comparisons and computations
// with each other.
t.samplesIn.tick()
t.samplesOut.tick()
t.samplesOutDuration.tick()
t.walSize.tick()
t.walOffset.tick()
if err != nil {
return
}
var (
sizeRate = t.walSize.rate()
offsetRate = t.walOffset.rate()
samplesIn = t.samplesIn.rate()
samplesOut = t.samplesOut.rate()
samplesOutDuration = t.samplesOutDuration.rate()
)
t.lastSize = wsz
t.lastOffset = woff
if samplesOut == 0 {
return
}
// We compute desired amount of shards based on the time required to delivered a sample.
// We multiply by a weight of 1.5 to overprovision our number of shards. This ensures
// that if we can send more samples, the picked shard count has capacity for them.
// This ensures that we have a feedback loop that keeps growing shards on subsequent
// calculations until further increase does not increase the throughput anymore.
timePerSample := samplesOutDuration / samplesOut
desiredShards := (timePerSample / float64(time.Second)) * 1.5 * samplesIn
// If the WAL grows faster than we can process it, we are about to build up a backlog.
// We increase the shards proportionally to get the processing and growth rate to the same level.
// If we are processing the WAL faster than it grows, we are already working down a backlog
// and increase throughput as well.
if sizeRate >= offsetRate {
desiredShards *= sizeRate / offsetRate
} else {
desiredShards *= 1 + (1-(sizeRate/offsetRate))*1.5
}
level.Debug(t.logger).Log("msg", "QueueManager.calculateDesiredShards", "samplesIn", samplesIn,
"samplesOut", samplesOut, "samplesOutDuration", samplesOutDuration, "timePerSample", timePerSample,
"sizeRate", sizeRate, "offsetRate", offsetRate, "desiredShards", desiredShards)
// Only change number of shards if the change up or down is significant enough
// to justifty the caused disruption.
// We are more eager to increase the number of shards than to decrease it.
var (
lowerBound = float64(t.numShards) * 0.7
upperBound = float64(t.numShards) * 1.1
)
level.Debug(t.logger).Log("msg", "QueueManager.updateShardsLoop",
"lowerBound", lowerBound, "desiredShards", desiredShards, "upperBound", upperBound)
if lowerBound <= desiredShards && desiredShards <= upperBound {
return
}
numShards := int(math.Ceil(desiredShards))
if numShards > t.cfg.MaxShards {
numShards = t.cfg.MaxShards
} else if numShards < 1 {
numShards = 1
}
if numShards == t.numShards {
return
}
// Resharding can take some time, and we want this loop
// to stay close to shardUpdateDuration.
select {
case t.reshardChan <- numShards:
level.Debug(t.logger).Log("msg", "Remote storage resharding", "from", t.numShards, "to", numShards)
t.numShards = numShards
default:
level.Debug(t.logger).Log("msg", "Currently resharding, skipping", "to", numShards)
}
}
func (t *QueueManager) reshardLoop() {
defer t.wg.Done()
for {
select {
case numShards := <-t.reshardChan:
t.reshard(numShards)
case <-t.quit:
return
}
}
}
func (t *QueueManager) reshard(n int) {
numShards.WithLabelValues(t.queueName).Set(float64(n))
t.shardsMtx.Lock()
newShards := t.newShardCollection(n)
oldShards := t.shards
t.shards = newShards
oldShards.stop()
t.shardsMtx.Unlock()
// We start the newShards after we have stopped (the therefore completely
// flushed) the oldShards, to guarantee we only every deliver samples in
// order.
newShards.start()
}
type queueEntry struct {
hash uint64
sample *monitoring_pb.TimeSeries
}
type shard struct {
queue chan queueEntry
// A reusable cache of samples that were already seen in a sample batch.
seen map[uint64]struct{}
}
func (s *shard) resetSeen() {
for k := range s.seen {
delete(s.seen, k)
}
}
func newShard(cfg config.QueueConfig) shard {
return shard{
queue: make(chan queueEntry, cfg.Capacity),
seen: map[uint64]struct{}{},
}
}
type shardCollection struct {
qm *QueueManager
shards []shard
done chan struct{}
wg sync.WaitGroup
}
func (t *QueueManager) newShardCollection(numShards int) *shardCollection {
shards := make([]shard, numShards)
for i := 0; i < numShards; i++ {
shards[i] = newShard(t.cfg)
}
s := &shardCollection{
qm: t,
shards: shards,
done: make(chan struct{}),
}
s.wg.Add(numShards)
return s
}
func (s *shardCollection) start() {
for i := range s.shards {
go s.runShard(i)
}
}
func (s *shardCollection) stop() {
for _, shard := range s.shards {
close(shard.queue)
}
s.wg.Wait()
level.Debug(s.qm.logger).Log("msg", "Stopped resharding")
}
func (s *shardCollection) enqueue(hash uint64, sample *monitoring_pb.TimeSeries) {
s.qm.samplesIn.incr(1)
shardIndex := hash % uint64(len(s.shards))
s.shards[shardIndex].queue <- queueEntry{sample: sample, hash: hash}
}
func (s *shardCollection) runShard(i int) {
defer s.wg.Done()
client := s.qm.clientFactory.New()
defer client.Close()
shard := s.shards[i]
// Send batches of at most MaxSamplesPerSend samples to the remote storage.
// If we have fewer samples than that, flush them out after a deadline
// anyways.
pendingSamples := make([]*monitoring_pb.TimeSeries, 0, s.qm.cfg.MaxSamplesPerSend)
// Fingerprint of time series contained in pendingSamples. Gets reset
// whenever samples are extracted from pendingSamples.
shard.resetSeen()
timer := time.NewTimer(time.Duration(s.qm.cfg.BatchSendDeadline))
stop := func() {
if !timer.Stop() {
select {
case <-timer.C:
default:
}
}
}
defer stop()
for {
select {
case entry, ok := <-shard.queue:
fp, sample := entry.hash, entry.sample
if !ok {
if len(pendingSamples) > 0 {
s.sendSamples(client, pendingSamples)
}
return
}
queueLength.WithLabelValues(s.qm.queueName).Dec()
// If pendingSamples contains a point for the
// incoming time series, send all pending points
// to Stackdriver, and start a new list. This
// prevents adding two points for the same time
// series to a single request, which Stackdriver
// rejects.
_, seen := shard.seen[fp]
if !seen {
pendingSamples = append(pendingSamples, sample)
shard.seen[fp] = struct{}{}
}
if len(pendingSamples) >= s.qm.cfg.MaxSamplesPerSend || seen {
s.sendSamples(client, pendingSamples)
pendingSamples = pendingSamples[:0]
shard.resetSeen()
stop()
timer.Reset(time.Duration(s.qm.cfg.BatchSendDeadline))
}
if seen {
pendingSamples = append(pendingSamples, sample)
shard.seen[fp] = struct{}{}
}
case <-timer.C:
if len(pendingSamples) > 0 {
s.sendSamples(client, pendingSamples)
pendingSamples = pendingSamples[:0]
shard.resetSeen()
}
timer.Reset(time.Duration(s.qm.cfg.BatchSendDeadline))
}
}
}
func (s *shardCollection) sendSamples(client StorageClient, samples []*monitoring_pb.TimeSeries) {
begin := time.Now()
for i := 0; i < len(samples); i += MaxTimeseriesesPerRequest {
end := i + MaxTimeseriesesPerRequest
if end > len(samples) {
end = len(samples)
}
s.sendSamplesWithBackoff(client, samples[i:end])
}
// These counters are used to calculate the dynamic sharding, and as such
// should be maintained irrespective of success or failure.
s.qm.samplesOut.incr(int64(len(samples)))
s.qm.samplesOutDuration.incr(int64(time.Since(begin)))
}
// sendSamples to the remote storage with backoff for recoverable errors.
func (s *shardCollection) sendSamplesWithBackoff(client StorageClient, samples []*monitoring_pb.TimeSeries) {
backoff := s.qm.cfg.MinBackoff
for {
begin := time.Now()
err := client.Store(&monitoring_pb.CreateTimeSeriesRequest{TimeSeries: samples})
sentBatchDuration.WithLabelValues(s.qm.queueName).Observe(time.Since(begin).Seconds())
if err == nil {
succeededSamplesTotal.WithLabelValues(s.qm.queueName).Add(float64(len(samples)))
return
}
if _, ok := err.(recoverableError); !ok {
level.Warn(s.qm.logger).Log("msg", "Unrecoverable error sending samples to remote storage", "err", err)
break
}
time.Sleep(time.Duration(backoff))
backoff = backoff * 2
if backoff > s.qm.cfg.MaxBackoff {
backoff = s.qm.cfg.MaxBackoff
}
}
failedSamplesTotal.WithLabelValues(s.qm.queueName).Add(float64(len(samples)))
}