Skip to content

Commit efe7173

Browse files
add support for binaryOps for native histograms (#526)
* support binary OR between native histograms Signed-off-by: Saumya Shah <[email protected]> * add test Signed-off-by: Saumya Shah <[email protected]> * update tests Signed-off-by: Saumya Shah <[email protected]> * fix, consider all four cases while doing OR Signed-off-by: Saumya Shah <[email protected]> * fix: consider all cases with proper alignments Signed-off-by: Saumya Shah <[email protected]> * and and unless for native histograms Signed-off-by: Saumya Shah <[email protected]> * lint Signed-off-by: Saumya Shah <[email protected]> * add variations between float and native histograms in many-to-many joins in tests Signed-off-by: Saumya Shah <[email protected]> * format Signed-off-by: Saumya Shah <[email protected]> --------- Signed-off-by: Saumya Shah <[email protected]>
1 parent d17b9bd commit efe7173

File tree

2 files changed

+62
-6
lines changed

2 files changed

+62
-6
lines changed

engine/engine_test.go

+31-1
Original file line numberDiff line numberDiff line change
@@ -5250,7 +5250,6 @@ func TestNativeHistograms(t *testing.T) {
52505250
name: "rate()",
52515251
query: `rate(native_histogram_series[1m])`,
52525252
},
5253-
52545253
{
52555254
name: "increase()",
52565255
query: `increase(native_histogram_series[1m])`,
@@ -5375,6 +5374,36 @@ histogram_sum(
53755374
name: "subqueries",
53765375
query: `increase(rate(native_histogram_series[2m])[2m:15s])`,
53775376
},
5377+
{
5378+
name: "Binary OR",
5379+
query: `
5380+
native_histogram_series
5381+
or
5382+
(histogram_quantile(0.7, native_histogram_series) or rate(native_histogram_series[2m]))`,
5383+
},
5384+
{
5385+
name: "Mixed Binary OR",
5386+
query: `sum(native_histogram_series) or native_histogram_series`, // sum will be a single float value, float series on lhs of 'or'
5387+
},
5388+
{
5389+
name: "Binary AND",
5390+
query: `
5391+
(rate(native_histogram_series[2m]) and histogram_quantile(0.7, native_histogram_series))
5392+
and
5393+
native_histogram_series`,
5394+
},
5395+
{
5396+
name: "Mixed Binary AND",
5397+
query: `native_histogram_series and count(native_histogram_series)`, // count will be a single float value, float series on 'rhs' of 'and'
5398+
},
5399+
{
5400+
name: "many-to-many join Unless",
5401+
query: `sum without (foo) (native_histogram_series) unless native_histogram_series / 2`,
5402+
},
5403+
{
5404+
name: "Mixed many-to-many join Unless",
5405+
query: `native_histogram_series * 3 unless avg(native_histogram_series)`,
5406+
},
53785407
}
53795408

53805409
defer pprof.StopCPUProfile()
@@ -5485,6 +5514,7 @@ func generateNativeHistogramSeries(app storage.Appender, numSeries int, withMixe
54855514
PositiveBuckets: []int64{1, 2, -2, 1, -1, 0, 3},
54865515
Count: 13,
54875516
}
5517+
54885518
for sid, histograms := range series {
54895519
lbls := append(commonLabels, "h", strconv.Itoa(sid))
54905520
for i := range histograms {

execution/binary/vector.go

+31-5
Original file line numberDiff line numberDiff line change
@@ -232,17 +232,19 @@ func (o *vectorOperator) execBinaryAnd(lhs, rhs model.StepVector) (model.StepVec
232232
jp.sid = sampleID
233233
jp.ats = ts
234234
}
235-
for i, sampleID := range lhs.SampleIDs {
236-
if jp := o.hcJoinBuckets[sampleID]; jp.ats == ts {
237-
step.AppendSample(o.pool, o.outputSeriesID(sampleID+1, jp.sid+1), lhs.Samples[i])
238-
}
239-
}
240235

241236
for _, histogramID := range rhs.HistogramIDs {
242237
jp := o.lcJoinBuckets[histogramID]
243238
jp.sid = histogramID
244239
jp.ats = ts
245240
}
241+
242+
for i, sampleID := range lhs.SampleIDs {
243+
if jp := o.hcJoinBuckets[sampleID]; jp.ats == ts {
244+
step.AppendSample(o.pool, o.outputSeriesID(sampleID+1, jp.sid+1), lhs.Samples[i])
245+
}
246+
}
247+
246248
for i, histogramID := range lhs.HistogramIDs {
247249
if jp := o.hcJoinBuckets[histogramID]; jp.ats == ts {
248250
step.AppendHistogram(o.pool, o.outputSeriesID(histogramID+1, jp.sid+1), lhs.Histograms[i])
@@ -260,11 +262,25 @@ func (o *vectorOperator) execBinaryOr(lhs, rhs model.StepVector) (model.StepVect
260262
jp.ats = ts
261263
step.AppendSample(o.pool, o.outputSeriesID(sampleID+1, 0), lhs.Samples[i])
262264
}
265+
266+
for i, histogramID := range lhs.HistogramIDs {
267+
jp := o.hcJoinBuckets[histogramID]
268+
jp.ats = ts
269+
step.AppendHistogram(o.pool, o.outputSeriesID(histogramID+1, 0), lhs.Histograms[i])
270+
}
271+
263272
for i, sampleID := range rhs.SampleIDs {
264273
if jp := o.lcJoinBuckets[sampleID]; jp.ats != ts {
265274
step.AppendSample(o.pool, o.outputSeriesID(0, sampleID+1), rhs.Samples[i])
266275
}
267276
}
277+
278+
for i, histogramID := range rhs.HistogramIDs {
279+
if jp := o.lcJoinBuckets[histogramID]; jp.ats != ts {
280+
step.AppendHistogram(o.pool, o.outputSeriesID(0, histogramID+1), rhs.Histograms[i])
281+
}
282+
}
283+
268284
return step, nil
269285
}
270286

@@ -276,11 +292,21 @@ func (o *vectorOperator) execBinaryUnless(lhs, rhs model.StepVector) (model.Step
276292
jp := o.lcJoinBuckets[sampleID]
277293
jp.ats = ts
278294
}
295+
for _, histogramID := range rhs.HistogramIDs {
296+
jp := o.lcJoinBuckets[histogramID]
297+
jp.ats = ts
298+
}
299+
279300
for i, sampleID := range lhs.SampleIDs {
280301
if jp := o.hcJoinBuckets[sampleID]; jp.ats != ts {
281302
step.AppendSample(o.pool, o.outputSeriesID(sampleID+1, 0), lhs.Samples[i])
282303
}
283304
}
305+
for i, histogramID := range lhs.HistogramIDs {
306+
if jp := o.hcJoinBuckets[histogramID]; jp.ats != ts {
307+
step.AppendHistogram(o.pool, o.outputSeriesID(histogramID+1, 0), lhs.Histograms[i])
308+
}
309+
}
284310
return step, nil
285311
}
286312

0 commit comments

Comments
 (0)