Skip to content

Commit af0900b

Browse files
authored
*: bump deps + enable compaction randomization (#7813)
* *: bump deps + enable compaction randomization Bump go.mod dependencies of prometheus and thanos promql-engine. Enable randomized compaction start to help with reducing latency with multiple TSDBs. Signed-off-by: Giedrius Statkevičius <[email protected]> * CHANGELOG: add item Signed-off-by: Giedrius Statkevičius <[email protected]> * *: fix CI Signed-off-by: Giedrius Statkevičius <[email protected]> --------- Signed-off-by: Giedrius Statkevičius <[email protected]>
1 parent 6623a3c commit af0900b

File tree

10 files changed

+150
-130
lines changed

10 files changed

+150
-130
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ We use *breaking :warning:* to mark changes that are not backward compatible (re
3434
- [#7567](https://github.com/thanos-io/thanos/pull/7565) Query: Use thanos resolver for endpoint groups.
3535
- [#7704](https://github.com/thanos-io/thanos/pull/7704) *: *breaking :warning:* remove Store gRPC Info function. This has been deprecated for 3 years, its time to remove it.
3636
- [#7741](https://github.com/thanos-io/thanos/pull/7741) Deps: Bump Objstore to `v0.0.0-20240913074259-63feed0da069`
37+
- [#7813](https://github.com/thanos-io/thanos/pull/7813) Receiver: enable initial TSDB compaction time randomization
3738

3839
### Removed
3940

go.mod

Lines changed: 29 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ module github.com/thanos-io/thanos
33
go 1.23.0
44

55
require (
6-
cloud.google.com/go/storage v1.40.0 // indirect
7-
cloud.google.com/go/trace v1.10.7
6+
cloud.google.com/go/storage v1.43.0 // indirect
7+
cloud.google.com/go/trace v1.10.12
88
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/trace v1.8.3
9-
github.com/alecthomas/units v0.0.0-20231202071711-9a357b53e9c9
9+
github.com/alecthomas/units v0.0.0-20240626203959-61d1e3462e30
1010
github.com/alicebob/miniredis/v2 v2.22.0
1111
github.com/blang/semver/v4 v4.0.0
1212
github.com/bradfitz/gomemcache v0.0.0-20190913173617-a41fca850d0b
@@ -56,20 +56,20 @@ require (
5656
github.com/prometheus/client_golang v1.20.3
5757
github.com/prometheus/client_model v0.6.1
5858
github.com/prometheus/common v0.59.1
59-
github.com/prometheus/exporter-toolkit v0.11.0
59+
github.com/prometheus/exporter-toolkit v0.12.0
6060
// Prometheus maps version 2.x.y to tags v0.x.y.
61-
github.com/prometheus/prometheus v0.53.2-0.20240718123124-e9dec5fc537b
61+
github.com/prometheus/prometheus v0.54.2-0.20240920164404-6f0d6038b7f9
6262
github.com/sony/gobreaker v0.5.0
6363
github.com/stretchr/testify v1.9.0
6464
github.com/thanos-io/objstore v0.0.0-20240913074259-63feed0da069
65-
github.com/thanos-io/promql-engine v0.0.0-20240718195911-cdbd6dfed36b
65+
github.com/thanos-io/promql-engine v0.0.0-20240921092401-37747eddbd31
6666
github.com/uber/jaeger-client-go v2.30.0+incompatible
6767
github.com/uber/jaeger-lib v2.4.1+incompatible // indirect
6868
github.com/vimeo/galaxycache v0.0.0-20210323154928-b7e5d71c067a
6969
github.com/weaveworks/common v0.0.0-20230728070032-dd9e68f319d5
7070
go.elastic.co/apm v1.15.0
7171
go.elastic.co/apm/module/apmot v1.15.0
72-
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.52.0 // indirect
72+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.53.0 // indirect
7373
go.opentelemetry.io/otel v1.29.0
7474
go.opentelemetry.io/otel/bridge/opentracing v1.29.0
7575
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.29.0
@@ -85,8 +85,8 @@ require (
8585
golang.org/x/sync v0.8.0
8686
golang.org/x/text v0.19.0
8787
golang.org/x/time v0.6.0
88-
google.golang.org/api v0.183.0 // indirect
89-
google.golang.org/genproto v0.0.0-20240528184218-531527333157 // indirect
88+
google.golang.org/api v0.195.0 // indirect
89+
google.golang.org/genproto v0.0.0-20240823204242-4ba0660f739c // indirect
9090
google.golang.org/grpc v1.66.0
9191
google.golang.org/grpc/examples v0.0.0-20211119005141-f45e61797429
9292
gopkg.in/alecthomas/kingpin.v2 v2.2.6
@@ -100,11 +100,11 @@ require (
100100
)
101101

102102
require (
103-
cloud.google.com/go v0.114.0 // indirect
104-
cloud.google.com/go/iam v1.1.8 // indirect
105-
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.12.0 // indirect
103+
cloud.google.com/go v0.115.1 // indirect
104+
cloud.google.com/go/iam v1.1.13 // indirect
105+
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.14.0 // indirect
106106
github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.7.0 // indirect
107-
github.com/Azure/azure-sdk-for-go/sdk/internal v1.9.0 // indirect
107+
github.com/Azure/azure-sdk-for-go/sdk/internal v1.10.0 // indirect
108108
github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v1.3.0 // indirect
109109
github.com/AzureAD/microsoft-authentication-library-for-go v1.2.2 // indirect
110110
go.opentelemetry.io/contrib/samplers/jaegerremote v0.23.0
@@ -127,8 +127,8 @@ require (
127127
require github.com/dgryski/go-metro v0.0.0-20200812162917-85c65e2d0165 // indirect
128128

129129
require (
130-
cloud.google.com/go/auth v0.5.1 // indirect
131-
cloud.google.com/go/auth/oauth2adapt v0.2.2 // indirect
130+
cloud.google.com/go/auth v0.9.3 // indirect
131+
cloud.google.com/go/auth/oauth2adapt v0.2.4 // indirect
132132
github.com/HdrHistogram/hdrhistogram-go v1.1.2 // indirect
133133
github.com/bboreham/go-loser v0.0.0-20230920113527-fcc2c21820a3 // indirect
134134
github.com/cilium/ebpf v0.11.0 // indirect
@@ -139,32 +139,34 @@ require (
139139
github.com/goccy/go-json v0.10.3 // indirect
140140
github.com/godbus/dbus/v5 v5.0.4 // indirect
141141
github.com/golang-jwt/jwt/v5 v5.2.1 // indirect
142-
github.com/google/s2a-go v0.1.7 // indirect
142+
github.com/google/s2a-go v0.1.8 // indirect
143143
github.com/huaweicloud/huaweicloud-sdk-go-obs v3.23.3+incompatible // indirect
144144
github.com/jcchavezs/porto v0.1.0 // indirect
145+
github.com/mdlayher/socket v0.4.1 // indirect
146+
github.com/mdlayher/vsock v1.2.1 // indirect
145147
github.com/metalmatze/signal v0.0.0-20210307161603-1c9aa721a97a // indirect
146148
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
147149
github.com/onsi/ginkgo v1.16.5 // indirect
148150
github.com/opencontainers/runtime-spec v1.0.2 // indirect
149151
github.com/pbnjay/memory v0.0.0-20210728143218-7b4eea64cf58 // indirect
150152
github.com/sercand/kuberesolver/v4 v4.0.0 // indirect
151153
github.com/zhangyunhao116/umap v0.0.0-20221211160557-cb7705fafa39 // indirect
152-
go.opentelemetry.io/collector/pdata v1.11.0 // indirect
153-
go.opentelemetry.io/collector/semconv v0.104.0 // indirect
154+
go.opentelemetry.io/collector/pdata v1.14.1 // indirect
155+
go.opentelemetry.io/collector/semconv v0.108.1 // indirect
154156
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 // indirect
155157
go.opentelemetry.io/contrib/propagators/ot v1.29.0 // indirect
156158
go4.org/unsafe/assume-no-moving-gc v0.0.0-20230525183740-e7c30c78aeb2 // indirect
157159
golang.org/x/lint v0.0.0-20210508222113-6edffad5e616 // indirect
158-
google.golang.org/genproto/googleapis/api v0.0.0-20240822170219-fc7c04adadcd // indirect
159-
google.golang.org/genproto/googleapis/rpc v0.0.0-20240822170219-fc7c04adadcd // indirect
160-
k8s.io/apimachinery v0.30.2 // indirect
161-
k8s.io/client-go v0.30.2 // indirect
160+
google.golang.org/genproto/googleapis/api v0.0.0-20240827150818-7e3bb234dfed // indirect
161+
google.golang.org/genproto/googleapis/rpc v0.0.0-20240903143218-8af14fe29dc1 // indirect
162+
k8s.io/apimachinery v0.31.1 // indirect
163+
k8s.io/client-go v0.31.0 // indirect
162164
k8s.io/klog/v2 v2.130.1 // indirect
163-
k8s.io/utils v0.0.0-20240502163921-fe8a2dddb1d0 // indirect
165+
k8s.io/utils v0.0.0-20240711033017-18e509b52bc8 // indirect
164166
)
165167

166168
require (
167-
cloud.google.com/go/compute/metadata v0.3.0 // indirect
169+
cloud.google.com/go/compute/metadata v0.5.0 // indirect
168170
github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping v0.32.3 // indirect
169171
github.com/KimMachineGun/automemlimit v0.6.1
170172
github.com/OneOfOne/xxhash v1.2.6 // indirect
@@ -217,8 +219,8 @@ require (
217219
github.com/google/go-querystring v1.1.0 // indirect
218220
github.com/google/pprof v0.0.0-20240827171923-fa2c70bbbfe5 // indirect
219221
github.com/google/uuid v1.6.0
220-
github.com/googleapis/enterprise-certificate-proxy v0.3.2 // indirect
221-
github.com/googleapis/gax-go/v2 v2.12.4 // indirect
222+
github.com/googleapis/enterprise-certificate-proxy v0.3.3 // indirect
223+
github.com/googleapis/gax-go/v2 v2.13.0 // indirect
222224
github.com/grpc-ecosystem/grpc-gateway/v2 v2.22.0 // indirect
223225
github.com/jmespath/go-jmespath v0.4.0 // indirect
224226
github.com/joeshaw/multierror v0.0.0-20140124173710-69b34d4ec901 // indirect
@@ -266,7 +268,7 @@ require (
266268
go.opentelemetry.io/proto/otlp v1.3.1 // indirect
267269
go.uber.org/multierr v1.11.0 // indirect
268270
golang.org/x/mod v0.21.0 // indirect
269-
golang.org/x/oauth2 v0.22.0 // indirect
271+
golang.org/x/oauth2 v0.23.0 // indirect
270272
golang.org/x/sys v0.26.0 // indirect
271273
golang.org/x/tools v0.24.0 // indirect
272274
gonum.org/v1/gonum v0.15.0 // indirect
@@ -290,8 +292,4 @@ replace (
290292

291293
// Overriding to use latest commit.
292294
gopkg.in/alecthomas/kingpin.v2 => github.com/alecthomas/kingpin v1.3.8-0.20210301060133-17f40c25f497
293-
294-
// From Prometheus.
295-
k8s.io/klog => github.com/simonpasquier/klog-gokit v0.3.0
296-
k8s.io/klog/v2 => github.com/simonpasquier/klog-gokit/v3 v3.0.0
297295
)

0 commit comments

Comments
 (0)