-
Notifications
You must be signed in to change notification settings - Fork 2.1k
/
fetcher.go
577 lines (488 loc) · 16.7 KB
/
fetcher.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
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
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
// Copyright (c) The Thanos Authors.
// Licensed under the Apache License 2.0.
package block
import (
"context"
"encoding/json"
"io/ioutil"
"os"
"path"
"path/filepath"
"sort"
"sync"
"time"
"github.com/go-kit/kit/log"
"github.com/go-kit/kit/log/level"
"github.com/oklog/ulid"
"github.com/pkg/errors"
"github.com/prometheus/client_golang/prometheus"
"github.com/prometheus/prometheus/pkg/labels"
"github.com/prometheus/prometheus/pkg/relabel"
"github.com/prometheus/prometheus/tsdb"
tsdberrors "github.com/prometheus/prometheus/tsdb/errors"
"github.com/prometheus/prometheus/tsdb/fileutil"
"github.com/thanos-io/thanos/pkg/block/metadata"
"github.com/thanos-io/thanos/pkg/extprom"
"github.com/thanos-io/thanos/pkg/model"
"github.com/thanos-io/thanos/pkg/objstore"
"github.com/thanos-io/thanos/pkg/runutil"
)
type syncMetrics struct {
syncs prometheus.Counter
syncFailures prometheus.Counter
syncDuration prometheus.Histogram
synced *extprom.TxGaugeVec
}
const (
syncMetricSubSys = "blocks_meta"
corruptedMeta = "corrupted-meta-json"
noMeta = "no-meta-json"
loadedMeta = "loaded"
failedMeta = "failed"
// Filter's label values.
labelExcludedMeta = "label-excluded"
timeExcludedMeta = "time-excluded"
tooFreshMeta = "too-fresh"
duplicateMeta = "duplicate"
)
func newSyncMetrics(r prometheus.Registerer) *syncMetrics {
var m syncMetrics
m.syncs = prometheus.NewCounter(prometheus.CounterOpts{
Subsystem: syncMetricSubSys,
Name: "syncs_total",
Help: "Total blocks metadata synchronization attempts",
})
m.syncFailures = prometheus.NewCounter(prometheus.CounterOpts{
Subsystem: syncMetricSubSys,
Name: "sync_failures_total",
Help: "Total blocks metadata synchronization failures",
})
m.syncDuration = prometheus.NewHistogram(prometheus.HistogramOpts{
Subsystem: syncMetricSubSys,
Name: "sync_duration_seconds",
Help: "Duration of the blocks metadata synchronization in seconds",
Buckets: []float64{0.01, 1, 10, 100, 1000},
})
m.synced = extprom.NewTxGaugeVec(prometheus.GaugeOpts{
Subsystem: syncMetricSubSys,
Name: "synced",
Help: "Number of block metadata synced",
},
[]string{"state"},
[]string{corruptedMeta},
[]string{noMeta},
[]string{loadedMeta},
[]string{tooFreshMeta},
[]string{failedMeta},
[]string{labelExcludedMeta},
[]string{timeExcludedMeta},
[]string{duplicateMeta},
)
if r != nil {
r.MustRegister(
m.syncs,
m.syncFailures,
m.syncDuration,
m.synced,
)
}
return &m
}
type MetadataFetcher interface {
Fetch(ctx context.Context) (metas map[ulid.ULID]*metadata.Meta, partial map[ulid.ULID]error, err error)
}
type GaugeLabeled interface {
WithLabelValues(lvs ...string) prometheus.Gauge
}
type MetaFetcherFilter func(metas map[ulid.ULID]*metadata.Meta, synced GaugeLabeled, incompleteView bool)
// MetaFetcher is a struct that synchronizes filtered metadata of all block in the object storage with the local state.
type MetaFetcher struct {
logger log.Logger
concurrency int
bkt objstore.BucketReader
// Optional local directory to cache meta.json files.
cacheDir string
metrics *syncMetrics
filters []MetaFetcherFilter
cached map[ulid.ULID]*metadata.Meta
}
// NewMetaFetcher constructs MetaFetcher.
func NewMetaFetcher(logger log.Logger, concurrency int, bkt objstore.BucketReader, dir string, r prometheus.Registerer, filters ...MetaFetcherFilter) (*MetaFetcher, error) {
if logger == nil {
logger = log.NewNopLogger()
}
cacheDir := ""
if dir != "" {
cacheDir = filepath.Join(dir, "meta-syncer")
if err := os.MkdirAll(cacheDir, os.ModePerm); err != nil {
return nil, err
}
}
return &MetaFetcher{
logger: log.With(logger, "component", "block.MetaFetcher"),
concurrency: concurrency,
bkt: bkt,
cacheDir: cacheDir,
metrics: newSyncMetrics(r),
filters: filters,
cached: map[ulid.ULID]*metadata.Meta{},
}, nil
}
var (
ErrorSyncMetaNotFound = errors.New("meta.json not found")
ErrorSyncMetaCorrupted = errors.New("meta.json corrupted")
)
// loadMeta returns metadata from object storage or error.
// It returns `ErrorSyncMetaNotFound` and `ErrorSyncMetaCorrupted` sentinel errors in those cases.
func (s *MetaFetcher) loadMeta(ctx context.Context, id ulid.ULID) (*metadata.Meta, error) {
var (
metaFile = path.Join(id.String(), MetaFilename)
cachedBlockDir = filepath.Join(s.cacheDir, id.String())
)
// TODO(bwplotka): If that causes problems (obj store rate limits), add longer ttl to cached items.
// For 1y and 100 block sources this generates ~1.5-3k HEAD RPM. AWS handles 330k RPM per prefix.
// TODO(bwplotka): Consider filtering by consistency delay here (can't do until compactor healthyOverride work).
ok, err := s.bkt.Exists(ctx, metaFile)
if err != nil {
return nil, errors.Wrapf(err, "meta.json file exists: %v", metaFile)
}
if !ok {
return nil, ErrorSyncMetaNotFound
}
if m, seen := s.cached[id]; seen {
return m, nil
}
// Best effort load from local dir.
if s.cacheDir != "" {
m, err := metadata.Read(cachedBlockDir)
if err == nil {
return m, nil
}
if !errors.Is(err, os.ErrNotExist) {
level.Warn(s.logger).Log("msg", "best effort read of the local meta.json failed; removing cached block dir", "dir", cachedBlockDir, "err", err)
if err := os.RemoveAll(cachedBlockDir); err != nil {
level.Warn(s.logger).Log("msg", "best effort remove of cached dir failed; ignoring", "dir", cachedBlockDir, "err", err)
}
}
}
r, err := s.bkt.Get(ctx, metaFile)
if s.bkt.IsObjNotFoundErr(err) {
// Meta.json was deleted between bkt.Exists and here.
return nil, errors.Wrapf(ErrorSyncMetaNotFound, "%v", err)
}
if err != nil {
return nil, errors.Wrapf(err, "get meta file: %v", metaFile)
}
defer runutil.CloseWithLogOnErr(s.logger, r, "close bkt meta get")
metaContent, err := ioutil.ReadAll(r)
if err != nil {
return nil, errors.Wrapf(err, "read meta file: %v", metaFile)
}
m := &metadata.Meta{}
if err := json.Unmarshal(metaContent, m); err != nil {
return nil, errors.Wrapf(ErrorSyncMetaCorrupted, "meta.json %v unmarshal: %v", metaFile, err)
}
if m.Version != metadata.MetaVersion1 {
return nil, errors.Errorf("unexpected meta file: %s version: %d", metaFile, m.Version)
}
// Best effort cache in local dir.
if s.cacheDir != "" {
if err := os.MkdirAll(cachedBlockDir, os.ModePerm); err != nil {
level.Warn(s.logger).Log("msg", "best effort mkdir of the meta.json block dir failed; ignoring", "dir", cachedBlockDir, "err", err)
}
if err := metadata.Write(s.logger, cachedBlockDir, m); err != nil {
level.Warn(s.logger).Log("msg", "best effort save of the meta.json to local dir failed; ignoring", "dir", cachedBlockDir, "err", err)
}
}
return m, nil
}
// Fetch returns all block metas as well as partial blocks (blocks without or with corrupted meta file) from the bucket.
// It's caller responsibility to not change the returned metadata files. Maps can be modified.
//
// Returned error indicates a failure in fetching metadata. Returned meta can be assumed as correct, with some blocks missing.
func (s *MetaFetcher) Fetch(ctx context.Context) (metas map[ulid.ULID]*metadata.Meta, partial map[ulid.ULID]error, err error) {
start := time.Now()
defer func() {
s.metrics.syncDuration.Observe(time.Since(start).Seconds())
if err != nil {
s.metrics.syncFailures.Inc()
}
}()
s.metrics.syncs.Inc()
metas = make(map[ulid.ULID]*metadata.Meta)
partial = make(map[ulid.ULID]error)
var (
wg sync.WaitGroup
ch = make(chan ulid.ULID, s.concurrency)
mtx sync.Mutex
metaErrs tsdberrors.MultiError
)
s.metrics.synced.ResetTx()
for i := 0; i < s.concurrency; i++ {
wg.Add(1)
go func() {
defer wg.Done()
for id := range ch {
meta, err := s.loadMeta(ctx, id)
if err == nil {
mtx.Lock()
metas[id] = meta
mtx.Unlock()
continue
}
switch errors.Cause(err) {
default:
s.metrics.synced.WithLabelValues(failedMeta).Inc()
mtx.Lock()
metaErrs.Add(err)
mtx.Unlock()
continue
case ErrorSyncMetaNotFound:
s.metrics.synced.WithLabelValues(noMeta).Inc()
case ErrorSyncMetaCorrupted:
s.metrics.synced.WithLabelValues(corruptedMeta).Inc()
}
mtx.Lock()
partial[id] = err
mtx.Unlock()
}
}()
}
// Workers scheduled, distribute blocks.
err = s.bkt.Iter(ctx, "", func(name string) error {
id, ok := IsBlockDir(name)
if !ok {
return nil
}
select {
case <-ctx.Done():
return ctx.Err()
case ch <- id:
}
return nil
})
close(ch)
wg.Wait()
if err != nil {
return nil, nil, errors.Wrap(err, "MetaFetcher: iter bucket")
}
incompleteView := len(metaErrs) > 0
// Only for complete view of blocks update the cache.
if !incompleteView {
cached := make(map[ulid.ULID]*metadata.Meta, len(metas))
for id, m := range metas {
cached[id] = m
}
s.cached = cached
// Best effort cleanup of disk-cached metas.
if s.cacheDir != "" {
names, err := fileutil.ReadDir(s.cacheDir)
if err != nil {
level.Warn(s.logger).Log("msg", "best effort remove of not needed cached dirs failed; ignoring", "err", err)
} else {
for _, n := range names {
id, ok := IsBlockDir(n)
if !ok {
continue
}
if _, ok := metas[id]; ok {
continue
}
cachedBlockDir := filepath.Join(s.cacheDir, id.String())
// No such block loaded, remove the local dir.
if err := os.RemoveAll(cachedBlockDir); err != nil {
level.Warn(s.logger).Log("msg", "best effort remove of not needed cached dir failed; ignoring", "dir", cachedBlockDir, "err", err)
}
}
}
}
}
for _, f := range s.filters {
// NOTE: filter can update synced metric accordingly to the reason of the exclude.
f(metas, s.metrics.synced, incompleteView)
}
s.metrics.synced.WithLabelValues(loadedMeta).Set(float64(len(metas)))
s.metrics.synced.Submit()
if incompleteView {
return metas, partial, errors.Wrap(metaErrs, "incomplete view")
}
level.Debug(s.logger).Log("msg", "successfully fetched block metadata", "duration", time.Since(start).String(), "cached", len(s.cached), "returned", len(metas), "partial", len(partial))
return metas, partial, nil
}
var _ MetaFetcherFilter = (&TimePartitionMetaFilter{}).Filter
// TimePartitionMetaFilter is a MetaFetcher filter that filters out blocks that are outside of specified time range.
type TimePartitionMetaFilter struct {
minTime, maxTime model.TimeOrDurationValue
}
// NewTimePartitionMetaFilter creates TimePartitionMetaFilter.
func NewTimePartitionMetaFilter(MinTime, MaxTime model.TimeOrDurationValue) *TimePartitionMetaFilter {
return &TimePartitionMetaFilter{minTime: MinTime, maxTime: MaxTime}
}
// Filter filters out blocks that are outside of specified time range.
func (f *TimePartitionMetaFilter) Filter(metas map[ulid.ULID]*metadata.Meta, synced GaugeLabeled, _ bool) {
for id, m := range metas {
if m.MaxTime >= f.minTime.PrometheusTimestamp() && m.MinTime <= f.maxTime.PrometheusTimestamp() {
continue
}
synced.WithLabelValues(timeExcludedMeta).Inc()
delete(metas, id)
}
}
var _ MetaFetcherFilter = (&LabelShardedMetaFilter{}).Filter
// LabelShardedMetaFilter represents struct that allows sharding.
type LabelShardedMetaFilter struct {
relabelConfig []*relabel.Config
}
// NewLabelShardedMetaFilter creates LabelShardedMetaFilter.
func NewLabelShardedMetaFilter(relabelConfig []*relabel.Config) *LabelShardedMetaFilter {
return &LabelShardedMetaFilter{relabelConfig: relabelConfig}
}
// Special label that will have an ULID of the meta.json being referenced to.
const blockIDLabel = "__block_id"
// Filter filters out blocks that have no labels after relabelling of each block external (Thanos) labels.
func (f *LabelShardedMetaFilter) Filter(metas map[ulid.ULID]*metadata.Meta, synced GaugeLabeled, _ bool) {
var lbls labels.Labels
for id, m := range metas {
lbls = lbls[:0]
lbls = append(lbls, labels.Label{Name: blockIDLabel, Value: id.String()})
for k, v := range m.Thanos.Labels {
lbls = append(lbls, labels.Label{Name: k, Value: v})
}
if processedLabels := relabel.Process(lbls, f.relabelConfig...); len(processedLabels) == 0 {
synced.WithLabelValues(labelExcludedMeta).Inc()
delete(metas, id)
}
}
}
// DeduplicateFilter is a MetaFetcher filter that filters out older blocks that have exactly the same data.
type DeduplicateFilter struct {
duplicateIDs []ulid.ULID
}
// NewDeduplicateFilter creates DeduplicateFilter.
func NewDeduplicateFilter() *DeduplicateFilter {
return &DeduplicateFilter{}
}
// Filter filters out duplicate blocks that can be formed
// from two or more overlapping blocks that fully submatches the source blocks of the older blocks.
func (f *DeduplicateFilter) Filter(metas map[ulid.ULID]*metadata.Meta, synced GaugeLabeled, _ bool) {
var wg sync.WaitGroup
metasByResolution := make(map[int64][]*metadata.Meta)
for _, meta := range metas {
res := meta.Thanos.Downsample.Resolution
metasByResolution[res] = append(metasByResolution[res], meta)
}
for res := range metasByResolution {
wg.Add(1)
go func(res int64) {
defer wg.Done()
f.filterForResolution(NewNode(&metadata.Meta{
BlockMeta: tsdb.BlockMeta{
ULID: ulid.MustNew(uint64(0), nil),
},
}), metasByResolution[res], metas, res, synced)
}(res)
}
wg.Wait()
}
func (f *DeduplicateFilter) filterForResolution(root *Node, metaSlice []*metadata.Meta, metas map[ulid.ULID]*metadata.Meta, res int64, synced GaugeLabeled) {
sort.Slice(metaSlice, func(i, j int) bool {
ilen := len(metaSlice[i].Compaction.Sources)
jlen := len(metaSlice[j].Compaction.Sources)
if ilen == jlen {
return metaSlice[i].ULID.Compare(metaSlice[j].ULID) < 0
}
return ilen-jlen > 0
})
for _, meta := range metaSlice {
addNodeBySources(root, NewNode(meta))
}
duplicateULIDs := getNonRootIDs(root)
for _, id := range duplicateULIDs {
if metas[id] != nil {
f.duplicateIDs = append(f.duplicateIDs, id)
}
synced.WithLabelValues(duplicateMeta).Inc()
delete(metas, id)
}
}
// DuplicateIDs returns slice of block ids
// that are filtered out by DeduplicateFilter.
func (f *DeduplicateFilter) DuplicateIDs() []ulid.ULID {
return f.duplicateIDs
}
func addNodeBySources(root *Node, add *Node) bool {
var rootNode *Node
for _, node := range root.Children {
parentSources := node.Compaction.Sources
childSources := add.Compaction.Sources
// Block exists with same sources, add as child.
if contains(parentSources, childSources) && contains(childSources, parentSources) {
node.Children = append(node.Children, add)
return true
}
// Block's sources are present in other block's sources, add as child.
if contains(parentSources, childSources) {
rootNode = node
break
}
}
// Block cannot be attached to any child nodes, add it as child of root.
if rootNode == nil {
root.Children = append(root.Children, add)
return true
}
return addNodeBySources(rootNode, add)
}
func contains(s1 []ulid.ULID, s2 []ulid.ULID) bool {
for _, a := range s2 {
found := false
for _, e := range s1 {
if a.Compare(e) == 0 {
found = true
break
}
}
if !found {
return false
}
}
return true
}
// ConsistencyDelayMetaFilter is a MetaFetcher filter that filters out blocks that are created before a specified consistency delay.
type ConsistencyDelayMetaFilter struct {
logger log.Logger
consistencyDelay time.Duration
}
// NewConsistencyDelayMetaFilter creates ConsistencyDelayMetaFilter.
func NewConsistencyDelayMetaFilter(logger log.Logger, consistencyDelay time.Duration, reg prometheus.Registerer) *ConsistencyDelayMetaFilter {
if logger == nil {
logger = log.NewNopLogger()
}
consistencyDelayMetric := prometheus.NewGaugeFunc(prometheus.GaugeOpts{
Name: "consistency_delay_seconds",
Help: "Configured consistency delay in seconds.",
}, func() float64 {
return consistencyDelay.Seconds()
})
reg.MustRegister(consistencyDelayMetric)
return &ConsistencyDelayMetaFilter{
logger: logger,
consistencyDelay: consistencyDelay,
}
}
// Filter filters out blocks that filters blocks that have are created before a specified consistency delay.
func (f *ConsistencyDelayMetaFilter) Filter(metas map[ulid.ULID]*metadata.Meta, synced GaugeLabeled, _ bool) {
for id, meta := range metas {
// TODO(khyatisoneji): Remove the checks about Thanos Source
// by implementing delete delay to fetch metas.
// TODO(bwplotka): Check consistency delay based on file upload / modification time instead of ULID.
if ulid.Now()-id.Time() < uint64(f.consistencyDelay/time.Millisecond) &&
meta.Thanos.Source != metadata.BucketRepairSource &&
meta.Thanos.Source != metadata.CompactorSource &&
meta.Thanos.Source != metadata.CompactorRepairSource {
level.Debug(f.logger).Log("msg", "block is too fresh for now", "block", id)
synced.WithLabelValues(tooFreshMeta).Inc()
delete(metas, id)
}
}
}