@@ -346,10 +346,6 @@ func (m *UnpartitionedMemoryIdx) AddOrUpdate(mkey schema.MKey, data *schema.Metr
346
346
statMetricsActive .Inc ()
347
347
statAddDuration .Value (time .Since (pre ))
348
348
349
- if TagSupport {
350
- m .indexTags (def )
351
- }
352
-
353
349
return archive , 0 , false
354
350
}
355
351
@@ -441,10 +437,6 @@ func (m *UnpartitionedMemoryIdx) Load(defs []schema.MetricDefinition) int {
441
437
442
438
m .add (def )
443
439
444
- if TagSupport {
445
- m .indexTags (def )
446
- }
447
-
448
440
// as we are loading the metricDefs from a persistent store, set the lastSave
449
441
// to the lastUpdate timestamp. This won't exactly match the true lastSave Timstamp,
450
442
// but it will be close enough and it will always be true that the lastSave was at
@@ -471,13 +463,20 @@ func (m *UnpartitionedMemoryIdx) add(def *schema.MetricDefinition) idx.Archive {
471
463
IrId : irId ,
472
464
}
473
465
474
- if TagSupport && len (def .Tags ) > 0 {
475
- if _ , ok := m .defById [def .Id ]; ! ok {
476
- m .defById [def .Id ] = archive
477
- statAdd .Inc ()
478
- log .Debugf ("memory-idx: adding %s to DefById" , path )
466
+ if TagSupport {
467
+ // Even if there are no tags, index at least "name". It's important to use the definition
468
+ // in the archive pointer that we add to defById, because the pointers must reference the
469
+ // same underlying object in m.defById and m.defByTagSet
470
+ m .indexTags (& archive .MetricDefinition )
471
+
472
+ if len (def .Tags ) > 0 {
473
+ if _ , ok := m .defById [def .Id ]; ! ok {
474
+ m .defById [def .Id ] = archive
475
+ statAdd .Inc ()
476
+ log .Debugf ("memory-idx: adding %s to DefById" , path )
477
+ }
478
+ return * archive
479
479
}
480
- return * archive
481
480
}
482
481
483
482
if m .findCache != nil {
@@ -1433,17 +1432,23 @@ DEFS:
1433
1432
1434
1433
toPruneUntagged [def.OrgId ][n.Path ] = struct {}{}
1435
1434
} else {
1436
- defs := m .defByTagSet .defs (def .OrgId , def .NameWithTags ())
1435
+ defName := def .NameWithTags ()
1436
+ defs := m .defByTagSet .defs (def .OrgId , defName )
1437
1437
// if any other MetricDef with the same tag set is not expired yet,
1438
1438
// then we do not want to prune any of them
1439
- for def := range defs {
1440
- if atomic .LoadInt64 (& def .LastUpdate ) >= cutoff {
1439
+ for sdef := range defs {
1440
+ if atomic .LoadInt64 (& sdef .LastUpdate ) >= cutoff {
1441
1441
continue DEFS
1442
1442
}
1443
1443
}
1444
1444
1445
- for def := range defs {
1446
- toPruneTagged [def.OrgId ][def.Id ] = struct {}{}
1445
+ for sdef := range defs {
1446
+ if defName != sdef .NameWithTags () {
1447
+ corruptIndex .Inc ()
1448
+ log .Errorf ("Almost added bad def to prune list: def=%v, sdef=%v" , def , sdef )
1449
+ } else {
1450
+ toPruneTagged [sdef.OrgId ][sdef.Id ] = struct {}{}
1451
+ }
1447
1452
}
1448
1453
}
1449
1454
}
0 commit comments