forked from cortexproject/cortex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbucket_stores.go
782 lines (664 loc) · 25.3 KB
/
bucket_stores.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
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
package storegateway
import (
"context"
"fmt"
"math"
"os"
"path/filepath"
"strings"
"sync"
"time"
"github.com/go-kit/log"
"github.com/go-kit/log/level"
"github.com/oklog/ulid"
"github.com/pkg/errors"
"github.com/prometheus/client_golang/prometheus"
"github.com/prometheus/client_golang/prometheus/promauto"
tsdb_errors "github.com/prometheus/prometheus/tsdb/errors"
"github.com/thanos-io/objstore"
"github.com/thanos-io/thanos/pkg/block"
thanos_metadata "github.com/thanos-io/thanos/pkg/block/metadata"
"github.com/thanos-io/thanos/pkg/extprom"
"github.com/thanos-io/thanos/pkg/gate"
"github.com/thanos-io/thanos/pkg/pool"
"github.com/thanos-io/thanos/pkg/store"
storecache "github.com/thanos-io/thanos/pkg/store/cache"
"github.com/thanos-io/thanos/pkg/store/storepb"
"github.com/weaveworks/common/httpgrpc"
"github.com/weaveworks/common/logging"
"google.golang.org/grpc/codes"
"google.golang.org/grpc/metadata"
"google.golang.org/grpc/status"
"github.com/cortexproject/cortex/pkg/storage/bucket"
"github.com/cortexproject/cortex/pkg/storage/tsdb"
"github.com/cortexproject/cortex/pkg/util"
"github.com/cortexproject/cortex/pkg/util/backoff"
cortex_errors "github.com/cortexproject/cortex/pkg/util/errors"
util_log "github.com/cortexproject/cortex/pkg/util/log"
"github.com/cortexproject/cortex/pkg/util/spanlogger"
"github.com/cortexproject/cortex/pkg/util/validation"
)
// BucketStores is a multi-tenant wrapper of Thanos BucketStore.
type BucketStores struct {
logger log.Logger
cfg tsdb.BlocksStorageConfig
limits *validation.Overrides
bucket objstore.Bucket
logLevel logging.Level
bucketStoreMetrics *BucketStoreMetrics
metaFetcherMetrics *MetadataFetcherMetrics
shardingStrategy ShardingStrategy
// Index cache shared across all tenants.
indexCache storecache.IndexCache
// Chunks bytes pool shared across all tenants.
chunksPool pool.Bytes
// Partitioner shared across all tenants.
partitioner store.Partitioner
// Gate used to limit query concurrency across all tenants.
queryGate gate.Gate
// Keeps a bucket store for each tenant.
storesMu sync.RWMutex
stores map[string]*store.BucketStore
// Keeps the last sync error for the bucket store for each tenant.
storesErrorsMu sync.RWMutex
storesErrors map[string]error
instanceTokenBucket *util.TokenBucket
userTokenBucketsMu sync.RWMutex
userTokenBuckets map[string]*util.TokenBucket
// Keeps number of inflight requests
inflightRequestCnt int
inflightRequestMu sync.RWMutex
// Metrics.
syncTimes prometheus.Histogram
syncLastSuccess prometheus.Gauge
tenantsDiscovered prometheus.Gauge
tenantsSynced prometheus.Gauge
}
var ErrTooManyInflightRequests = status.Error(codes.ResourceExhausted, "too many inflight requests in store gateway")
// NewBucketStores makes a new BucketStores.
func NewBucketStores(cfg tsdb.BlocksStorageConfig, shardingStrategy ShardingStrategy, bucketClient objstore.InstrumentedBucket, limits *validation.Overrides, logLevel logging.Level, logger log.Logger, reg prometheus.Registerer) (*BucketStores, error) {
matchers := tsdb.NewMatchers()
cachingBucket, err := tsdb.CreateCachingBucket(cfg.BucketStore.ChunksCache, cfg.BucketStore.MetadataCache, matchers, bucketClient, logger, reg)
if err != nil {
return nil, errors.Wrapf(err, "create caching bucket")
}
// The number of concurrent queries against the tenants BucketStores are limited.
queryGateReg := extprom.WrapRegistererWithPrefix("cortex_bucket_stores_", reg)
queryGate := gate.New(queryGateReg, cfg.BucketStore.MaxConcurrent, gate.Queries)
promauto.With(reg).NewGauge(prometheus.GaugeOpts{
Name: "cortex_bucket_stores_gate_queries_concurrent_max",
Help: "Number of maximum concurrent queries allowed.",
}).Set(float64(cfg.BucketStore.MaxConcurrent))
u := &BucketStores{
logger: logger,
cfg: cfg,
limits: limits,
bucket: cachingBucket,
shardingStrategy: shardingStrategy,
stores: map[string]*store.BucketStore{},
storesErrors: map[string]error{},
logLevel: logLevel,
bucketStoreMetrics: NewBucketStoreMetrics(),
metaFetcherMetrics: NewMetadataFetcherMetrics(),
queryGate: queryGate,
partitioner: newGapBasedPartitioner(cfg.BucketStore.PartitionerMaxGapBytes, reg),
userTokenBuckets: make(map[string]*util.TokenBucket),
syncTimes: promauto.With(reg).NewHistogram(prometheus.HistogramOpts{
Name: "cortex_bucket_stores_blocks_sync_seconds",
Help: "The total time it takes to perform a sync stores",
Buckets: []float64{0.1, 1, 10, 30, 60, 120, 300, 600, 900},
}),
syncLastSuccess: promauto.With(reg).NewGauge(prometheus.GaugeOpts{
Name: "cortex_bucket_stores_blocks_last_successful_sync_timestamp_seconds",
Help: "Unix timestamp of the last successful blocks sync.",
}),
tenantsDiscovered: promauto.With(reg).NewGauge(prometheus.GaugeOpts{
Name: "cortex_bucket_stores_tenants_discovered",
Help: "Number of tenants discovered in the bucket.",
}),
tenantsSynced: promauto.With(reg).NewGauge(prometheus.GaugeOpts{
Name: "cortex_bucket_stores_tenants_synced",
Help: "Number of tenants synced.",
}),
}
// Init the index cache.
if u.indexCache, err = tsdb.NewIndexCache(cfg.BucketStore.IndexCache, logger, reg); err != nil {
return nil, errors.Wrap(err, "create index cache")
}
// Init the chunks bytes pool.
if u.chunksPool, err = newChunkBytesPool(cfg.BucketStore.ChunkPoolMinBucketSizeBytes, cfg.BucketStore.ChunkPoolMaxBucketSizeBytes, cfg.BucketStore.MaxChunkPoolBytes, reg); err != nil {
return nil, errors.Wrap(err, "create chunks bytes pool")
}
if u.cfg.BucketStore.TokenBucketBytesLimiter.Mode != string(tsdb.TokenBucketBytesLimiterDisabled) {
u.instanceTokenBucket = util.NewTokenBucket(cfg.BucketStore.TokenBucketBytesLimiter.InstanceTokenBucketSize, promauto.With(reg).NewGauge(prometheus.GaugeOpts{
Name: "cortex_bucket_stores_instance_token_bucket_remaining",
Help: "Number of tokens left in instance token bucket.",
}))
}
if reg != nil {
reg.MustRegister(u.bucketStoreMetrics, u.metaFetcherMetrics)
}
return u, nil
}
// InitialSync does an initial synchronization of blocks for all users.
func (u *BucketStores) InitialSync(ctx context.Context) error {
level.Info(u.logger).Log("msg", "synchronizing TSDB blocks for all users")
if err := u.syncUsersBlocksWithRetries(ctx, func(ctx context.Context, s *store.BucketStore) error {
return s.InitialSync(ctx)
}); err != nil {
level.Warn(u.logger).Log("msg", "failed to synchronize TSDB blocks", "err", err)
return err
}
level.Info(u.logger).Log("msg", "successfully synchronized TSDB blocks for all users")
return nil
}
// SyncBlocks synchronizes the stores state with the Bucket store for every user.
func (u *BucketStores) SyncBlocks(ctx context.Context) error {
return u.syncUsersBlocksWithRetries(ctx, func(ctx context.Context, s *store.BucketStore) error {
return s.SyncBlocks(ctx)
})
}
func (u *BucketStores) syncUsersBlocksWithRetries(ctx context.Context, f func(context.Context, *store.BucketStore) error) error {
retries := backoff.New(ctx, backoff.Config{
MinBackoff: 1 * time.Second,
MaxBackoff: 10 * time.Second,
MaxRetries: 3,
})
var lastErr error
for retries.Ongoing() {
lastErr = u.syncUsersBlocks(ctx, f)
if lastErr == nil {
return nil
}
retries.Wait()
}
if lastErr == nil {
return retries.Err()
}
return lastErr
}
func (u *BucketStores) syncUsersBlocks(ctx context.Context, f func(context.Context, *store.BucketStore) error) (returnErr error) {
defer func(start time.Time) {
u.syncTimes.Observe(time.Since(start).Seconds())
if returnErr == nil {
u.syncLastSuccess.SetToCurrentTime()
}
}(time.Now())
type job struct {
userID string
store *store.BucketStore
}
wg := &sync.WaitGroup{}
jobs := make(chan job)
errs := tsdb_errors.NewMulti()
errsMx := sync.Mutex{}
// Scan users in the bucket. In case of error, it may return a subset of users. If we sync a subset of users
// during a periodic sync, we may end up unloading blocks for users that still belong to this store-gateway
// so we do prefer to not run the sync at all.
userIDs, err := u.scanUsers(ctx)
if err != nil {
return err
}
includeUserIDs := make(map[string]struct{})
for _, userID := range u.shardingStrategy.FilterUsers(ctx, userIDs) {
includeUserIDs[userID] = struct{}{}
}
u.tenantsDiscovered.Set(float64(len(userIDs)))
u.tenantsSynced.Set(float64(len(includeUserIDs)))
// Create a pool of workers which will synchronize blocks. The pool size
// is limited in order to avoid to concurrently sync a lot of tenants in
// a large cluster.
for i := 0; i < u.cfg.BucketStore.TenantSyncConcurrency; i++ {
wg.Add(1)
go func() {
defer wg.Done()
for job := range jobs {
if err := f(ctx, job.store); err != nil {
if errors.Is(err, bucket.ErrCustomerManagedKeyAccessDenied) {
u.storesErrorsMu.Lock()
u.storesErrors[job.userID] = httpgrpc.Errorf(int(codes.PermissionDenied), "store error: %s", err)
u.storesErrorsMu.Unlock()
} else {
errsMx.Lock()
errs.Add(errors.Wrapf(err, "failed to synchronize TSDB blocks for user %s", job.userID))
errsMx.Unlock()
}
} else {
u.storesErrorsMu.Lock()
delete(u.storesErrors, job.userID)
u.storesErrorsMu.Unlock()
}
}
}()
}
// Lazily create a bucket store for each new user found
// and submit a sync job for each user.
for _, userID := range userIDs {
// If we don't have a store for the tenant yet, then we should skip it if it's not
// included in the store-gateway shard. If we already have it, we need to sync it
// anyway to make sure all its blocks are unloaded and metrics updated correctly
// (but bucket API calls are skipped thanks to the objstore client adapter).
if _, included := includeUserIDs[userID]; !included && u.getStore(userID) == nil {
continue
}
bs, err := u.getOrCreateStore(userID)
if err != nil {
errsMx.Lock()
errs.Add(err)
errsMx.Unlock()
continue
}
select {
case jobs <- job{userID: userID, store: bs}:
// Nothing to do. Will loop to push more jobs.
case <-ctx.Done():
return ctx.Err()
}
}
// Wait until all workers completed.
close(jobs)
wg.Wait()
u.deleteLocalFilesForExcludedTenants(includeUserIDs)
return errs.Err()
}
// Series makes a series request to the underlying user bucket store.
func (u *BucketStores) Series(req *storepb.SeriesRequest, srv storepb.Store_SeriesServer) error {
spanLog, spanCtx := spanlogger.New(srv.Context(), "BucketStores.Series")
defer spanLog.Span.Finish()
userID := getUserIDFromGRPCContext(spanCtx)
if userID == "" {
return fmt.Errorf("no userID")
}
err := u.getStoreError(userID)
userBkt := bucket.NewUserBucketClient(userID, u.bucket, u.limits)
if err != nil {
if cortex_errors.ErrorIs(err, userBkt.IsAccessDeniedErr) {
return httpgrpc.Errorf(int(codes.PermissionDenied), "store error: %s", err)
}
return err
}
store := u.getStore(userID)
if store == nil {
return nil
}
maxInflightRequests := u.cfg.BucketStore.MaxInflightRequests
if maxInflightRequests > 0 {
if u.getInflightRequestCnt() >= maxInflightRequests {
return ErrTooManyInflightRequests
}
u.incrementInflightRequestCnt()
defer u.decrementInflightRequestCnt()
}
err = store.Series(req, spanSeriesServer{
Store_SeriesServer: srv,
ctx: spanCtx,
})
return err
}
func (u *BucketStores) getInflightRequestCnt() int {
u.inflightRequestMu.RLock()
defer u.inflightRequestMu.RUnlock()
return u.inflightRequestCnt
}
func (u *BucketStores) incrementInflightRequestCnt() {
u.inflightRequestMu.Lock()
u.inflightRequestCnt++
u.inflightRequestMu.Unlock()
}
func (u *BucketStores) decrementInflightRequestCnt() {
u.inflightRequestMu.Lock()
u.inflightRequestCnt--
u.inflightRequestMu.Unlock()
}
// LabelNames implements the Storegateway proto service.
func (u *BucketStores) LabelNames(ctx context.Context, req *storepb.LabelNamesRequest) (*storepb.LabelNamesResponse, error) {
spanLog, spanCtx := spanlogger.New(ctx, "BucketStores.LabelNames")
defer spanLog.Span.Finish()
userID := getUserIDFromGRPCContext(spanCtx)
if userID == "" {
return nil, fmt.Errorf("no userID")
}
err := u.getStoreError(userID)
userBkt := bucket.NewUserBucketClient(userID, u.bucket, u.limits)
if err != nil {
if cortex_errors.ErrorIs(err, userBkt.IsAccessDeniedErr) {
return nil, httpgrpc.Errorf(int(codes.PermissionDenied), "store error: %s", err)
}
return nil, err
}
store := u.getStore(userID)
if store == nil {
return &storepb.LabelNamesResponse{}, nil
}
resp, err := store.LabelNames(ctx, req)
return resp, err
}
// LabelValues implements the Storegateway proto service.
func (u *BucketStores) LabelValues(ctx context.Context, req *storepb.LabelValuesRequest) (*storepb.LabelValuesResponse, error) {
spanLog, spanCtx := spanlogger.New(ctx, "BucketStores.LabelValues")
defer spanLog.Span.Finish()
userID := getUserIDFromGRPCContext(spanCtx)
if userID == "" {
return nil, fmt.Errorf("no userID")
}
err := u.getStoreError(userID)
userBkt := bucket.NewUserBucketClient(userID, u.bucket, u.limits)
if err != nil {
if cortex_errors.ErrorIs(err, userBkt.IsAccessDeniedErr) {
return nil, httpgrpc.Errorf(int(codes.PermissionDenied), "store error: %s", err)
}
return nil, err
}
store := u.getStore(userID)
if store == nil {
return &storepb.LabelValuesResponse{}, nil
}
return store.LabelValues(ctx, req)
}
// scanUsers in the bucket and return the list of found users. If an error occurs while
// iterating the bucket, it may return both an error and a subset of the users in the bucket.
func (u *BucketStores) scanUsers(ctx context.Context) ([]string, error) {
var users []string
// Iterate the bucket to find all users in the bucket. Due to how the bucket listing
// caching works, it's more likely to have a cache hit if there's no delay while
// iterating the bucket, so we do load all users in memory and later process them.
err := u.bucket.Iter(ctx, "", func(s string) error {
users = append(users, strings.TrimSuffix(s, "/"))
return nil
})
return users, err
}
func (u *BucketStores) getStore(userID string) *store.BucketStore {
u.storesMu.RLock()
defer u.storesMu.RUnlock()
return u.stores[userID]
}
func (u *BucketStores) getStoreError(userID string) error {
u.storesErrorsMu.RLock()
defer u.storesErrorsMu.RUnlock()
return u.storesErrors[userID]
}
var (
errBucketStoreNotEmpty = errors.New("bucket store not empty")
errBucketStoreNotFound = errors.New("bucket store not found")
)
// closeEmptyBucketStore closes bucket store for given user, if it is empty,
// and removes it from bucket stores map and metrics.
// If bucket store doesn't exist, returns errBucketStoreNotFound.
// If bucket store is not empty, returns errBucketStoreNotEmpty.
// Otherwise returns error from closing the bucket store.
func (u *BucketStores) closeEmptyBucketStore(userID string) error {
u.storesMu.Lock()
unlockInDefer := true
defer func() {
if unlockInDefer {
u.storesMu.Unlock()
}
}()
bs := u.stores[userID]
if bs == nil {
return errBucketStoreNotFound
}
if !isEmptyBucketStore(bs) {
return errBucketStoreNotEmpty
}
delete(u.stores, userID)
unlockInDefer = false
u.storesMu.Unlock()
if u.cfg.BucketStore.TokenBucketBytesLimiter.Mode != string(tsdb.TokenBucketBytesLimiterDisabled) {
u.userTokenBucketsMu.Lock()
delete(u.userTokenBuckets, userID)
u.userTokenBucketsMu.Unlock()
}
u.metaFetcherMetrics.RemoveUserRegistry(userID)
u.bucketStoreMetrics.RemoveUserRegistry(userID)
return bs.Close()
}
func isEmptyBucketStore(bs *store.BucketStore) bool {
min, max := bs.TimeRange()
return min == math.MaxInt64 && max == math.MinInt64
}
func (u *BucketStores) syncDirForUser(userID string) string {
return filepath.Join(u.cfg.BucketStore.SyncDir, userID)
}
func (u *BucketStores) getOrCreateStore(userID string) (*store.BucketStore, error) {
// Check if the store already exists.
bs := u.getStore(userID)
if bs != nil {
return bs, nil
}
u.storesMu.Lock()
defer u.storesMu.Unlock()
// Check again for the store in the event it was created in-between locks.
bs = u.stores[userID]
if bs != nil {
return bs, nil
}
userLogger := util_log.WithUserID(userID, u.logger)
level.Info(userLogger).Log("msg", "creating user bucket store")
userBkt := bucket.NewUserBucketClient(userID, u.bucket, u.limits)
fetcherReg := prometheus.NewRegistry()
// The sharding strategy filter MUST be before the ones we create here (order matters).
filters := append([]block.MetadataFilter{NewShardingMetadataFilterAdapter(userID, u.shardingStrategy)}, []block.MetadataFilter{
block.NewConsistencyDelayMetaFilter(userLogger, u.cfg.BucketStore.ConsistencyDelay, fetcherReg),
// Use our own custom implementation.
NewIgnoreDeletionMarkFilter(userLogger, userBkt, u.cfg.BucketStore.IgnoreDeletionMarksDelay, u.cfg.BucketStore.MetaSyncConcurrency),
// The duplicate filter has been intentionally omitted because it could cause troubles with
// the consistency check done on the querier. The duplicate filter removes redundant blocks
// but if the store-gateway removes redundant blocks before the querier discovers them, the
// consistency check on the querier will fail.
NewReplicaLabelRemover(userLogger, []string{
tsdb.TenantIDExternalLabel,
tsdb.IngesterIDExternalLabel,
}),
// Remove Cortex external labels so that they're not injected when querying blocks.
}...)
if u.cfg.BucketStore.IgnoreBlocksWithin > 0 {
// Filter out blocks that are too new to be queried.
filters = append(filters, NewIgnoreNonQueryableBlocksFilter(userLogger, u.cfg.BucketStore.IgnoreBlocksWithin))
}
// Instantiate a different blocks metadata fetcher based on whether bucket index is enabled or not.
var fetcher block.MetadataFetcher
if u.cfg.BucketStore.BucketIndex.Enabled {
fetcher = NewBucketIndexMetadataFetcher(
userID,
u.bucket,
u.shardingStrategy,
u.limits,
u.logger,
fetcherReg,
filters)
} else {
// Wrap the bucket reader to skip iterating the bucket at all if the user doesn't
// belong to the store-gateway shard. We need to run the BucketStore syncing anyway
// in order to unload previous tenants in case of a resharding leading to tenants
// moving out from the store-gateway shard and also make sure both MetaFetcher and
// BucketStore metrics are correctly updated.
fetcherBkt := NewShardingBucketReaderAdapter(userID, u.shardingStrategy, userBkt)
var (
err error
blockLister block.Lister
)
switch tsdb.BlockDiscoveryStrategy(u.cfg.BucketStore.BlockDiscoveryStrategy) {
case tsdb.ConcurrentDiscovery:
blockLister = block.NewConcurrentLister(userLogger, userBkt)
case tsdb.RecursiveDiscovery:
blockLister = block.NewRecursiveLister(userLogger, userBkt)
case tsdb.BucketIndexDiscovery:
return nil, tsdb.ErrInvalidBucketIndexBlockDiscoveryStrategy
default:
return nil, tsdb.ErrBlockDiscoveryStrategy
}
fetcher, err = block.NewMetaFetcher(
userLogger,
u.cfg.BucketStore.MetaSyncConcurrency,
fetcherBkt,
blockLister,
u.syncDirForUser(userID), // The fetcher stores cached metas in the "meta-syncer/" sub directory
fetcherReg,
filters,
)
if err != nil {
return nil, err
}
}
bucketStoreReg := prometheus.NewRegistry()
bucketStoreOpts := []store.BucketStoreOption{
store.WithLogger(userLogger),
store.WithRequestLoggerFunc(func(ctx context.Context, logger log.Logger) log.Logger {
return util_log.HeadersFromContext(ctx, logger)
}),
store.WithRegistry(bucketStoreReg),
store.WithIndexCache(u.indexCache),
store.WithQueryGate(u.queryGate),
store.WithChunkPool(u.chunksPool),
store.WithSeriesBatchSize(u.cfg.BucketStore.SeriesBatchSize),
store.WithBlockEstimatedMaxChunkFunc(func(m thanos_metadata.Meta) uint64 {
if m.Thanos.IndexStats.ChunkMaxSize > 0 &&
uint64(m.Thanos.IndexStats.ChunkMaxSize) < u.cfg.BucketStore.EstimatedMaxChunkSizeBytes {
return uint64(m.Thanos.IndexStats.ChunkMaxSize)
}
return u.cfg.BucketStore.EstimatedMaxChunkSizeBytes
}),
store.WithBlockEstimatedMaxSeriesFunc(func(m thanos_metadata.Meta) uint64 {
if m.Thanos.IndexStats.SeriesMaxSize > 0 &&
uint64(m.Thanos.IndexStats.SeriesMaxSize) < u.cfg.BucketStore.EstimatedMaxSeriesSizeBytes {
return uint64(m.Thanos.IndexStats.SeriesMaxSize)
}
return u.cfg.BucketStore.EstimatedMaxSeriesSizeBytes
}),
store.WithLazyExpandedPostings(u.cfg.BucketStore.LazyExpandedPostingsEnabled),
store.WithDontResort(true), // Cortex doesn't need to resort series in store gateway.
}
if u.logLevel.String() == "debug" {
bucketStoreOpts = append(bucketStoreOpts, store.WithDebugLogging())
}
if u.cfg.BucketStore.TokenBucketBytesLimiter.Mode != string(tsdb.TokenBucketBytesLimiterDisabled) {
u.userTokenBucketsMu.Lock()
u.userTokenBuckets[userID] = util.NewTokenBucket(u.cfg.BucketStore.TokenBucketBytesLimiter.UserTokenBucketSize, nil)
u.userTokenBucketsMu.Unlock()
}
bs, err := store.NewBucketStore(
userBkt,
fetcher,
u.syncDirForUser(userID),
newChunksLimiterFactory(u.limits, userID),
newSeriesLimiterFactory(u.limits, userID),
newBytesLimiterFactory(u.limits, userID, u.getUserTokenBucket(userID), u.instanceTokenBucket, u.cfg.BucketStore.TokenBucketBytesLimiter, u.getTokensToRetrieve),
u.partitioner,
u.cfg.BucketStore.BlockSyncConcurrency,
false, // No need to enable backward compatibility with Thanos pre 0.8.0 queriers
u.cfg.BucketStore.PostingOffsetsInMemSampling,
true, // Enable series hints.
u.cfg.BucketStore.IndexHeaderLazyLoadingEnabled,
u.cfg.BucketStore.IndexHeaderLazyLoadingIdleTimeout,
bucketStoreOpts...,
)
if err != nil {
return nil, err
}
u.stores[userID] = bs
u.metaFetcherMetrics.AddUserRegistry(userID, fetcherReg)
u.bucketStoreMetrics.AddUserRegistry(userID, bucketStoreReg)
return bs, nil
}
// deleteLocalFilesForExcludedTenants removes local "sync" directories for tenants that are not included in the current
// shard.
func (u *BucketStores) deleteLocalFilesForExcludedTenants(includeUserIDs map[string]struct{}) {
files, err := os.ReadDir(u.cfg.BucketStore.SyncDir)
if err != nil {
return
}
for _, f := range files {
if !f.IsDir() {
continue
}
userID := f.Name()
if _, included := includeUserIDs[userID]; included {
// Preserve directory for users owned by this shard.
continue
}
err := u.closeEmptyBucketStore(userID)
switch {
case errors.Is(err, errBucketStoreNotEmpty):
continue
case errors.Is(err, errBucketStoreNotFound):
// This is OK, nothing was closed.
case err == nil:
level.Info(u.logger).Log("msg", "closed bucket store for user", "user", userID)
default:
level.Warn(u.logger).Log("msg", "failed to close bucket store for user", "user", userID, "err", err)
}
userSyncDir := u.syncDirForUser(userID)
err = os.RemoveAll(userSyncDir)
if err == nil {
level.Info(u.logger).Log("msg", "deleted user sync directory", "dir", userSyncDir)
} else {
level.Warn(u.logger).Log("msg", "failed to delete user sync directory", "dir", userSyncDir, "err", err)
}
}
}
func (u *BucketStores) getUserTokenBucket(userID string) *util.TokenBucket {
u.userTokenBucketsMu.RLock()
defer u.userTokenBucketsMu.RUnlock()
return u.userTokenBuckets[userID]
}
func (u *BucketStores) getTokensToRetrieve(tokens uint64, dataType store.StoreDataType) int64 {
tokensToRetrieve := float64(tokens)
switch dataType {
case store.PostingsFetched:
tokensToRetrieve *= u.cfg.BucketStore.TokenBucketBytesLimiter.FetchedPostingsTokenFactor
case store.PostingsTouched:
tokensToRetrieve *= u.cfg.BucketStore.TokenBucketBytesLimiter.TouchedPostingsTokenFactor
case store.SeriesFetched:
tokensToRetrieve *= u.cfg.BucketStore.TokenBucketBytesLimiter.FetchedSeriesTokenFactor
case store.SeriesTouched:
tokensToRetrieve *= u.cfg.BucketStore.TokenBucketBytesLimiter.TouchedSeriesTokenFactor
case store.ChunksFetched:
tokensToRetrieve *= u.cfg.BucketStore.TokenBucketBytesLimiter.FetchedChunksTokenFactor
case store.ChunksTouched:
tokensToRetrieve *= u.cfg.BucketStore.TokenBucketBytesLimiter.TouchedChunksTokenFactor
}
return int64(tokensToRetrieve)
}
func getUserIDFromGRPCContext(ctx context.Context) string {
meta, ok := metadata.FromIncomingContext(ctx)
if !ok {
return ""
}
values := meta.Get(tsdb.TenantIDExternalLabel)
if len(values) != 1 {
return ""
}
return values[0]
}
// ReplicaLabelRemover is a BaseFetcher modifier modifies external labels of existing blocks, it removes given replica labels from the metadata of blocks that have it.
type ReplicaLabelRemover struct {
logger log.Logger
replicaLabels []string
}
// NewReplicaLabelRemover creates a ReplicaLabelRemover.
func NewReplicaLabelRemover(logger log.Logger, replicaLabels []string) *ReplicaLabelRemover {
return &ReplicaLabelRemover{logger: logger, replicaLabels: replicaLabels}
}
// Filter implements block.MetadataFilter.
func (r *ReplicaLabelRemover) Filter(_ context.Context, metas map[ulid.ULID]*thanos_metadata.Meta, _ block.GaugeVec, _ block.GaugeVec) error {
for u, meta := range metas {
l := meta.Thanos.Labels
for _, replicaLabel := range r.replicaLabels {
if _, exists := l[replicaLabel]; exists {
level.Debug(r.logger).Log("msg", "replica label removed", "label", replicaLabel)
delete(l, replicaLabel)
}
}
metas[u].Thanos.Labels = l
}
return nil
}
type spanSeriesServer struct {
storepb.Store_SeriesServer
ctx context.Context
}
func (s spanSeriesServer) Context() context.Context {
return s.ctx
}