Skip to content

Commit f31a0ea

Browse files
execution: backport histogram stdvar and stddev (#521)
Backport histogram_stdvar and histogram_stddev. Eventually we should import those from prometheus like we do with histogram_quantile and histogram_fraction. Signed-off-by: Michael Hoffmann <[email protected]> Co-authored-by: Michael Hoffmann <[email protected]>
1 parent 31bfaeb commit f31a0ea

File tree

5 files changed

+60
-269
lines changed

5 files changed

+60
-269
lines changed

engine/engine_test.go

-2
Original file line numberDiff line numberDiff line change
@@ -92,9 +92,7 @@ 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/native_histograms.test", // histogram_stddev, histogram_stdvar
9695
"testdata/functions.test", // mad_over_time, predict_linear
97-
"testdata/histograms.test", // histogram_stddev, histogram_stdvar
9896
}, // TODO(sungjin1212): change to test whole cases
9997
TBRun: t,
10098
}

execution/aggregate/accumulator.go

+4-3
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,7 @@ func (a *avgAcc) Add(ctx context.Context, v float64, h *histogram.FloatHistogram
378378
a.hasValue = true
379379

380380
if !a.incremental {
381-
newSum, newC := kahanSumInc(v, a.kahanSum, a.kahanC)
381+
newSum, newC := KahanSumInc(v, a.kahanSum, a.kahanC)
382382

383383
if !math.IsInf(newSum, 0) {
384384
// The sum doesn't overflow, so we propagate it to the
@@ -414,7 +414,7 @@ func (a *avgAcc) Add(ctx context.Context, v float64, h *histogram.FloatHistogram
414414
}
415415
}
416416
currentMean := a.avg + a.kahanC
417-
a.avg, a.kahanC = kahanSumInc(
417+
a.avg, a.kahanC = KahanSumInc(
418418
// Divide each side of the `-` by `group.groupCount` to avoid float64 overflows.
419419
v/float64(a.count)-currentMean/float64(a.count),
420420
a.avg,
@@ -693,7 +693,8 @@ func SumCompensated(s []float64) float64 {
693693
return sum + c
694694
}
695695

696-
func kahanSumInc(inc, sum, c float64) (newSum, newC float64) {
696+
// KahanSumInc implements kahan summation, see https://en.wikipedia.org/wiki/Kahan_summation_algorithm.
697+
func KahanSumInc(inc, sum, c float64) (newSum, newC float64) {
697698
t := sum + inc
698699
switch {
699700
case math.IsInf(t, 0):

execution/function/functions.go

+14-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import (
88
"time"
99

1010
"github.com/prometheus/prometheus/model/histogram"
11+
"github.com/prometheus/prometheus/promql"
1112
"github.com/prometheus/prometheus/promql/parser"
1213
)
1314

@@ -143,7 +144,19 @@ var instantVectorFuncs = map[string]functionCall{
143144
if h == nil || len(vargs) != 2 {
144145
return 0., false
145146
}
146-
return histogramFraction(vargs[0], vargs[1], h), true
147+
return promql.HistogramFraction(vargs[0], vargs[1], h), true
148+
},
149+
"histogram_stddev": func(f float64, h *histogram.FloatHistogram, vargs ...float64) (float64, bool) {
150+
if h == nil {
151+
return 0., false
152+
}
153+
return histogramStdDev(h), true
154+
},
155+
"histogram_stdvar": func(f float64, h *histogram.FloatHistogram, vargs ...float64) (float64, bool) {
156+
if h == nil {
157+
return 0., false
158+
}
159+
return histogramStdVar(h), true
147160
},
148161
// variants of date time functions with an argument
149162
"days_in_month": func(f float64, h *histogram.FloatHistogram, vargs ...float64) (float64, bool) {

execution/function/histogram.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ import (
1515

1616
"github.com/cespare/xxhash/v2"
1717
"github.com/prometheus/prometheus/model/labels"
18+
"github.com/prometheus/prometheus/promql"
1819
"github.com/prometheus/prometheus/promql/parser/posrange"
1920
"github.com/prometheus/prometheus/util/annotations"
2021

@@ -172,7 +173,7 @@ func (o *histogramOperator) processInputSeries(ctx context.Context, vectors []mo
172173
// In that case, we reset the conventional buckets to avoid emitting a sample.
173174
// TODO(fpetkovski): Prometheus is looking to solve these conflicts through warnings: https://github.com/prometheus/prometheus/issues/10839.
174175
if len(o.seriesBuckets[outputSeriesID]) == 0 {
175-
value := histogramQuantile(o.scalarPoints[stepIndex], vector.Histograms[i])
176+
value := promql.HistogramQuantile(o.scalarPoints[stepIndex], vector.Histograms[i])
176177
step.AppendSample(o.pool, uint64(outputSeriesID), value)
177178
} else {
178179
o.seriesBuckets[outputSeriesID] = o.seriesBuckets[outputSeriesID][:0]

0 commit comments

Comments
 (0)