Skip to content

Commit 3abb3b1

Browse files
fix(deps): update module github.com/hashicorp/golang-lru to v2 (#14979)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Paul Rogers <paul.rogers@grafana.com> Co-authored-by: Paul Rogers <129207811+paul1r@users.noreply.github.com>
1 parent f92dde0 commit 3abb3b1

File tree

16 files changed

+293
-429
lines changed

16 files changed

+293
-429
lines changed

‎clients/pkg/logentry/stages/timestamp.go

+5-5
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88

99
"github.com/go-kit/log"
1010
"github.com/go-kit/log/level"
11-
lru "github.com/hashicorp/golang-lru"
11+
lru "github.com/hashicorp/golang-lru/v2"
1212
"github.com/mitchellh/mapstructure"
1313
"github.com/prometheus/common/model"
1414

@@ -114,9 +114,9 @@ func newTimestampStage(logger log.Logger, config interface{}) (Stage, error) {
114114
return nil, err
115115
}
116116

117-
var lastKnownTimestamps *lru.Cache
117+
var lastKnownTimestamps *lru.Cache[string, time.Time]
118118
if *cfg.ActionOnFailure == TimestampActionOnFailureFudge {
119-
lastKnownTimestamps, err = lru.New(maxLastKnownTimestampsCacheSize)
119+
lastKnownTimestamps, err = lru.New[string, time.Time](maxLastKnownTimestampsCacheSize)
120120
if err != nil {
121121
return nil, err
122122
}
@@ -138,7 +138,7 @@ type timestampStage struct {
138138

139139
// Stores the last known timestamp for a given "stream id" (guessed, since at this stage
140140
// there's no reliable way to know it).
141-
lastKnownTimestamps *lru.Cache
141+
lastKnownTimestamps *lru.Cache[string, time.Time]
142142
}
143143

144144
// Name implements Stage
@@ -222,7 +222,7 @@ func (ts *timestampStage) processActionOnFailureFudge(labels model.LabelSet, t *
222222
}
223223

224224
// Fudge the timestamp
225-
*t = lastTimestamp.(time.Time).Add(1 * time.Nanosecond)
225+
*t = lastTimestamp.Add(1 * time.Nanosecond)
226226

227227
// Store the fudged timestamp, so that a subsequent fudged timestamp will be 1ns after it
228228
ts.lastKnownTimestamps.Add(labelsStr, *t)

‎go.mod

+2-2
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ require (
5858
github.com/grpc-ecosystem/go-grpc-middleware v1.4.0
5959
github.com/grpc-ecosystem/grpc-opentracing v0.0.0-20180507213350-8e809c8a8645
6060
github.com/hashicorp/consul/api v1.30.0
61-
github.com/hashicorp/golang-lru v0.6.0
61+
github.com/hashicorp/golang-lru/v2 v2.0.7
6262
github.com/imdario/mergo v0.3.16
6363
github.com/influxdata/telegraf v1.16.3
6464
github.com/jmespath/go-jmespath v0.4.0
@@ -126,7 +126,6 @@ require (
126126
github.com/gogo/googleapis v1.4.1
127127
github.com/grafana/jsonparser v0.0.0-20241004153430-023329977675
128128
github.com/grafana/loki/pkg/push v0.0.0-20240924133635-758364c7775f
129-
github.com/hashicorp/golang-lru/v2 v2.0.7
130129
github.com/heroku/x v0.4.0
131130
github.com/influxdata/tdigest v0.0.2-0.20210216194612-fc98d27c9e8b
132131
github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db
@@ -173,6 +172,7 @@ require (
173172
github.com/go-ole/go-ole v1.2.6 // indirect
174173
github.com/goccy/go-json v0.10.3 // indirect
175174
github.com/gorilla/handlers v1.5.2 // indirect
175+
github.com/hashicorp/golang-lru v0.6.0 // indirect
176176
github.com/lufia/plan9stats v0.0.0-20220913051719-115f729f3c8c // indirect
177177
github.com/moby/docker-image-spec v1.3.1 // indirect
178178
github.com/moby/sys/userns v0.1.0 // indirect

‎pkg/distributor/distributor.go

+4-5
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ import (
2828
"github.com/grafana/dskit/services"
2929
"github.com/grafana/dskit/tenant"
3030
"github.com/grafana/dskit/user"
31-
lru "github.com/hashicorp/golang-lru"
31+
lru "github.com/hashicorp/golang-lru/v2"
3232
"github.com/opentracing/opentracing-go"
3333
"github.com/pkg/errors"
3434
"github.com/prometheus/client_golang/prometheus"
@@ -148,7 +148,7 @@ type Distributor struct {
148148
subservicesWatcher *services.FailureWatcher
149149
// Per-user rate limiter.
150150
ingestionRateLimiter *limiter.RateLimiter
151-
labelCache *lru.Cache
151+
labelCache *lru.Cache[string, labelData]
152152

153153
// Push failures rate limiter.
154154
writeFailuresManager *writefailures.Manager
@@ -217,7 +217,7 @@ func New(
217217
var servs []services.Service
218218

219219
rateLimitStrat := validation.LocalIngestionRateStrategy
220-
labelCache, err := lru.New(maxLabelCacheSize)
220+
labelCache, err := lru.New[string, labelData](maxLabelCacheSize)
221221
if err != nil {
222222
return nil, err
223223
}
@@ -1086,8 +1086,7 @@ type labelData struct {
10861086

10871087
func (d *Distributor) parseStreamLabels(vContext validationContext, key string, stream logproto.Stream) (labels.Labels, string, uint64, error) {
10881088
if val, ok := d.labelCache.Get(key); ok {
1089-
labelVal := val.(labelData)
1090-
return labelVal.ls, labelVal.ls.String(), labelVal.hash, nil
1089+
return val.ls, val.ls.String(), val.hash, nil
10911090
}
10921091

10931092
ls, err := syntax.ParseLabels(key)

‎pkg/kafka/encoding.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99

1010
"github.com/twmb/franz-go/pkg/kgo"
1111

12-
lru "github.com/hashicorp/golang-lru"
12+
lru "github.com/hashicorp/golang-lru/v2"
1313
"github.com/prometheus/prometheus/model/labels"
1414

1515
"github.com/grafana/loki/v3/pkg/logproto"
@@ -126,11 +126,11 @@ func marshalWriteRequestToRecord(partitionID int32, tenantID string, stream logp
126126
// It caches parsed labels for efficiency.
127127
type Decoder struct {
128128
stream *logproto.Stream
129-
cache *lru.Cache
129+
cache *lru.Cache[string, labels.Labels]
130130
}
131131

132132
func NewDecoder() (*Decoder, error) {
133-
cache, err := lru.New(5000) // Set LRU size to 5000, adjust as needed
133+
cache, err := lru.New[string, labels.Labels](5000)
134134
if err != nil {
135135
return nil, fmt.Errorf("failed to create LRU cache: %w", err)
136136
}
@@ -154,7 +154,7 @@ func (d *Decoder) Decode(data []byte) (logproto.Stream, labels.Labels, error) {
154154

155155
var ls labels.Labels
156156
if cachedLabels, ok := d.cache.Get(d.stream.Labels); ok {
157-
ls = cachedLabels.(labels.Labels)
157+
ls = cachedLabels
158158
} else {
159159
var err error
160160
ls, err = syntax.ParseLabels(d.stream.Labels)

‎vendor/github.com/hashicorp/golang-lru/.golangci.yml

-30
This file was deleted.

‎vendor/github.com/hashicorp/golang-lru/README.md

-25
This file was deleted.

0 commit comments

Comments
 (0)