forked from grafana/tempo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlive_store_background.go
More file actions
363 lines (296 loc) · 9.79 KB
/
live_store_background.go
File metadata and controls
363 lines (296 loc) · 9.79 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
package livestore
import (
"encoding/json"
"errors"
"fmt"
"math/rand/v2"
"time"
"github.com/go-kit/log/level"
"github.com/google/uuid"
"github.com/grafana/tempo/pkg/util"
"github.com/grafana/tempo/tempodb/backend"
"github.com/grafana/tempo/tempodb/encoding"
"go.opentelemetry.io/otel/attribute"
oteltrace "go.opentelemetry.io/otel/trace"
)
const (
defaultInitialBackoff = 30 * time.Second
defaultMaxBackoff = 120 * time.Second
maxFlushAttempts = 10
)
type completeOp struct {
tenantID string
blockID uuid.UUID
at time.Time
attempts int
bo time.Duration
maxBackoff time.Duration
}
func (o *completeOp) Key() string { return o.tenantID + "/" + o.blockID.String() }
func (o *completeOp) Priority() int64 { return -o.at.Unix() }
func (o *completeOp) backoff() time.Duration {
o.bo *= 2
if o.bo > o.maxBackoff {
o.bo = o.maxBackoff
}
return o.bo
}
func (s *LiveStore) startAllBackgroundProcesses() {
if s.cfg.holdAllBackgroundProcesses {
level.Warn(s.logger).Log("msg", "live store has been started with all background processes suspended! this is meant for testing only")
return
}
close(s.startupComplete)
}
func (s *LiveStore) stopAllBackgroundProcesses() {
s.cancel() // this will cause the per tenant background processes to complete
s.completeQueues.Stop() // this will cause the global complete loop by preventing additional enqueues
s.wg.Wait()
}
func (s *LiveStore) runInBackground(fn func()) {
s.wg.Add(1)
go func() {
defer s.wg.Done()
select {
case <-s.startupComplete:
case <-s.ctx.Done():
return
}
fn()
}()
}
func (s *LiveStore) globalCompleteLoop(idx int) {
for {
op := s.completeQueues.Dequeue(idx)
if op == nil {
return // queue is closed
}
op.attempts++
if op.attempts > maxFlushAttempts {
level.Error(s.logger).Log("msg", "failed to complete operation", "tenant", op.tenantID, "block", op.blockID, "attempts", op.attempts)
observeFailedOp(op)
continue
}
if err := s.processCompleteOp(op); err != nil {
return
}
}
}
// processCompleteOp completes a single block. Returns an error if global loop should exit.
func (s *LiveStore) processCompleteOp(op *completeOp) error {
ctx, span := tracer.Start(s.ctx, "LiveStore.processCompleteOp",
oteltrace.WithAttributes(
attribute.String("tenant", op.tenantID),
attribute.String("blockID", op.blockID.String()),
attribute.Int("attempt", op.attempts),
))
defer span.End()
start := time.Now()
inst, err := s.getOrCreateInstance(op.tenantID)
if err != nil {
level.Error(s.logger).Log("msg", "failed to retrieve instance for completion", "tenant", op.tenantID, "err", err)
observeFailedOp(op)
span.RecordError(err)
return err
}
// If the context is cancelled (shutdown), abandon the completion. The WAL block remains on
// disk and will be re-enqueued by reloadBlocks() on next startup.
if ctx.Err() != nil {
level.Info(s.logger).Log("msg", "abandoning WAL block completion on shutdown, will replay on restart", "tenant", op.tenantID, "block", op.blockID)
s.completeQueues.Clear(op)
return nil
}
err = inst.completeBlock(ctx, op.blockID)
metricCompletionDuration.Observe(time.Since(start).Seconds())
if err == nil {
metricBlocksCompleted.Inc()
s.completeQueues.Clear(op)
return nil
}
level.Error(s.logger).Log("msg", "failed to complete block", "tenant", op.tenantID, "block", op.blockID, "err", err)
observeFailedOp(op)
span.RecordError(err)
delay := op.backoff()
op.at = time.Now().Add(delay)
metricCompletionRetries.Inc()
go func() {
time.Sleep(delay)
if err := s.requeueOp(op); err != nil {
_ = level.Error(s.logger).Log("msg", "failed to requeue block for flushing", "tenant", op.tenantID, "block", op.blockID, "err", err)
}
}()
return nil // do not exit global loop
}
func (s *LiveStore) perTenantCutToWalLoop(instance *instance) {
// ticker
ticker := time.NewTicker(s.cfg.InstanceFlushPeriod)
defer ticker.Stop()
for {
select {
case <-ticker.C:
s.cutOneInstanceToWal(s.ctx, instance, false)
case <-s.ctx.Done():
return
}
}
}
func (s *LiveStore) perTenantCleanupLoop(inst *instance) {
// ticker
ticker := time.NewTicker(s.cfg.InstanceCleanupPeriod)
defer ticker.Stop()
for {
select {
case <-ticker.C:
// dump any blocks that have been flushed for a while
err := inst.deleteOldBlocks()
if err != nil {
level.Error(s.logger).Log("msg", "failed to delete old blocks", "err", err)
}
case <-s.ctx.Done():
return
}
}
}
func (s *LiveStore) enqueueCompleteOp(tenantID string, blockID uuid.UUID, jitter bool) error {
op := &completeOp{
tenantID: tenantID,
blockID: blockID,
// Initial priority and backoff
at: time.Now(),
bo: s.cfg.initialBackoff,
maxBackoff: s.cfg.maxBackoff,
}
if jitter {
return s.enqueueOpWithJitter(op)
}
return s.enqueueOp(op)
}
func (s *LiveStore) enqueueOpWithJitter(op *completeOp) error {
delay := time.Duration(rand.Int64N(10_000) * int64(time.Millisecond)) //gosec:disable G404 — It doesn't require strong randomness
go func() {
time.Sleep(delay)
if err := s.enqueueOp(op); err != nil {
level.Error(s.logger).Log("msg", "failed to enqueue block", "tenant", op.tenantID, "block", op.blockID, "err", err)
}
}()
return nil
}
func (s *LiveStore) enqueueOp(op *completeOp) error {
if s.completeQueues.IsStopped() {
return fmt.Errorf("complete queues are stopped, cannot enqueue operation for block %s", op.blockID.String())
}
level.Debug(s.logger).Log("msg", "enqueueing complete op", "tenant", op.tenantID, "block", op.blockID, "attempts", op.attempts)
return s.completeQueues.Enqueue(op)
}
func (s *LiveStore) requeueOp(op *completeOp) error {
if s.completeQueues.IsStopped() {
return fmt.Errorf("complete queues are stopped, cannot requeue operation for block %s", op.blockID.String())
}
level.Debug(s.logger).Log("msg", "requeueing complete op", "tenant", op.tenantID, "block", op.blockID, "attempts", op.attempts)
return s.completeQueues.Requeue(op)
}
func observeFailedOp(op *completeOp) {
metricFailedCompletions.Inc()
if op.attempts > 1 {
metricCompletionFailedRetries.Inc()
}
}
func (s *LiveStore) reloadBlocks() error {
// ------------------------------------
// wal blocks
// ------------------------------------
level.Info(s.logger).Log("msg", "reloading wal blocks")
walBlocks, err := s.wal.RescanBlocks(0, s.logger)
if err != nil {
return fmt.Errorf("failed to rescan wal blocks: %w", err)
}
for _, blk := range walBlocks {
err := func() error {
meta := blk.BlockMeta()
inst, err := s.getOrCreateInstance(meta.TenantID)
if err != nil {
return fmt.Errorf("failed to get or create instance for tenant %s: %w", meta.TenantID, err)
}
inst.blocksMtx.Lock()
defer inst.blocksMtx.Unlock()
level.Info(s.logger).Log("msg", "reloaded wal block", "block", meta.BlockID.String())
inst.walBlocks[(uuid.UUID)(meta.BlockID)] = blk
level.Info(s.logger).Log("msg", "queueing replayed wal block for completion", "block", meta.BlockID.String(), "size", blk.DataLength())
if err := s.enqueueCompleteOp(meta.TenantID, uuid.UUID(meta.BlockID), true); err != nil {
return fmt.Errorf("failed to enqueue wal block for completion for tenant %s: %w", meta.TenantID, err)
}
level.Info(s.logger).Log("msg", "reloaded wal blocks", "tenant", inst.tenantID, "count", len(inst.walBlocks))
return nil
}()
if err != nil {
return err
}
}
level.Info(s.logger).Log("msg", "wal blocks to complete at startup", "count", len(walBlocks))
// ------------------------------------
// Complete blocks
// ------------------------------------
var (
ctx = s.ctx
l = s.wal.LocalBackend()
r = backend.NewReader(l)
)
tenants, err := r.Tenants(ctx)
if err != nil {
return fmt.Errorf("failed to get local tenants: %w", err)
}
for _, tenant := range tenants {
ids, _, err := r.Blocks(ctx, tenant)
if err != nil {
return fmt.Errorf("failed to get local blocks for tenant %s: %w", tenant, err)
}
level.Info(s.logger).Log("msg", "reloading complete blocks", "tenant", tenant, "count", len(ids))
for _, id := range ids {
level.Info(s.logger).Log("msg", "reloading complete block", "block", id.String())
meta, err := r.BlockMeta(ctx, id, tenant)
// delete blocks that do not have a meta or a corrupt meta
var clearBlock bool
if err != nil {
var vv *json.SyntaxError
if errors.Is(err, backend.ErrDoesNotExist) || errors.As(err, &vv) {
clearBlock = true
}
}
if clearBlock {
level.Info(s.logger).Log("msg", "clearing block", "block", id.String(), "err", err)
// Partially written block, delete and continue
err = l.ClearBlock(id, tenant)
if err != nil {
level.Error(s.logger).Log("msg", "failed to clear partially written block during replay", "err", err)
}
continue
}
if err != nil {
return fmt.Errorf("failed to get block meta for block %s in tenant %s: %w", id.String(), tenant, err)
}
blk, err := encoding.OpenBlock(meta, r)
if err != nil {
return fmt.Errorf("failed to open block %s in tenant %s: %w", id.String(), tenant, err)
}
err = blk.Validate(ctx)
if err != nil && !errors.Is(err, util.ErrUnsupported) {
level.Error(s.logger).Log("msg", "local block failed validation, dropping", "block", id.String(), "error", err)
err = l.ClearBlock(id, tenant)
if err != nil {
level.Error(s.logger).Log("msg", "failed to clear invalid block during replay", "err", err)
}
continue
}
level.Info(s.logger).Log("msg", "reloaded complete block", "block", id.String())
lb := NewLocalBlock(ctx, blk, l)
inst, err := s.getOrCreateInstance(tenant)
if err != nil {
return fmt.Errorf("failed to get or create instance for tenant %s during complete block reload: %w", tenant, err)
}
inst.blocksMtx.Lock()
inst.completeBlocks[id] = lb
inst.blocksMtx.Unlock()
}
}
return nil
}