Skip to content

Commit accbf08

Browse files
execution: enable function acceptance tests again (#523)
* implemented mad_over_time function * fixed bug with stepinvariant range vectors Signed-off-by: Michael Hoffmann <[email protected]> Co-authored-by: Michael Hoffmann <[email protected]>
1 parent f31a0ea commit accbf08

File tree

4 files changed

+37
-13
lines changed

4 files changed

+37
-13
lines changed

engine/engine_test.go

-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,6 @@ func TestPromqlAcceptance(t *testing.T) {
9292
skipTests: []string{
9393
"testdata/name_label_dropping.test", // feature unsupported
9494
"testdata/limit.test", // limitk, limit_ratio
95-
"testdata/functions.test", // mad_over_time, predict_linear
9695
}, // TODO(sungjin1212): change to test whole cases
9796
TBRun: t,
9897
}

logicalplan/plan.go

+6
Original file line numberDiff line numberDiff line change
@@ -244,6 +244,12 @@ func replacePrometheusNodes(plan parser.Expr) Node {
244244
case *parser.NumberLiteral:
245245
return &NumberLiteral{Val: t.Val}
246246
case *parser.StepInvariantExpr:
247+
// We expect functions to be pushed down into matrix selectors. This means that
248+
// parents of matrixselector nodes are always expected to be functions, not step invariant
249+
// operators.
250+
if m, ok := t.Expr.(*parser.MatrixSelector); ok {
251+
return replacePrometheusNodes(m)
252+
}
247253
return &StepInvariantExpr{Expr: replacePrometheusNodes(t.Expr)}
248254
case *parser.MatrixSelector:
249255
return &MatrixSelector{

ringbuffer/functions.go

+27-5
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,16 @@ package ringbuffer
66
import (
77
"context"
88
"math"
9+
"sort"
910

1011
"github.com/efficientgo/core/errors"
11-
12-
"github.com/prometheus/prometheus/util/annotations"
13-
14-
"github.com/thanos-io/promql-engine/execution/warnings"
15-
1612
"github.com/prometheus/prometheus/model/histogram"
13+
"github.com/prometheus/prometheus/util/annotations"
14+
"gonum.org/v1/gonum/stat"
1715

1816
"github.com/thanos-io/promql-engine/execution/aggregate"
1917
"github.com/thanos-io/promql-engine/execution/parse"
18+
"github.com/thanos-io/promql-engine/execution/warnings"
2019
)
2120

2221
type SamplesBuffer GenericRingBuffer
@@ -82,6 +81,12 @@ var rangeVectorFuncs = map[string]FunctionCall{
8281
}
8382
return sumOverTime(f.Samples), nil, true, nil
8483
},
84+
"mad_over_time": func(f FunctionArgs) (float64, *histogram.FloatHistogram, bool, error) {
85+
if len(f.Samples) == 0 {
86+
return 0., nil, false, nil
87+
}
88+
return madOverTime(f.Samples), nil, true, nil
89+
},
8590
"max_over_time": func(f FunctionArgs) (float64, *histogram.FloatHistogram, bool, error) {
8691
if len(f.Samples) == 0 {
8792
return 0., nil, false, nil
@@ -583,6 +588,23 @@ func histogramRate(ctx context.Context, points []Sample, isCounter bool) (*histo
583588
return h.Compact(0), nil
584589
}
585590

591+
func madOverTime(points []Sample) float64 {
592+
values := make([]float64, 0, len(points))
593+
for _, f := range points {
594+
values = append(values, f.V.F)
595+
}
596+
sort.Float64s(values)
597+
598+
median := stat.Quantile(0.5, stat.LinInterp, values, nil)
599+
600+
for i, f := range points {
601+
values[i] = math.Abs(f.V.F - median)
602+
}
603+
sort.Float64s(values)
604+
605+
return stat.Quantile(0.5, stat.LinInterp, values, nil)
606+
}
607+
586608
func maxOverTime(points []Sample) float64 {
587609
max := points[0].V.F
588610
for _, v := range points {

storage/prometheus/matrix_selector.go

+4-7
Original file line numberDiff line numberDiff line change
@@ -11,21 +11,18 @@ import (
1111
"sync"
1212
"time"
1313

14-
"github.com/prometheus/prometheus/promql/parser/posrange"
15-
"github.com/prometheus/prometheus/util/annotations"
16-
17-
"github.com/thanos-io/promql-engine/execution/warnings"
18-
19-
"github.com/thanos-io/promql-engine/execution/telemetry"
20-
2114
"github.com/efficientgo/core/errors"
2215
"github.com/prometheus/prometheus/model/histogram"
2316
"github.com/prometheus/prometheus/model/labels"
2417
"github.com/prometheus/prometheus/model/value"
18+
"github.com/prometheus/prometheus/promql/parser/posrange"
2519
"github.com/prometheus/prometheus/tsdb/chunkenc"
20+
"github.com/prometheus/prometheus/util/annotations"
2621

2722
"github.com/thanos-io/promql-engine/execution/model"
2823
"github.com/thanos-io/promql-engine/execution/parse"
24+
"github.com/thanos-io/promql-engine/execution/telemetry"
25+
"github.com/thanos-io/promql-engine/execution/warnings"
2926
"github.com/thanos-io/promql-engine/extlabels"
3027
"github.com/thanos-io/promql-engine/query"
3128
"github.com/thanos-io/promql-engine/ringbuffer"

0 commit comments

Comments
 (0)