-
Notifications
You must be signed in to change notification settings - Fork 2.2k
/
Copy pathgrpc.go
369 lines (327 loc) · 10.2 KB
/
grpc.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
// Copyright (c) The Thanos Authors.
// Licensed under the Apache License 2.0.
package v1
import (
"context"
"time"
"google.golang.org/grpc"
"google.golang.org/grpc/codes"
"google.golang.org/grpc/status"
"github.com/prometheus/prometheus/promql"
"github.com/prometheus/prometheus/storage"
"github.com/thanos-io/promql-engine/api"
"github.com/thanos-io/promql-engine/engine"
"github.com/thanos-io/promql-engine/logicalplan"
"github.com/thanos-io/thanos/pkg/api/query/querypb"
"github.com/thanos-io/thanos/pkg/query"
"github.com/thanos-io/thanos/pkg/store/labelpb"
"github.com/thanos-io/thanos/pkg/store/storepb/prompb"
"github.com/thanos-io/thanos/pkg/tracing"
)
type GRPCAPI struct {
now func() time.Time
replicaLabels []string
queryableCreate query.QueryableCreator
remoteEndpointsCreate query.RemoteEndpointsCreator
queryCreator queryCreator
defaultEngine querypb.EngineType
lookbackDeltaCreate func(int64) time.Duration
defaultMaxResolutionSeconds time.Duration
}
func NewGRPCAPI(
now func() time.Time,
replicaLabels []string,
queryableCreator query.QueryableCreator,
remoteEndpointsCreator query.RemoteEndpointsCreator,
queryCreator queryCreator,
defaultEngine querypb.EngineType,
lookbackDeltaCreate func(int64) time.Duration,
defaultMaxResolutionSeconds time.Duration,
) *GRPCAPI {
return &GRPCAPI{
now: now,
replicaLabels: replicaLabels,
queryableCreate: queryableCreator,
remoteEndpointsCreate: remoteEndpointsCreator,
queryCreator: queryCreator,
defaultEngine: defaultEngine,
lookbackDeltaCreate: lookbackDeltaCreate,
defaultMaxResolutionSeconds: defaultMaxResolutionSeconds,
}
}
func RegisterQueryServer(queryServer querypb.QueryServer) func(*grpc.Server) {
return func(s *grpc.Server) {
querypb.RegisterQueryServer(s, queryServer)
}
}
func (g *GRPCAPI) Query(request *querypb.QueryRequest, server querypb.Query_QueryServer) error {
ctx := server.Context()
if request.TimeoutSeconds != 0 {
var cancel context.CancelFunc
timeout := time.Duration(request.TimeoutSeconds) * time.Second
ctx, cancel = context.WithTimeout(ctx, timeout)
defer cancel()
}
maxResolution := request.MaxResolutionSeconds
if request.MaxResolutionSeconds == 0 {
maxResolution = g.defaultMaxResolutionSeconds.Milliseconds() / 1000
}
storeMatchers, err := querypb.StoreMatchersToLabelMatchers(request.StoreMatchers)
if err != nil {
return err
}
replicaLabels := g.replicaLabels
if len(request.ReplicaLabels) != 0 {
replicaLabels = request.ReplicaLabels
}
queryable := g.queryableCreate(
request.EnableDedup,
replicaLabels,
storeMatchers,
maxResolution,
request.EnablePartialResponse,
false,
request.ShardInfo,
query.NoopSeriesStatsReporter,
)
remoteEndpoints := g.remoteEndpointsCreate(
replicaLabels,
request.EnablePartialResponse,
)
var qry promql.Query
if err := tracing.DoInSpanWithErr(ctx, "instant_query_create", func(ctx context.Context) error {
var err error
qry, err = g.getInstantQueryForEngine(ctx, request, queryable, remoteEndpoints, maxResolution)
return err
}); err != nil {
return err
}
defer qry.Close()
var result *promql.Result
tracing.DoInSpan(ctx, "instant_query_exec", func(ctx context.Context) {
result = qry.Exec(ctx)
})
if result.Err != nil {
if request.EnablePartialResponse {
if err := server.Send(querypb.NewQueryWarningsResponse(result.Err)); err != nil {
return err
}
return nil
}
return status.Error(codes.Aborted, result.Err.Error())
}
if len(result.Warnings) != 0 {
if err := server.Send(querypb.NewQueryWarningsResponse(result.Warnings.AsErrors()...)); err != nil {
return err
}
}
switch vector := result.Value.(type) {
case promql.Scalar:
series := &prompb.TimeSeries{
Samples: []prompb.Sample{{Value: vector.V, Timestamp: vector.T}},
}
if err := server.Send(querypb.NewQueryResponse(series)); err != nil {
return err
}
case promql.Vector:
for _, sample := range vector {
floats, histograms := prompb.SamplesFromPromqlSamples(sample)
series := &prompb.TimeSeries{
Labels: labelpb.ZLabelsFromPromLabels(sample.Metric),
Samples: floats,
Histograms: histograms,
}
if err := server.Send(querypb.NewQueryResponse(series)); err != nil {
return err
}
}
}
if err := server.Send(querypb.NewQueryStatsResponse(extractQueryStats(qry))); err != nil {
return err
}
return nil
}
func (g *GRPCAPI) QueryRange(request *querypb.QueryRangeRequest, srv querypb.Query_QueryRangeServer) error {
ctx := srv.Context()
if request.TimeoutSeconds != 0 {
var cancel context.CancelFunc
timeout := time.Duration(request.TimeoutSeconds) * time.Second
ctx, cancel = context.WithTimeout(ctx, timeout)
defer cancel()
}
maxResolution := request.MaxResolutionSeconds
if request.MaxResolutionSeconds == 0 {
maxResolution = g.defaultMaxResolutionSeconds.Milliseconds() / 1000
}
storeMatchers, err := querypb.StoreMatchersToLabelMatchers(request.StoreMatchers)
if err != nil {
return err
}
replicaLabels := g.replicaLabels
if len(request.ReplicaLabels) != 0 {
replicaLabels = request.ReplicaLabels
}
queryable := g.queryableCreate(
request.EnableDedup,
replicaLabels,
storeMatchers,
maxResolution,
request.EnablePartialResponse,
false,
request.ShardInfo,
query.NoopSeriesStatsReporter,
)
remoteEndpoints := g.remoteEndpointsCreate(
replicaLabels,
request.EnablePartialResponse,
)
var qry promql.Query
if err := tracing.DoInSpanWithErr(ctx, "range_query_create", func(ctx context.Context) error {
var err error
qry, err = g.getRangeQueryForEngine(ctx, request, queryable, remoteEndpoints, maxResolution)
return err
}); err != nil {
return err
}
defer qry.Close()
var result *promql.Result
tracing.DoInSpan(ctx, "range_query_exec", func(ctx context.Context) {
result = qry.Exec(ctx)
})
if result.Err != nil {
return status.Error(codes.Aborted, result.Err.Error())
}
if len(result.Warnings) != 0 {
if err := srv.Send(querypb.NewQueryRangeWarningsResponse(result.Warnings.AsErrors()...)); err != nil {
return err
}
}
switch value := result.Value.(type) {
case promql.Matrix:
for _, series := range value {
floats, histograms := prompb.SamplesFromPromqlSeries(series)
series := &prompb.TimeSeries{
Labels: labelpb.ZLabelsFromPromLabels(series.Metric),
Samples: floats,
Histograms: histograms,
}
if err := srv.Send(querypb.NewQueryRangeResponse(series)); err != nil {
return err
}
}
case promql.Vector:
for _, sample := range value {
floats, histograms := prompb.SamplesFromPromqlSamples(sample)
series := &prompb.TimeSeries{
Labels: labelpb.ZLabelsFromPromLabels(sample.Metric),
Samples: floats,
Histograms: histograms,
}
if err := srv.Send(querypb.NewQueryRangeResponse(series)); err != nil {
return err
}
}
case promql.Scalar:
series := &prompb.TimeSeries{
Samples: []prompb.Sample{{Value: value.V, Timestamp: value.T}},
}
if err := srv.Send(querypb.NewQueryRangeResponse(series)); err != nil {
return err
}
}
if err := srv.Send(querypb.NewQueryRangeStatsResponse(extractQueryStats(qry))); err != nil {
return err
}
return nil
}
func extractQueryStats(qry promql.Query) *querypb.QueryStats {
stats := &querypb.QueryStats{
SamplesTotal: 0,
PeakSamples: 0,
}
if explQry, ok := qry.(engine.ExplainableQuery); ok {
analyze := explQry.Analyze()
stats.SamplesTotal = analyze.TotalSamples()
stats.PeakSamples = analyze.PeakSamples()
}
return stats
}
func (g *GRPCAPI) getInstantQueryForEngine(
ctx context.Context,
request *querypb.QueryRequest,
queryable storage.Queryable,
remoteEndpoints api.RemoteEndpoints,
maxResolution int64,
) (promql.Query, error) {
lookbackDelta := g.lookbackDeltaCreate(maxResolution * 1000)
if request.LookbackDeltaSeconds > 0 {
lookbackDelta = time.Duration(request.LookbackDeltaSeconds) * time.Second
}
engineParam := request.Engine
if engineParam == querypb.EngineType_default {
engineParam = g.defaultEngine
}
var ts time.Time
if request.TimeSeconds == 0 {
ts = g.now()
} else {
ts = time.Unix(request.TimeSeconds, 0)
}
opts := &engine.QueryOpts{
LookbackDeltaParam: lookbackDelta,
}
var engineType PromqlEngineType
switch engineParam {
case querypb.EngineType_prometheus:
engineType = PromqlEnginePrometheus
case querypb.EngineType_thanos:
engineType = PromqlEngineThanos
default:
return nil, status.Error(codes.InvalidArgument, "invalid engine parameter")
}
var qry planOrQuery
if plan, err := logicalplan.Unmarshal(request.QueryPlan.GetJson()); err != nil {
qry = planOrQuery{plan: plan, query: request.Query}
} else {
qry = planOrQuery{query: request.Query}
}
return g.queryCreator.makeInstantQuery(ctx, engineType, queryable, remoteEndpoints, qry, opts, ts)
}
func (g *GRPCAPI) getRangeQueryForEngine(
ctx context.Context,
request *querypb.QueryRangeRequest,
queryable storage.Queryable,
remoteEndpoints api.RemoteEndpoints,
maxResolution int64,
) (promql.Query, error) {
start := time.Unix(request.StartTimeSeconds, 0)
end := time.Unix(request.EndTimeSeconds, 0)
step := time.Duration(request.IntervalSeconds) * time.Second
engineParam := request.Engine
if engineParam == querypb.EngineType_default {
engineParam = g.defaultEngine
}
lookbackDelta := g.lookbackDeltaCreate(maxResolution * 1000)
if request.LookbackDeltaSeconds > 0 {
lookbackDelta = time.Duration(request.LookbackDeltaSeconds) * time.Second
}
opts := &engine.QueryOpts{
LookbackDeltaParam: lookbackDelta,
}
var engineType PromqlEngineType
switch engineParam {
case querypb.EngineType_prometheus:
engineType = PromqlEnginePrometheus
case querypb.EngineType_thanos:
engineType = PromqlEngineThanos
default:
return nil, status.Error(codes.InvalidArgument, "invalid engine parameter")
}
var qry planOrQuery
if plan, err := logicalplan.Unmarshal(request.QueryPlan.GetJson()); err != nil {
qry = planOrQuery{plan: plan, query: request.Query}
} else {
qry = planOrQuery{query: request.Query}
}
return g.queryCreator.makeRangeQuery(ctx, engineType, queryable, remoteEndpoints, qry, opts, start, end, step)
}