2015-03-30 10:13:36 -07:00
|
|
|
// Copyright 2013 The Prometheus Authors
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
package promql
|
|
|
|
|
|
|
|
import (
|
2016-07-04 05:10:42 -07:00
|
|
|
"container/heap"
|
2015-03-30 10:13:36 -07:00
|
|
|
"fmt"
|
|
|
|
"math"
|
|
|
|
"runtime"
|
|
|
|
"sort"
|
2016-12-28 00:16:48 -08:00
|
|
|
"strconv"
|
2017-03-14 02:57:34 -07:00
|
|
|
"sync"
|
2015-03-30 10:13:36 -07:00
|
|
|
"time"
|
|
|
|
|
2017-01-07 06:41:25 -08:00
|
|
|
"github.com/prometheus/client_golang/prometheus"
|
2015-10-03 01:21:43 -07:00
|
|
|
"github.com/prometheus/common/log"
|
2016-12-24 05:01:10 -08:00
|
|
|
"github.com/prometheus/prometheus/pkg/labels"
|
2016-12-28 00:16:48 -08:00
|
|
|
"github.com/prometheus/prometheus/pkg/timestamp"
|
2016-12-24 16:40:28 -08:00
|
|
|
"github.com/prometheus/prometheus/storage"
|
2015-03-30 10:13:36 -07:00
|
|
|
"golang.org/x/net/context"
|
|
|
|
|
2015-05-29 04:30:30 -07:00
|
|
|
"github.com/prometheus/prometheus/util/stats"
|
2015-03-30 10:13:36 -07:00
|
|
|
)
|
|
|
|
|
2016-11-04 16:48:32 -07:00
|
|
|
const (
|
2017-01-07 06:41:25 -08:00
|
|
|
namespace = "prometheus"
|
|
|
|
subsystem = "engine"
|
|
|
|
|
2016-11-04 16:48:32 -07:00
|
|
|
// The largest SampleValue that can be converted to an int64 without overflow.
|
2016-12-23 04:51:59 -08:00
|
|
|
maxInt64 = 9223372036854774784
|
2016-11-04 16:48:32 -07:00
|
|
|
// The smallest SampleValue that can be converted to an int64 without underflow.
|
2016-12-23 04:51:59 -08:00
|
|
|
minInt64 = -9223372036854775808
|
2016-11-04 16:48:32 -07:00
|
|
|
)
|
|
|
|
|
2017-01-07 06:41:25 -08:00
|
|
|
var (
|
|
|
|
currentQueries = prometheus.NewGauge(prometheus.GaugeOpts{
|
|
|
|
Namespace: namespace,
|
|
|
|
Subsystem: subsystem,
|
|
|
|
Name: "queries",
|
|
|
|
Help: "The current number of queries being executed or waiting.",
|
|
|
|
})
|
|
|
|
maxConcurrentQueries = prometheus.NewGauge(prometheus.GaugeOpts{
|
|
|
|
Namespace: namespace,
|
|
|
|
Subsystem: subsystem,
|
|
|
|
Name: "queries_concurrent_max",
|
|
|
|
Help: "The max number of concurrent queries.",
|
|
|
|
})
|
2017-02-13 08:45:00 -08:00
|
|
|
queryPrepareTime = prometheus.NewSummary(
|
|
|
|
prometheus.SummaryOpts{
|
|
|
|
Namespace: namespace,
|
|
|
|
Subsystem: subsystem,
|
|
|
|
Name: "query_duration_seconds",
|
2017-03-06 03:46:37 -08:00
|
|
|
Help: "Query timings",
|
2017-02-13 08:45:00 -08:00
|
|
|
ConstLabels: prometheus.Labels{"slice": "prepare_time"},
|
|
|
|
},
|
|
|
|
)
|
|
|
|
queryInnerEval = prometheus.NewSummary(
|
|
|
|
prometheus.SummaryOpts{
|
|
|
|
Namespace: namespace,
|
|
|
|
Subsystem: subsystem,
|
|
|
|
Name: "query_duration_seconds",
|
2017-03-06 03:46:37 -08:00
|
|
|
Help: "Query timings",
|
2017-02-13 08:45:00 -08:00
|
|
|
ConstLabels: prometheus.Labels{"slice": "inner_eval"},
|
|
|
|
},
|
|
|
|
)
|
|
|
|
queryResultAppend = prometheus.NewSummary(
|
|
|
|
prometheus.SummaryOpts{
|
|
|
|
Namespace: namespace,
|
|
|
|
Subsystem: subsystem,
|
|
|
|
Name: "query_duration_seconds",
|
2017-03-06 03:46:37 -08:00
|
|
|
Help: "Query timings",
|
2017-02-13 08:45:00 -08:00
|
|
|
ConstLabels: prometheus.Labels{"slice": "result_append"},
|
|
|
|
},
|
|
|
|
)
|
|
|
|
queryResultSort = prometheus.NewSummary(
|
|
|
|
prometheus.SummaryOpts{
|
|
|
|
Namespace: namespace,
|
|
|
|
Subsystem: subsystem,
|
|
|
|
Name: "query_duration_seconds",
|
2017-03-06 03:46:37 -08:00
|
|
|
Help: "Query timings",
|
2017-02-13 08:45:00 -08:00
|
|
|
ConstLabels: prometheus.Labels{"slice": "result_sort"},
|
|
|
|
},
|
|
|
|
)
|
2017-01-07 06:41:25 -08:00
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
prometheus.MustRegister(currentQueries)
|
|
|
|
prometheus.MustRegister(maxConcurrentQueries)
|
2017-02-13 08:45:00 -08:00
|
|
|
prometheus.MustRegister(queryPrepareTime)
|
|
|
|
prometheus.MustRegister(queryInnerEval)
|
|
|
|
prometheus.MustRegister(queryResultAppend)
|
|
|
|
prometheus.MustRegister(queryResultSort)
|
2017-01-07 06:41:25 -08:00
|
|
|
}
|
|
|
|
|
2016-11-04 16:48:32 -07:00
|
|
|
// convertibleToInt64 returns true if v does not over-/underflow an int64.
|
2016-12-23 04:51:59 -08:00
|
|
|
func convertibleToInt64(v float64) bool {
|
2016-11-04 16:48:32 -07:00
|
|
|
return v <= maxInt64 && v >= minInt64
|
|
|
|
}
|
|
|
|
|
2015-03-30 10:13:36 -07:00
|
|
|
type (
|
|
|
|
// ErrQueryTimeout is returned if a query timed out during processing.
|
|
|
|
ErrQueryTimeout string
|
|
|
|
// ErrQueryCanceled is returned if a query was canceled during processing.
|
|
|
|
ErrQueryCanceled string
|
2017-04-04 09:22:51 -07:00
|
|
|
// ErrStorage is returned if an error was encountered in the storage layer
|
|
|
|
// during query handling.
|
|
|
|
ErrStorage error
|
2015-03-30 10:13:36 -07:00
|
|
|
)
|
|
|
|
|
2015-05-01 08:58:58 -07:00
|
|
|
func (e ErrQueryTimeout) Error() string { return fmt.Sprintf("query timed out in %s", string(e)) }
|
|
|
|
func (e ErrQueryCanceled) Error() string { return fmt.Sprintf("query was canceled in %s", string(e)) }
|
2015-03-30 10:13:36 -07:00
|
|
|
|
|
|
|
// A Query is derived from an a raw query string and can be run against an engine
|
|
|
|
// it is associated with.
|
|
|
|
type Query interface {
|
|
|
|
// Exec processes the query and
|
promql: Allow per-query contexts.
For Weaveworks' Frankenstein, we need to support multitenancy. In
Frankenstein, we initially solved this without modifying the promql
package at all: we constructed a new promql.Engine for every
query and injected a storage implementation into that engine which would
be primed to only collect data for a given user.
This is problematic to upstream, however. Prometheus assumes that there
is only one engine: the query concurrency gate is part of the engine,
and the engine contains one central cancellable context to shut down all
queries. Also, creating a new engine for every query seems like overkill.
Thus, we want to be able to pass per-query contexts into a single engine.
This change gets rid of the promql.Engine's built-in base context and
allows passing in a per-query context instead. Central cancellation of
all queries is still possible by deriving all passed-in contexts from
one central one, but this is now the responsibility of the caller. The
central query context is now created in main() and passed into the
relevant components (web handler / API, rule manager).
In a next step, the per-query context would have to be passed to the
storage implementation, so that the storage can implement multi-tenancy
or other features based on the contextual information.
2016-09-15 04:52:50 -07:00
|
|
|
Exec(ctx context.Context) *Result
|
2015-08-10 05:21:24 -07:00
|
|
|
// Statement returns the parsed statement of the query.
|
|
|
|
Statement() Statement
|
2015-03-30 10:13:36 -07:00
|
|
|
// Stats returns statistics about the lifetime of the query.
|
|
|
|
Stats() *stats.TimerGroup
|
|
|
|
// Cancel signals that a running query execution should be aborted.
|
|
|
|
Cancel()
|
|
|
|
}
|
|
|
|
|
|
|
|
// query implements the Query interface.
|
|
|
|
type query struct {
|
|
|
|
// The original query string.
|
|
|
|
q string
|
2015-08-10 05:21:24 -07:00
|
|
|
// Statement of the parsed query.
|
|
|
|
stmt Statement
|
2015-03-30 10:13:36 -07:00
|
|
|
// Timer stats for the query execution.
|
|
|
|
stats *stats.TimerGroup
|
|
|
|
// Cancelation function for the query.
|
|
|
|
cancel func()
|
|
|
|
|
|
|
|
// The engine against which the query is executed.
|
|
|
|
ng *Engine
|
|
|
|
}
|
|
|
|
|
2015-08-10 05:21:24 -07:00
|
|
|
// Statement implements the Query interface.
|
|
|
|
func (q *query) Statement() Statement {
|
|
|
|
return q.stmt
|
2015-03-30 10:13:36 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// Stats implements the Query interface.
|
|
|
|
func (q *query) Stats() *stats.TimerGroup {
|
|
|
|
return q.stats
|
|
|
|
}
|
|
|
|
|
|
|
|
// Cancel implements the Query interface.
|
|
|
|
func (q *query) Cancel() {
|
|
|
|
if q.cancel != nil {
|
|
|
|
q.cancel()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Exec implements the Query interface.
|
promql: Allow per-query contexts.
For Weaveworks' Frankenstein, we need to support multitenancy. In
Frankenstein, we initially solved this without modifying the promql
package at all: we constructed a new promql.Engine for every
query and injected a storage implementation into that engine which would
be primed to only collect data for a given user.
This is problematic to upstream, however. Prometheus assumes that there
is only one engine: the query concurrency gate is part of the engine,
and the engine contains one central cancellable context to shut down all
queries. Also, creating a new engine for every query seems like overkill.
Thus, we want to be able to pass per-query contexts into a single engine.
This change gets rid of the promql.Engine's built-in base context and
allows passing in a per-query context instead. Central cancellation of
all queries is still possible by deriving all passed-in contexts from
one central one, but this is now the responsibility of the caller. The
central query context is now created in main() and passed into the
relevant components (web handler / API, rule manager).
In a next step, the per-query context would have to be passed to the
storage implementation, so that the storage can implement multi-tenancy
or other features based on the contextual information.
2016-09-15 04:52:50 -07:00
|
|
|
func (q *query) Exec(ctx context.Context) *Result {
|
|
|
|
res, err := q.ng.exec(ctx, q)
|
2015-03-30 10:13:36 -07:00
|
|
|
return &Result{Err: err, Value: res}
|
|
|
|
}
|
|
|
|
|
|
|
|
// contextDone returns an error if the context was canceled or timed out.
|
|
|
|
func contextDone(ctx context.Context, env string) error {
|
|
|
|
select {
|
|
|
|
case <-ctx.Done():
|
|
|
|
err := ctx.Err()
|
|
|
|
switch err {
|
|
|
|
case context.Canceled:
|
|
|
|
return ErrQueryCanceled(env)
|
|
|
|
case context.DeadlineExceeded:
|
|
|
|
return ErrQueryTimeout(env)
|
|
|
|
default:
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-19 06:28:53 -07:00
|
|
|
// Engine handles the lifetime of queries from beginning to end.
|
2016-07-11 11:27:25 -07:00
|
|
|
// It is connected to a querier.
|
2015-03-30 10:13:36 -07:00
|
|
|
type Engine struct {
|
2016-10-12 10:34:22 -07:00
|
|
|
// A Querier constructor against an underlying storage.
|
|
|
|
queryable Queryable
|
2015-04-30 15:49:19 -07:00
|
|
|
// The gate limiting the maximum number of concurrent and waiting queries.
|
promql: Allow per-query contexts.
For Weaveworks' Frankenstein, we need to support multitenancy. In
Frankenstein, we initially solved this without modifying the promql
package at all: we constructed a new promql.Engine for every
query and injected a storage implementation into that engine which would
be primed to only collect data for a given user.
This is problematic to upstream, however. Prometheus assumes that there
is only one engine: the query concurrency gate is part of the engine,
and the engine contains one central cancellable context to shut down all
queries. Also, creating a new engine for every query seems like overkill.
Thus, we want to be able to pass per-query contexts into a single engine.
This change gets rid of the promql.Engine's built-in base context and
allows passing in a per-query context instead. Central cancellation of
all queries is still possible by deriving all passed-in contexts from
one central one, but this is now the responsibility of the caller. The
central query context is now created in main() and passed into the
relevant components (web handler / API, rule manager).
In a next step, the per-query context would have to be passed to the
storage implementation, so that the storage can implement multi-tenancy
or other features based on the contextual information.
2016-09-15 04:52:50 -07:00
|
|
|
gate *queryGate
|
2015-06-15 03:49:11 -07:00
|
|
|
options *EngineOptions
|
2015-03-30 10:13:36 -07:00
|
|
|
}
|
|
|
|
|
2016-10-12 10:34:22 -07:00
|
|
|
// Queryable allows opening a storage querier.
|
|
|
|
type Queryable interface {
|
2016-12-24 16:40:28 -08:00
|
|
|
Querier(mint, maxt int64) (storage.Querier, error)
|
2016-10-12 10:34:22 -07:00
|
|
|
}
|
|
|
|
|
2015-03-30 10:13:36 -07:00
|
|
|
// NewEngine returns a new engine.
|
2016-10-12 10:34:22 -07:00
|
|
|
func NewEngine(queryable Queryable, o *EngineOptions) *Engine {
|
2015-06-15 03:49:11 -07:00
|
|
|
if o == nil {
|
|
|
|
o = DefaultEngineOptions
|
|
|
|
}
|
2017-01-07 06:41:25 -08:00
|
|
|
maxConcurrentQueries.Set(float64(o.MaxConcurrentQueries))
|
2015-03-30 10:13:36 -07:00
|
|
|
return &Engine{
|
2016-10-12 10:34:22 -07:00
|
|
|
queryable: queryable,
|
|
|
|
gate: newQueryGate(o.MaxConcurrentQueries),
|
|
|
|
options: o,
|
2015-03-30 10:13:36 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-15 03:49:11 -07:00
|
|
|
// EngineOptions contains configuration parameters for an Engine.
|
|
|
|
type EngineOptions struct {
|
|
|
|
MaxConcurrentQueries int
|
|
|
|
Timeout time.Duration
|
|
|
|
}
|
|
|
|
|
|
|
|
// DefaultEngineOptions are the default engine options.
|
|
|
|
var DefaultEngineOptions = &EngineOptions{
|
|
|
|
MaxConcurrentQueries: 20,
|
|
|
|
Timeout: 2 * time.Minute,
|
|
|
|
}
|
|
|
|
|
2015-03-30 10:13:36 -07:00
|
|
|
// NewInstantQuery returns an evaluation query for the given expression at the given time.
|
2016-12-23 04:51:59 -08:00
|
|
|
func (ng *Engine) NewInstantQuery(qs string, ts time.Time) (Query, error) {
|
2015-06-25 04:44:05 -07:00
|
|
|
expr, err := ParseExpr(qs)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
qry := ng.newQuery(expr, ts, ts, 0)
|
|
|
|
qry.q = qs
|
|
|
|
|
|
|
|
return qry, nil
|
2015-03-30 10:13:36 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewRangeQuery returns an evaluation query for the given time range and with
|
|
|
|
// the resolution set by the interval.
|
2016-12-23 04:51:59 -08:00
|
|
|
func (ng *Engine) NewRangeQuery(qs string, start, end time.Time, interval time.Duration) (Query, error) {
|
2015-04-29 02:36:41 -07:00
|
|
|
expr, err := ParseExpr(qs)
|
2015-03-30 10:13:36 -07:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2016-12-23 04:51:59 -08:00
|
|
|
if expr.Type() != ValueTypeVector && expr.Type() != ValueTypeScalar {
|
2016-12-24 01:44:04 -08:00
|
|
|
return nil, fmt.Errorf("invalid expression type %q for range query, must be Scalar or instant Vector", documentedType(expr.Type()))
|
2015-06-09 03:52:27 -07:00
|
|
|
}
|
2015-05-11 06:56:35 -07:00
|
|
|
qry := ng.newQuery(expr, start, end, interval)
|
|
|
|
qry.q = qs
|
|
|
|
|
|
|
|
return qry, nil
|
|
|
|
}
|
|
|
|
|
2016-12-23 04:51:59 -08:00
|
|
|
func (ng *Engine) newQuery(expr Expr, start, end time.Time, interval time.Duration) *query {
|
2015-03-30 10:13:36 -07:00
|
|
|
es := &EvalStmt{
|
|
|
|
Expr: expr,
|
|
|
|
Start: start,
|
|
|
|
End: end,
|
|
|
|
Interval: interval,
|
|
|
|
}
|
2015-04-29 02:08:56 -07:00
|
|
|
qry := &query{
|
2015-08-10 05:21:24 -07:00
|
|
|
stmt: es,
|
2015-03-30 10:13:36 -07:00
|
|
|
ng: ng,
|
|
|
|
stats: stats.NewTimerGroup(),
|
|
|
|
}
|
2015-05-11 06:56:35 -07:00
|
|
|
return qry
|
2015-03-30 10:13:36 -07:00
|
|
|
}
|
|
|
|
|
2015-04-29 02:08:56 -07:00
|
|
|
// testStmt is an internal helper statement that allows execution
|
|
|
|
// of an arbitrary function during handling. It is used to test the Engine.
|
|
|
|
type testStmt func(context.Context) error
|
|
|
|
|
2016-07-11 11:27:25 -07:00
|
|
|
func (testStmt) String() string { return "test statement" }
|
|
|
|
func (testStmt) stmt() {}
|
2015-04-29 02:08:56 -07:00
|
|
|
|
2015-08-10 05:21:24 -07:00
|
|
|
func (ng *Engine) newTestQuery(f func(context.Context) error) Query {
|
2015-04-29 02:08:56 -07:00
|
|
|
qry := &query{
|
|
|
|
q: "test statement",
|
2015-08-10 05:21:24 -07:00
|
|
|
stmt: testStmt(f),
|
2015-04-29 02:08:56 -07:00
|
|
|
ng: ng,
|
|
|
|
stats: stats.NewTimerGroup(),
|
|
|
|
}
|
|
|
|
return qry
|
|
|
|
}
|
|
|
|
|
|
|
|
// exec executes the query.
|
|
|
|
//
|
|
|
|
// At this point per query only one EvalStmt is evaluated. Alert and record
|
|
|
|
// statements are not handled by the Engine.
|
2016-12-23 04:51:59 -08:00
|
|
|
func (ng *Engine) exec(ctx context.Context, q *query) (Value, error) {
|
2017-01-07 06:41:25 -08:00
|
|
|
currentQueries.Inc()
|
|
|
|
defer currentQueries.Dec()
|
2017-01-30 08:30:28 -08:00
|
|
|
|
promql: Allow per-query contexts.
For Weaveworks' Frankenstein, we need to support multitenancy. In
Frankenstein, we initially solved this without modifying the promql
package at all: we constructed a new promql.Engine for every
query and injected a storage implementation into that engine which would
be primed to only collect data for a given user.
This is problematic to upstream, however. Prometheus assumes that there
is only one engine: the query concurrency gate is part of the engine,
and the engine contains one central cancellable context to shut down all
queries. Also, creating a new engine for every query seems like overkill.
Thus, we want to be able to pass per-query contexts into a single engine.
This change gets rid of the promql.Engine's built-in base context and
allows passing in a per-query context instead. Central cancellation of
all queries is still possible by deriving all passed-in contexts from
one central one, but this is now the responsibility of the caller. The
central query context is now created in main() and passed into the
relevant components (web handler / API, rule manager).
In a next step, the per-query context would have to be passed to the
storage implementation, so that the storage can implement multi-tenancy
or other features based on the contextual information.
2016-09-15 04:52:50 -07:00
|
|
|
ctx, cancel := context.WithTimeout(ctx, ng.options.Timeout)
|
2015-04-30 15:49:19 -07:00
|
|
|
q.cancel = cancel
|
|
|
|
|
|
|
|
queueTimer := q.stats.GetTimer(stats.ExecQueueTime).Start()
|
|
|
|
|
|
|
|
if err := ng.gate.Start(ctx); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
defer ng.gate.Done()
|
|
|
|
|
|
|
|
queueTimer.Stop()
|
|
|
|
|
2015-03-30 10:13:36 -07:00
|
|
|
// Cancel when execution is done or an error was raised.
|
|
|
|
defer q.cancel()
|
|
|
|
|
2015-08-10 05:21:24 -07:00
|
|
|
const env = "query execution"
|
|
|
|
|
2015-03-30 10:13:36 -07:00
|
|
|
evalTimer := q.stats.GetTimer(stats.TotalEvalTime).Start()
|
|
|
|
defer evalTimer.Stop()
|
|
|
|
|
2015-08-10 05:21:24 -07:00
|
|
|
// The base context might already be canceled on the first iteration (e.g. during shutdown).
|
|
|
|
if err := contextDone(ctx, env); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2015-04-29 02:08:56 -07:00
|
|
|
|
2015-08-10 05:21:24 -07:00
|
|
|
switch s := q.Statement().(type) {
|
|
|
|
case *EvalStmt:
|
|
|
|
return ng.execEvalStmt(ctx, q, s)
|
|
|
|
case testStmt:
|
|
|
|
return nil, s(ctx)
|
2015-03-30 10:13:36 -07:00
|
|
|
}
|
2015-08-10 05:21:24 -07:00
|
|
|
|
|
|
|
panic(fmt.Errorf("promql.Engine.exec: unhandled statement of type %T", q.Statement()))
|
2015-03-30 10:13:36 -07:00
|
|
|
}
|
|
|
|
|
2016-12-23 04:51:59 -08:00
|
|
|
func timeMilliseconds(t time.Time) int64 {
|
|
|
|
return t.UnixNano() / int64(time.Millisecond/time.Nanosecond)
|
|
|
|
}
|
|
|
|
|
|
|
|
func durationMilliseconds(d time.Duration) int64 {
|
|
|
|
return int64(d / (time.Millisecond / time.Nanosecond))
|
|
|
|
}
|
|
|
|
|
2015-03-30 10:13:36 -07:00
|
|
|
// execEvalStmt evaluates the expression of an evaluation statement for the given time range.
|
2016-12-23 04:51:59 -08:00
|
|
|
func (ng *Engine) execEvalStmt(ctx context.Context, query *query, s *EvalStmt) (Value, error) {
|
2016-10-12 10:34:22 -07:00
|
|
|
|
2016-07-11 11:27:25 -07:00
|
|
|
prepareTimer := query.stats.GetTimer(stats.QueryPreparationTime).Start()
|
2016-12-23 04:51:59 -08:00
|
|
|
querier, err := ng.populateIterators(ctx, s)
|
2016-07-11 11:27:25 -07:00
|
|
|
prepareTimer.Stop()
|
2017-02-13 08:45:00 -08:00
|
|
|
queryPrepareTime.Observe(prepareTimer.ElapsedTime().Seconds())
|
|
|
|
|
2017-03-09 06:40:52 -08:00
|
|
|
// XXX(fabxc): the querier returned by populateIterators might be instantiated
|
|
|
|
// we must not return without closing irrespective of the error.
|
|
|
|
// TODO: make this semantically saner.
|
|
|
|
if querier != nil {
|
|
|
|
defer querier.Close()
|
|
|
|
}
|
|
|
|
|
2015-03-30 10:13:36 -07:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
evalTimer := query.stats.GetTimer(stats.InnerEvalTime).Start()
|
|
|
|
// Instant evaluation.
|
|
|
|
if s.Start == s.End && s.Interval == 0 {
|
|
|
|
evaluator := &evaluator{
|
2016-12-23 04:51:59 -08:00
|
|
|
Timestamp: timeMilliseconds(s.Start),
|
2015-03-30 10:13:36 -07:00
|
|
|
ctx: ctx,
|
|
|
|
}
|
|
|
|
val, err := evaluator.Eval(s.Expr)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
evalTimer.Stop()
|
2017-02-13 08:45:00 -08:00
|
|
|
queryInnerEval.Observe(evalTimer.ElapsedTime().Seconds())
|
|
|
|
|
2015-03-30 10:13:36 -07:00
|
|
|
return val, nil
|
|
|
|
}
|
2015-06-09 03:52:27 -07:00
|
|
|
numSteps := int(s.End.Sub(s.Start) / s.Interval)
|
2015-03-30 10:13:36 -07:00
|
|
|
|
|
|
|
// Range evaluation.
|
2016-12-24 02:32:42 -08:00
|
|
|
Seriess := map[uint64]Series{}
|
2015-03-30 10:13:36 -07:00
|
|
|
for ts := s.Start; !ts.After(s.End); ts = ts.Add(s.Interval) {
|
|
|
|
|
|
|
|
if err := contextDone(ctx, "range evaluation"); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
evaluator := &evaluator{
|
2016-12-23 04:51:59 -08:00
|
|
|
Timestamp: timeMilliseconds(ts),
|
2015-03-30 10:13:36 -07:00
|
|
|
ctx: ctx,
|
|
|
|
}
|
|
|
|
val, err := evaluator.Eval(s.Expr)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2015-06-09 03:52:27 -07:00
|
|
|
switch v := val.(type) {
|
2016-12-24 01:44:04 -08:00
|
|
|
case Scalar:
|
2015-06-09 03:52:27 -07:00
|
|
|
// As the expression type does not change we can safely default to 0
|
2016-12-24 01:44:04 -08:00
|
|
|
// as the fingerprint for Scalar expressions.
|
2016-12-24 02:32:42 -08:00
|
|
|
ss, ok := Seriess[0]
|
2016-12-23 04:51:59 -08:00
|
|
|
if !ok {
|
2016-12-24 02:32:42 -08:00
|
|
|
ss = Series{Points: make([]Point, 0, numSteps)}
|
|
|
|
Seriess[0] = ss
|
2015-03-30 10:13:36 -07:00
|
|
|
}
|
2016-12-24 02:29:39 -08:00
|
|
|
ss.Points = append(ss.Points, Point(v))
|
2016-12-30 01:43:44 -08:00
|
|
|
Seriess[0] = ss
|
2016-12-24 01:40:09 -08:00
|
|
|
case Vector:
|
2015-06-09 03:52:27 -07:00
|
|
|
for _, sample := range v {
|
2016-12-23 04:51:59 -08:00
|
|
|
h := sample.Metric.Hash()
|
2016-12-24 02:32:42 -08:00
|
|
|
ss, ok := Seriess[h]
|
2016-12-23 04:51:59 -08:00
|
|
|
if !ok {
|
2016-12-24 02:32:42 -08:00
|
|
|
ss = Series{
|
2015-06-11 14:50:53 -07:00
|
|
|
Metric: sample.Metric,
|
2016-12-24 02:29:39 -08:00
|
|
|
Points: make([]Point, 0, numSteps),
|
2015-06-11 14:50:53 -07:00
|
|
|
}
|
2016-12-24 02:32:42 -08:00
|
|
|
Seriess[h] = ss
|
2015-03-30 10:13:36 -07:00
|
|
|
}
|
2016-12-24 02:29:39 -08:00
|
|
|
ss.Points = append(ss.Points, sample.Point)
|
2016-12-29 00:27:30 -08:00
|
|
|
Seriess[h] = ss
|
2015-06-09 03:52:27 -07:00
|
|
|
}
|
|
|
|
default:
|
|
|
|
panic(fmt.Errorf("promql.Engine.exec: invalid expression type %q", val.Type()))
|
2015-03-30 10:13:36 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
evalTimer.Stop()
|
2017-02-13 08:45:00 -08:00
|
|
|
queryInnerEval.Observe(evalTimer.ElapsedTime().Seconds())
|
2015-03-30 10:13:36 -07:00
|
|
|
|
|
|
|
if err := contextDone(ctx, "expression evaluation"); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
appendTimer := query.stats.GetTimer(stats.ResultAppendTime).Start()
|
2016-12-24 01:42:54 -08:00
|
|
|
mat := Matrix{}
|
2016-12-24 02:32:42 -08:00
|
|
|
for _, ss := range Seriess {
|
2015-08-24 09:04:41 -07:00
|
|
|
mat = append(mat, ss)
|
2015-03-30 10:13:36 -07:00
|
|
|
}
|
|
|
|
appendTimer.Stop()
|
2017-02-13 08:45:00 -08:00
|
|
|
queryResultAppend.Observe(appendTimer.ElapsedTime().Seconds())
|
2015-03-30 10:13:36 -07:00
|
|
|
|
|
|
|
if err := contextDone(ctx, "expression evaluation"); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2016-12-23 04:51:59 -08:00
|
|
|
// TODO(fabxc): order ensured by storage?
|
2016-12-29 00:27:30 -08:00
|
|
|
// TODO(fabxc): where to ensure metric labels are a copy from the storage internals.
|
|
|
|
sortTimer := query.stats.GetTimer(stats.ResultSortTime).Start()
|
|
|
|
sort.Sort(mat)
|
|
|
|
sortTimer.Stop()
|
2015-03-30 10:13:36 -07:00
|
|
|
|
2017-02-13 08:45:00 -08:00
|
|
|
queryResultSort.Observe(sortTimer.ElapsedTime().Seconds())
|
2016-12-29 00:27:30 -08:00
|
|
|
return mat, nil
|
2015-03-30 10:13:36 -07:00
|
|
|
}
|
|
|
|
|
2016-12-24 16:40:28 -08:00
|
|
|
func (ng *Engine) populateIterators(ctx context.Context, s *EvalStmt) (storage.Querier, error) {
|
2016-12-23 04:51:59 -08:00
|
|
|
var maxOffset time.Duration
|
|
|
|
|
2016-07-11 11:27:25 -07:00
|
|
|
Inspect(s.Expr, func(node Node) bool {
|
|
|
|
switch n := node.(type) {
|
|
|
|
case *VectorSelector:
|
2016-12-28 00:16:48 -08:00
|
|
|
if maxOffset < StalenessDelta {
|
|
|
|
maxOffset = StalenessDelta
|
|
|
|
}
|
|
|
|
if n.Offset+StalenessDelta > maxOffset {
|
2016-12-23 04:51:59 -08:00
|
|
|
maxOffset = n.Offset + StalenessDelta
|
2016-07-11 11:27:25 -07:00
|
|
|
}
|
|
|
|
case *MatrixSelector:
|
2016-12-28 00:16:48 -08:00
|
|
|
if maxOffset < n.Range {
|
|
|
|
maxOffset = n.Range
|
|
|
|
}
|
|
|
|
if n.Offset+n.Range > maxOffset {
|
2016-12-23 04:51:59 -08:00
|
|
|
maxOffset = n.Offset + n.Range
|
2016-07-11 11:27:25 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
})
|
|
|
|
|
2016-12-23 04:51:59 -08:00
|
|
|
mint := s.Start.Add(-maxOffset)
|
|
|
|
|
2016-12-28 00:16:48 -08:00
|
|
|
querier, err := ng.queryable.Querier(timestamp.FromTime(mint), timestamp.FromTime(s.End))
|
2016-12-23 04:51:59 -08:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2016-07-11 11:27:25 -07:00
|
|
|
Inspect(s.Expr, func(node Node) bool {
|
|
|
|
switch n := node.(type) {
|
|
|
|
case *VectorSelector:
|
2016-12-24 16:40:28 -08:00
|
|
|
n.series, err = expandSeriesSet(querier.Select(n.LabelMatchers...))
|
2016-12-23 04:51:59 -08:00
|
|
|
if err != nil {
|
2016-12-28 00:16:48 -08:00
|
|
|
// TODO(fabxc): use multi-error.
|
|
|
|
log.Errorln("expand series set:", err)
|
2016-12-23 04:51:59 -08:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
for _, s := range n.series {
|
2016-12-24 16:40:28 -08:00
|
|
|
it := storage.NewBuffer(s.Iterator(), durationMilliseconds(StalenessDelta))
|
2016-12-23 04:51:59 -08:00
|
|
|
n.iterators = append(n.iterators, it)
|
2016-07-11 11:27:25 -07:00
|
|
|
}
|
2016-12-23 04:51:59 -08:00
|
|
|
|
2016-12-24 16:40:28 -08:00
|
|
|
case *MatrixSelector:
|
|
|
|
n.series, err = expandSeriesSet(querier.Select(n.LabelMatchers...))
|
2016-12-23 04:51:59 -08:00
|
|
|
if err != nil {
|
2016-12-28 00:16:48 -08:00
|
|
|
log.Errorln("expand series set:", err)
|
2016-12-23 04:51:59 -08:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
for _, s := range n.series {
|
2016-12-24 16:40:28 -08:00
|
|
|
it := storage.NewBuffer(s.Iterator(), durationMilliseconds(n.Range))
|
2016-12-23 04:51:59 -08:00
|
|
|
n.iterators = append(n.iterators, it)
|
2016-07-11 11:27:25 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
})
|
2016-12-23 04:51:59 -08:00
|
|
|
return querier, err
|
|
|
|
}
|
|
|
|
|
2016-12-24 16:40:28 -08:00
|
|
|
func expandSeriesSet(it storage.SeriesSet) (res []storage.Series, err error) {
|
2016-12-23 04:51:59 -08:00
|
|
|
for it.Next() {
|
2017-01-02 04:33:37 -08:00
|
|
|
res = append(res, it.At())
|
2016-12-23 04:51:59 -08:00
|
|
|
}
|
|
|
|
return res, it.Err()
|
2016-07-11 11:27:25 -07:00
|
|
|
}
|
|
|
|
|
2015-03-30 10:13:36 -07:00
|
|
|
// An evaluator evaluates given expressions at a fixed timestamp. It is attached to an
|
2016-07-11 11:27:25 -07:00
|
|
|
// engine through which it connects to a querier and reports errors. On timeout or
|
2015-03-30 10:13:36 -07:00
|
|
|
// cancellation of its context it terminates.
|
|
|
|
type evaluator struct {
|
|
|
|
ctx context.Context
|
|
|
|
|
2016-12-23 04:51:59 -08:00
|
|
|
Timestamp int64 // time in milliseconds
|
2017-03-14 02:57:34 -07:00
|
|
|
|
|
|
|
finalizers []func()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (ev *evaluator) close() {
|
|
|
|
for _, f := range ev.finalizers {
|
|
|
|
f()
|
|
|
|
}
|
2015-03-30 10:13:36 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// fatalf causes a panic with the input formatted into an error.
|
|
|
|
func (ev *evaluator) errorf(format string, args ...interface{}) {
|
|
|
|
ev.error(fmt.Errorf(format, args...))
|
|
|
|
}
|
|
|
|
|
|
|
|
// fatal causes a panic with the given error.
|
|
|
|
func (ev *evaluator) error(err error) {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// recover is the handler that turns panics into returns from the top level of evaluation.
|
|
|
|
func (ev *evaluator) recover(errp *error) {
|
|
|
|
e := recover()
|
|
|
|
if e != nil {
|
|
|
|
if _, ok := e.(runtime.Error); ok {
|
2015-08-19 06:28:53 -07:00
|
|
|
// Print the stack trace but do not inhibit the running application.
|
|
|
|
buf := make([]byte, 64<<10)
|
|
|
|
buf = buf[:runtime.Stack(buf, false)]
|
|
|
|
|
|
|
|
log.Errorf("parser panic: %v\n%s", e, buf)
|
|
|
|
*errp = fmt.Errorf("unexpected error")
|
|
|
|
} else {
|
|
|
|
*errp = e.(error)
|
2015-03-30 10:13:36 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-24 01:44:04 -08:00
|
|
|
// evalScalar attempts to evaluate e to a Scalar value and errors otherwise.
|
|
|
|
func (ev *evaluator) evalScalar(e Expr) Scalar {
|
2015-03-30 10:13:36 -07:00
|
|
|
val := ev.eval(e)
|
2016-12-24 01:44:04 -08:00
|
|
|
sv, ok := val.(Scalar)
|
2015-03-30 10:13:36 -07:00
|
|
|
if !ok {
|
2016-12-24 01:44:04 -08:00
|
|
|
ev.errorf("expected Scalar but got %s", documentedType(val.Type()))
|
2015-03-30 10:13:36 -07:00
|
|
|
}
|
|
|
|
return sv
|
|
|
|
}
|
|
|
|
|
2016-12-24 01:40:09 -08:00
|
|
|
// evalVector attempts to evaluate e to a Vector value and errors otherwise.
|
|
|
|
func (ev *evaluator) evalVector(e Expr) Vector {
|
2015-03-30 10:13:36 -07:00
|
|
|
val := ev.eval(e)
|
2016-12-24 01:40:09 -08:00
|
|
|
vec, ok := val.(Vector)
|
2015-03-30 10:13:36 -07:00
|
|
|
if !ok {
|
2016-12-24 01:40:09 -08:00
|
|
|
ev.errorf("expected instant Vector but got %s", documentedType(val.Type()))
|
2015-03-30 10:13:36 -07:00
|
|
|
}
|
|
|
|
return vec
|
|
|
|
}
|
|
|
|
|
|
|
|
// evalInt attempts to evaluate e into an integer and errors otherwise.
|
2016-11-04 16:48:32 -07:00
|
|
|
func (ev *evaluator) evalInt(e Expr) int64 {
|
2015-03-30 10:13:36 -07:00
|
|
|
sc := ev.evalScalar(e)
|
2016-12-24 02:23:06 -08:00
|
|
|
if !convertibleToInt64(sc.V) {
|
|
|
|
ev.errorf("Scalar value %v overflows int64", sc.V)
|
2016-11-04 16:48:32 -07:00
|
|
|
}
|
2016-12-24 02:23:06 -08:00
|
|
|
return int64(sc.V)
|
2015-03-30 10:13:36 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// evalFloat attempts to evaluate e into a float and errors otherwise.
|
|
|
|
func (ev *evaluator) evalFloat(e Expr) float64 {
|
|
|
|
sc := ev.evalScalar(e)
|
2016-12-24 02:23:06 -08:00
|
|
|
return float64(sc.V)
|
2015-03-30 10:13:36 -07:00
|
|
|
}
|
|
|
|
|
2016-12-24 01:42:54 -08:00
|
|
|
// evalMatrix attempts to evaluate e into a Matrix and errors otherwise.
|
2016-12-24 01:40:09 -08:00
|
|
|
// The error message uses the term "range Vector" to match the user facing
|
2016-11-17 13:02:28 -08:00
|
|
|
// documentation.
|
2016-12-24 01:42:54 -08:00
|
|
|
func (ev *evaluator) evalMatrix(e Expr) Matrix {
|
2015-03-30 10:13:36 -07:00
|
|
|
val := ev.eval(e)
|
2016-12-24 01:42:54 -08:00
|
|
|
mat, ok := val.(Matrix)
|
2015-03-30 10:13:36 -07:00
|
|
|
if !ok {
|
2016-12-24 01:40:09 -08:00
|
|
|
ev.errorf("expected range Vector but got %s", documentedType(val.Type()))
|
2015-03-30 10:13:36 -07:00
|
|
|
}
|
|
|
|
return mat
|
|
|
|
}
|
|
|
|
|
2015-08-17 14:25:53 -07:00
|
|
|
// evalString attempts to evaluate e to a string value and errors otherwise.
|
2016-12-24 02:25:26 -08:00
|
|
|
func (ev *evaluator) evalString(e Expr) String {
|
2015-08-17 14:25:53 -07:00
|
|
|
val := ev.eval(e)
|
2016-12-24 02:25:26 -08:00
|
|
|
sv, ok := val.(String)
|
2015-08-17 14:25:53 -07:00
|
|
|
if !ok {
|
2016-11-17 13:02:28 -08:00
|
|
|
ev.errorf("expected string but got %s", documentedType(val.Type()))
|
2015-08-17 14:25:53 -07:00
|
|
|
}
|
|
|
|
return sv
|
|
|
|
}
|
|
|
|
|
2015-03-30 10:13:36 -07:00
|
|
|
// evalOneOf evaluates e and errors unless the result is of one of the given types.
|
2016-12-23 04:51:59 -08:00
|
|
|
func (ev *evaluator) evalOneOf(e Expr, t1, t2 ValueType) Value {
|
2015-03-30 10:13:36 -07:00
|
|
|
val := ev.eval(e)
|
|
|
|
if val.Type() != t1 && val.Type() != t2 {
|
2016-11-17 13:02:28 -08:00
|
|
|
ev.errorf("expected %s or %s but got %s", documentedType(t1), documentedType(t2), documentedType(val.Type()))
|
2015-03-30 10:13:36 -07:00
|
|
|
}
|
|
|
|
return val
|
|
|
|
}
|
|
|
|
|
2016-12-23 04:51:59 -08:00
|
|
|
func (ev *evaluator) Eval(expr Expr) (v Value, err error) {
|
2015-03-30 10:13:36 -07:00
|
|
|
defer ev.recover(&err)
|
2017-03-14 02:57:34 -07:00
|
|
|
defer ev.close()
|
2015-03-30 10:13:36 -07:00
|
|
|
return ev.eval(expr), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// eval evaluates the given expression as the given AST expression node requires.
|
2016-12-23 04:51:59 -08:00
|
|
|
func (ev *evaluator) eval(expr Expr) Value {
|
2015-03-30 10:13:36 -07:00
|
|
|
// This is the top-level evaluation method.
|
2015-08-24 09:04:41 -07:00
|
|
|
// Thus, we check for timeout/cancelation here.
|
2015-03-30 10:13:36 -07:00
|
|
|
if err := contextDone(ev.ctx, "expression evaluation"); err != nil {
|
|
|
|
ev.error(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
switch e := expr.(type) {
|
|
|
|
case *AggregateExpr:
|
2016-12-24 01:40:09 -08:00
|
|
|
Vector := ev.evalVector(e.Expr)
|
|
|
|
return ev.aggregation(e.Op, e.Grouping, e.Without, e.KeepCommonLabels, e.Param, Vector)
|
2015-03-30 10:13:36 -07:00
|
|
|
|
|
|
|
case *BinaryExpr:
|
2016-12-23 04:51:59 -08:00
|
|
|
lhs := ev.evalOneOf(e.LHS, ValueTypeScalar, ValueTypeVector)
|
|
|
|
rhs := ev.evalOneOf(e.RHS, ValueTypeScalar, ValueTypeVector)
|
2015-03-30 10:13:36 -07:00
|
|
|
|
|
|
|
switch lt, rt := lhs.Type(), rhs.Type(); {
|
2016-12-23 04:51:59 -08:00
|
|
|
case lt == ValueTypeScalar && rt == ValueTypeScalar:
|
2016-12-24 01:44:04 -08:00
|
|
|
return Scalar{
|
2016-12-24 02:37:16 -08:00
|
|
|
V: scalarBinop(e.Op, lhs.(Scalar).V, rhs.(Scalar).V),
|
2016-12-24 02:23:06 -08:00
|
|
|
T: ev.Timestamp,
|
2015-03-30 10:13:36 -07:00
|
|
|
}
|
|
|
|
|
2016-12-23 04:51:59 -08:00
|
|
|
case lt == ValueTypeVector && rt == ValueTypeVector:
|
2015-05-16 07:35:52 -07:00
|
|
|
switch e.Op {
|
|
|
|
case itemLAND:
|
2016-12-24 01:40:09 -08:00
|
|
|
return ev.VectorAnd(lhs.(Vector), rhs.(Vector), e.VectorMatching)
|
2015-05-16 07:35:52 -07:00
|
|
|
case itemLOR:
|
2016-12-24 01:40:09 -08:00
|
|
|
return ev.VectorOr(lhs.(Vector), rhs.(Vector), e.VectorMatching)
|
2016-04-02 15:52:18 -07:00
|
|
|
case itemLUnless:
|
2016-12-24 01:40:09 -08:00
|
|
|
return ev.VectorUnless(lhs.(Vector), rhs.(Vector), e.VectorMatching)
|
2015-05-16 07:35:52 -07:00
|
|
|
default:
|
2016-12-24 01:40:09 -08:00
|
|
|
return ev.VectorBinop(e.Op, lhs.(Vector), rhs.(Vector), e.VectorMatching, e.ReturnBool)
|
2015-05-16 05:00:11 -07:00
|
|
|
}
|
2016-12-23 04:51:59 -08:00
|
|
|
case lt == ValueTypeVector && rt == ValueTypeScalar:
|
2016-12-24 02:37:16 -08:00
|
|
|
return ev.VectorscalarBinop(e.Op, lhs.(Vector), rhs.(Scalar), false, e.ReturnBool)
|
2015-03-30 10:13:36 -07:00
|
|
|
|
2016-12-23 04:51:59 -08:00
|
|
|
case lt == ValueTypeScalar && rt == ValueTypeVector:
|
2016-12-24 02:37:16 -08:00
|
|
|
return ev.VectorscalarBinop(e.Op, rhs.(Vector), lhs.(Scalar), true, e.ReturnBool)
|
2015-03-30 10:13:36 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
case *Call:
|
|
|
|
return e.Func.Call(ev, e.Args)
|
|
|
|
|
|
|
|
case *MatrixSelector:
|
2016-12-28 00:16:48 -08:00
|
|
|
return ev.matrixSelector(e)
|
2015-03-30 10:13:36 -07:00
|
|
|
|
|
|
|
case *NumberLiteral:
|
2016-12-24 02:23:06 -08:00
|
|
|
return Scalar{V: e.Val, T: ev.Timestamp}
|
2015-03-30 10:13:36 -07:00
|
|
|
|
|
|
|
case *ParenExpr:
|
|
|
|
return ev.eval(e.Expr)
|
|
|
|
|
|
|
|
case *StringLiteral:
|
2016-12-24 02:25:26 -08:00
|
|
|
return String{V: e.Val, T: ev.Timestamp}
|
2015-03-30 10:13:36 -07:00
|
|
|
|
|
|
|
case *UnaryExpr:
|
2016-12-23 04:51:59 -08:00
|
|
|
se := ev.evalOneOf(e.Expr, ValueTypeScalar, ValueTypeVector)
|
2015-08-04 05:57:34 -07:00
|
|
|
// Only + and - are possible operators.
|
2015-03-30 10:13:36 -07:00
|
|
|
if e.Op == itemSUB {
|
2015-08-04 05:57:34 -07:00
|
|
|
switch v := se.(type) {
|
2016-12-24 01:44:04 -08:00
|
|
|
case Scalar:
|
2016-12-24 02:23:06 -08:00
|
|
|
v.V = -v.V
|
2016-12-24 01:40:09 -08:00
|
|
|
case Vector:
|
2015-08-04 05:57:34 -07:00
|
|
|
for i, sv := range v {
|
2016-12-24 02:23:06 -08:00
|
|
|
v[i].V = -sv.V
|
2015-08-04 05:57:34 -07:00
|
|
|
}
|
|
|
|
}
|
2015-03-30 10:13:36 -07:00
|
|
|
}
|
2015-08-04 05:57:34 -07:00
|
|
|
return se
|
2015-03-30 10:13:36 -07:00
|
|
|
|
|
|
|
case *VectorSelector:
|
2016-12-28 00:16:48 -08:00
|
|
|
return ev.vectorSelector(e)
|
2015-03-30 10:13:36 -07:00
|
|
|
}
|
|
|
|
panic(fmt.Errorf("unhandled expression of type: %T", expr))
|
|
|
|
}
|
|
|
|
|
2016-12-28 00:16:48 -08:00
|
|
|
// vectorSelector evaluates a *VectorSelector expression.
|
|
|
|
func (ev *evaluator) vectorSelector(node *VectorSelector) Vector {
|
2016-12-23 04:51:59 -08:00
|
|
|
var (
|
2016-12-24 01:40:09 -08:00
|
|
|
vec = make(Vector, 0, len(node.series))
|
2016-12-23 04:51:59 -08:00
|
|
|
refTime = ev.Timestamp - durationMilliseconds(node.Offset)
|
|
|
|
)
|
|
|
|
|
|
|
|
for i, it := range node.iterators {
|
2016-12-28 00:16:48 -08:00
|
|
|
ok := it.Seek(refTime)
|
|
|
|
if !ok {
|
2016-12-23 04:51:59 -08:00
|
|
|
if it.Err() != nil {
|
|
|
|
ev.error(it.Err())
|
|
|
|
}
|
2015-03-30 10:13:36 -07:00
|
|
|
}
|
2016-12-23 04:51:59 -08:00
|
|
|
t, v := it.Values()
|
|
|
|
|
2016-12-28 00:16:48 -08:00
|
|
|
if !ok || t > refTime {
|
2016-12-23 04:51:59 -08:00
|
|
|
t, v, ok = it.PeekBack()
|
|
|
|
if !ok || t < refTime-durationMilliseconds(StalenessDelta) {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
}
|
2016-12-24 02:32:10 -08:00
|
|
|
vec = append(vec, Sample{
|
2016-12-25 02:34:22 -08:00
|
|
|
Metric: node.series[i].Labels(),
|
2016-12-24 02:23:06 -08:00
|
|
|
Point: Point{V: v, T: ev.Timestamp},
|
Streamline series iterator creation
This will fix issue #1035 and will also help to make issue #1264 less
bad.
The fundamental problem in the current code:
In the preload phase, we quite accurately determine which chunks will
be used for the query being executed. However, in the subsequent step
of creating series iterators, the created iterators are referencing
_all_ in-memory chunks in their series, even the un-pinned ones. In
iterator creation, we copy a pointer to each in-memory chunk of a
series into the iterator. While this creates a certain amount of
allocation churn, the worst thing about it is that copying the chunk
pointer out of the chunkDesc requires a mutex acquisition. (Remember
that the iterator will also reference un-pinned chunks, so we need to
acquire the mutex to protect against concurrent eviction.) The worst
case happens if a series doesn't even contain any relevant samples for
the query time range. We notice that during preloading but then we
will still create a series iterator for it. But even for series that
do contain relevant samples, the overhead is quite bad for instant
queries that retrieve a single sample from each series, but still go
through all the effort of series iterator creation. All of that is
particularly bad if a series has many in-memory chunks.
This commit addresses the problem from two sides:
First, it merges preloading and iterator creation into one step,
i.e. the preload call returns an iterator for exactly the preloaded
chunks.
Second, the required mutex acquisition in chunkDesc has been greatly
reduced. That was enabled by a side effect of the first step, which is
that the iterator is only referencing pinned chunks, so there is no
risk of concurrent eviction anymore, and chunks can be accessed
without mutex acquisition.
To simplify the code changes for the above, the long-planned change of
ValueAtTime to ValueAtOrBefore time was performed at the same
time. (It should have been done first, but it kind of accidentally
happened while I was in the middle of writing the series iterator
changes. Sorry for that.) So far, we actively filtered the up to two
values that were returned by ValueAtTime, i.e. we invested work to
retrieve up to two values, and then we invested more work to throw one
of them away.
The SeriesIterator.BoundaryValues method can be removed once #1401 is
fixed. But I really didn't want to load even more changes into this
PR.
Benchmarks:
The BenchmarkFuzz.* benchmarks run 83% faster (i.e. about six times
faster) and allocate 95% fewer bytes. The reason for that is that the
benchmark reads one sample after another from the time series and
creates a new series iterator for each sample read.
To find out how much these improvements matter in practice, I have
mirrored a beefy Prometheus server at SoundCloud that suffers from
both issues #1035 and #1264. To reach steady state that would be
comparable, the server needs to run for 15d. So far, it has run for
1d. The test server currently has only half as many memory time series
and 60% of the memory chunks the main server has. The 90th percentile
rule evaluation cycle time is ~11s on the main server and only ~3s on
the test server. However, these numbers might get much closer over
time.
In addition to performance improvements, this commit removes about 150
LOC.
2016-02-16 09:47:50 -08:00
|
|
|
})
|
2015-03-30 10:13:36 -07:00
|
|
|
}
|
|
|
|
return vec
|
|
|
|
}
|
|
|
|
|
2017-03-14 02:57:34 -07:00
|
|
|
var pointPool = sync.Pool{}
|
|
|
|
|
|
|
|
func getPointSlice(sz int) []Point {
|
|
|
|
p := pointPool.Get()
|
|
|
|
if p != nil {
|
|
|
|
return p.([]Point)
|
|
|
|
}
|
|
|
|
return make([]Point, 0, sz)
|
|
|
|
}
|
|
|
|
|
|
|
|
func putPointSlice(p []Point) {
|
|
|
|
pointPool.Put(p[:0])
|
|
|
|
}
|
|
|
|
|
|
|
|
var matrixPool = sync.Pool{}
|
|
|
|
|
|
|
|
func getMatrix(sz int) Matrix {
|
|
|
|
m := matrixPool.Get()
|
|
|
|
if m != nil {
|
|
|
|
return m.(Matrix)
|
|
|
|
}
|
|
|
|
return make(Matrix, 0, sz)
|
|
|
|
}
|
|
|
|
|
|
|
|
func putMatrix(m Matrix) {
|
|
|
|
matrixPool.Put(m[:0])
|
|
|
|
}
|
|
|
|
|
2016-12-28 00:16:48 -08:00
|
|
|
// matrixSelector evaluates a *MatrixSelector expression.
|
|
|
|
func (ev *evaluator) matrixSelector(node *MatrixSelector) Matrix {
|
2016-12-23 04:51:59 -08:00
|
|
|
var (
|
|
|
|
offset = durationMilliseconds(node.Offset)
|
|
|
|
maxt = ev.Timestamp - offset
|
|
|
|
mint = maxt - durationMilliseconds(node.Range)
|
2017-03-14 02:57:34 -07:00
|
|
|
matrix = getMatrix(len(node.series))
|
|
|
|
// Write all points into a single slice to avoid lots of tiny allocations.
|
|
|
|
allPoints = getPointSlice(5 * len(matrix))
|
|
|
|
)
|
|
|
|
|
|
|
|
ev.finalizers = append(ev.finalizers,
|
|
|
|
func() { putPointSlice(allPoints) },
|
|
|
|
func() { putMatrix(matrix) },
|
2016-12-23 04:51:59 -08:00
|
|
|
)
|
2015-03-30 10:13:36 -07:00
|
|
|
|
2016-12-23 04:51:59 -08:00
|
|
|
for i, it := range node.iterators {
|
2017-03-14 02:57:34 -07:00
|
|
|
start := len(allPoints)
|
|
|
|
|
2016-12-24 02:32:42 -08:00
|
|
|
ss := Series{
|
2016-12-25 02:34:22 -08:00
|
|
|
Metric: node.series[i].Labels(),
|
2015-03-30 10:13:36 -07:00
|
|
|
}
|
|
|
|
|
2016-12-28 00:16:48 -08:00
|
|
|
ok := it.Seek(maxt)
|
|
|
|
if !ok {
|
2016-12-23 04:51:59 -08:00
|
|
|
if it.Err() != nil {
|
|
|
|
ev.error(it.Err())
|
2015-03-30 10:13:36 -07:00
|
|
|
}
|
|
|
|
}
|
2016-12-28 00:16:48 -08:00
|
|
|
t, v := it.Values()
|
2015-03-30 10:13:36 -07:00
|
|
|
|
2016-12-23 04:51:59 -08:00
|
|
|
buf := it.Buffer()
|
|
|
|
for buf.Next() {
|
2017-01-02 04:33:37 -08:00
|
|
|
t, v := buf.At()
|
2016-12-23 04:51:59 -08:00
|
|
|
// Values in the buffer are guaranteed to be smaller than maxt.
|
|
|
|
if t >= mint {
|
2017-03-14 02:57:34 -07:00
|
|
|
allPoints = append(allPoints, Point{T: t, V: v})
|
2016-12-23 04:51:59 -08:00
|
|
|
}
|
2015-03-30 10:13:36 -07:00
|
|
|
}
|
2016-12-23 04:51:59 -08:00
|
|
|
// The seeked sample might also be in the range.
|
2016-12-28 00:16:48 -08:00
|
|
|
t, v = it.Values()
|
2016-12-23 04:51:59 -08:00
|
|
|
if t == maxt {
|
2017-03-14 02:57:34 -07:00
|
|
|
allPoints = append(allPoints, Point{T: t, V: v})
|
2016-12-28 00:16:48 -08:00
|
|
|
}
|
2017-03-14 02:57:34 -07:00
|
|
|
|
|
|
|
ss.Points = allPoints[start:]
|
|
|
|
|
2016-12-28 00:16:48 -08:00
|
|
|
if len(ss.Points) > 0 {
|
2017-03-14 02:57:34 -07:00
|
|
|
matrix = append(matrix, ss)
|
2016-12-23 04:51:59 -08:00
|
|
|
}
|
2015-03-30 10:13:36 -07:00
|
|
|
}
|
2017-03-14 02:57:34 -07:00
|
|
|
return matrix
|
2015-03-30 10:13:36 -07:00
|
|
|
}
|
|
|
|
|
2016-12-24 01:40:09 -08:00
|
|
|
func (ev *evaluator) VectorAnd(lhs, rhs Vector, matching *VectorMatching) Vector {
|
2015-05-16 04:33:03 -07:00
|
|
|
if matching.Card != CardManyToMany {
|
2016-04-02 15:52:18 -07:00
|
|
|
panic("set operations must only use many-to-many matching")
|
2015-05-16 04:33:03 -07:00
|
|
|
}
|
2016-06-23 09:23:44 -07:00
|
|
|
sigf := signatureFunc(matching.On, matching.MatchingLabels...)
|
2015-05-16 04:33:03 -07:00
|
|
|
|
2016-12-24 01:40:09 -08:00
|
|
|
var result Vector
|
|
|
|
// The set of signatures for the right-hand side Vector.
|
2015-05-16 04:33:03 -07:00
|
|
|
rightSigs := map[uint64]struct{}{}
|
|
|
|
// Add all rhs samples to a map so we can easily find matches later.
|
|
|
|
for _, rs := range rhs {
|
2015-05-16 07:35:52 -07:00
|
|
|
rightSigs[sigf(rs.Metric)] = struct{}{}
|
2015-05-16 04:33:03 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
for _, ls := range lhs {
|
2016-12-24 01:40:09 -08:00
|
|
|
// If there's a matching entry in the right-hand side Vector, add the sample.
|
2015-05-16 07:35:52 -07:00
|
|
|
if _, ok := rightSigs[sigf(ls.Metric)]; ok {
|
2015-05-16 04:33:03 -07:00
|
|
|
result = append(result, ls)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result
|
|
|
|
}
|
|
|
|
|
2016-12-24 01:40:09 -08:00
|
|
|
func (ev *evaluator) VectorOr(lhs, rhs Vector, matching *VectorMatching) Vector {
|
2015-05-16 05:00:11 -07:00
|
|
|
if matching.Card != CardManyToMany {
|
2016-04-02 15:52:18 -07:00
|
|
|
panic("set operations must only use many-to-many matching")
|
2015-05-16 05:00:11 -07:00
|
|
|
}
|
2016-06-23 09:23:44 -07:00
|
|
|
sigf := signatureFunc(matching.On, matching.MatchingLabels...)
|
2015-05-16 05:00:11 -07:00
|
|
|
|
2016-12-24 01:40:09 -08:00
|
|
|
var result Vector
|
2015-05-16 05:00:11 -07:00
|
|
|
leftSigs := map[uint64]struct{}{}
|
2016-12-24 01:40:09 -08:00
|
|
|
// Add everything from the left-hand-side Vector.
|
2015-05-16 05:00:11 -07:00
|
|
|
for _, ls := range lhs {
|
2015-05-16 07:35:52 -07:00
|
|
|
leftSigs[sigf(ls.Metric)] = struct{}{}
|
2015-05-16 05:00:11 -07:00
|
|
|
result = append(result, ls)
|
|
|
|
}
|
|
|
|
// Add all right-hand side elements which have not been added from the left-hand side.
|
|
|
|
for _, rs := range rhs {
|
2015-05-16 07:35:52 -07:00
|
|
|
if _, ok := leftSigs[sigf(rs.Metric)]; !ok {
|
2015-05-16 05:00:11 -07:00
|
|
|
result = append(result, rs)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result
|
|
|
|
}
|
|
|
|
|
2016-12-24 01:40:09 -08:00
|
|
|
func (ev *evaluator) VectorUnless(lhs, rhs Vector, matching *VectorMatching) Vector {
|
2016-04-02 15:52:18 -07:00
|
|
|
if matching.Card != CardManyToMany {
|
|
|
|
panic("set operations must only use many-to-many matching")
|
|
|
|
}
|
2016-06-23 09:23:44 -07:00
|
|
|
sigf := signatureFunc(matching.On, matching.MatchingLabels...)
|
2016-04-02 15:52:18 -07:00
|
|
|
|
|
|
|
rightSigs := map[uint64]struct{}{}
|
|
|
|
for _, rs := range rhs {
|
|
|
|
rightSigs[sigf(rs.Metric)] = struct{}{}
|
|
|
|
}
|
|
|
|
|
2016-12-24 01:40:09 -08:00
|
|
|
var result Vector
|
2016-04-02 15:52:18 -07:00
|
|
|
for _, ls := range lhs {
|
|
|
|
if _, ok := rightSigs[sigf(ls.Metric)]; !ok {
|
|
|
|
result = append(result, ls)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result
|
|
|
|
}
|
|
|
|
|
2016-12-24 01:40:09 -08:00
|
|
|
// VectorBinop evaluates a binary operation between two Vectors, excluding set operators.
|
|
|
|
func (ev *evaluator) VectorBinop(op itemType, lhs, rhs Vector, matching *VectorMatching, returnBool bool) Vector {
|
2015-05-16 07:35:52 -07:00
|
|
|
if matching.Card == CardManyToMany {
|
2016-04-02 15:52:18 -07:00
|
|
|
panic("many-to-many only allowed for set operators")
|
2015-05-16 07:35:52 -07:00
|
|
|
}
|
|
|
|
var (
|
2016-12-24 01:40:09 -08:00
|
|
|
result = Vector{}
|
2016-06-23 09:23:44 -07:00
|
|
|
sigf = signatureFunc(matching.On, matching.MatchingLabels...)
|
2015-05-16 07:35:52 -07:00
|
|
|
)
|
|
|
|
|
2015-03-30 10:13:36 -07:00
|
|
|
// The control flow below handles one-to-one or many-to-one matching.
|
|
|
|
// For one-to-many, swap sidedness and account for the swap when calculating
|
|
|
|
// values.
|
|
|
|
if matching.Card == CardOneToMany {
|
|
|
|
lhs, rhs = rhs, lhs
|
|
|
|
}
|
2015-05-16 07:35:52 -07:00
|
|
|
|
2015-03-30 10:13:36 -07:00
|
|
|
// All samples from the rhs hashed by the matching label/values.
|
2016-12-24 02:32:10 -08:00
|
|
|
rightSigs := map[uint64]Sample{}
|
2015-03-30 10:13:36 -07:00
|
|
|
|
|
|
|
// Add all rhs samples to a map so we can easily find matches later.
|
|
|
|
for _, rs := range rhs {
|
2015-05-16 07:35:52 -07:00
|
|
|
sig := sigf(rs.Metric)
|
2015-03-30 10:13:36 -07:00
|
|
|
// The rhs is guaranteed to be the 'one' side. Having multiple samples
|
2015-05-16 07:35:52 -07:00
|
|
|
// with the same signature means that the matching is many-to-many.
|
|
|
|
if _, found := rightSigs[sig]; found {
|
2015-03-30 10:13:36 -07:00
|
|
|
// Many-to-many matching not allowed.
|
2015-05-16 07:35:52 -07:00
|
|
|
ev.errorf("many-to-many matching not allowed: matching labels must be unique on one side")
|
2015-03-30 10:13:36 -07:00
|
|
|
}
|
2015-05-16 07:35:52 -07:00
|
|
|
rightSigs[sig] = rs
|
2015-03-30 10:13:36 -07:00
|
|
|
}
|
|
|
|
|
2015-05-16 07:35:52 -07:00
|
|
|
// Tracks the match-signature. For one-to-one operations the value is nil. For many-to-one
|
|
|
|
// the value is a set of signatures to detect duplicated result elements.
|
|
|
|
matchedSigs := map[uint64]map[uint64]struct{}{}
|
|
|
|
|
2015-03-30 10:13:36 -07:00
|
|
|
// For all lhs samples find a respective rhs sample and perform
|
|
|
|
// the binary operation.
|
|
|
|
for _, ls := range lhs {
|
2015-05-16 07:35:52 -07:00
|
|
|
sig := sigf(ls.Metric)
|
2015-03-30 10:13:36 -07:00
|
|
|
|
2016-12-24 01:40:09 -08:00
|
|
|
rs, found := rightSigs[sig] // Look for a match in the rhs Vector.
|
2015-03-30 10:13:36 -07:00
|
|
|
if !found {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2015-05-16 04:33:03 -07:00
|
|
|
// Account for potentially swapped sidedness.
|
2016-12-24 02:23:06 -08:00
|
|
|
vl, vr := ls.V, rs.V
|
2015-05-16 04:33:03 -07:00
|
|
|
if matching.Card == CardOneToMany {
|
|
|
|
vl, vr = vr, vl
|
2015-03-30 10:13:36 -07:00
|
|
|
}
|
2016-12-24 02:37:16 -08:00
|
|
|
value, keep := vectorElemBinop(op, vl, vr)
|
2015-09-02 06:51:44 -07:00
|
|
|
if returnBool {
|
|
|
|
if keep {
|
|
|
|
value = 1.0
|
|
|
|
} else {
|
|
|
|
value = 0.0
|
|
|
|
}
|
|
|
|
} else if !keep {
|
2015-05-16 07:35:52 -07:00
|
|
|
continue
|
|
|
|
}
|
2016-04-21 07:53:14 -07:00
|
|
|
metric := resultMetric(ls.Metric, rs.Metric, op, matching)
|
2015-03-30 10:13:36 -07:00
|
|
|
|
2015-05-16 07:35:52 -07:00
|
|
|
insertedSigs, exists := matchedSigs[sig]
|
|
|
|
if matching.Card == CardOneToOne {
|
|
|
|
if exists {
|
|
|
|
ev.errorf("multiple matches for labels: many-to-one matching must be explicit (group_left/group_right)")
|
2015-03-30 10:13:36 -07:00
|
|
|
}
|
2016-02-09 18:47:00 -08:00
|
|
|
matchedSigs[sig] = nil // Set existence to true.
|
2015-05-16 07:35:52 -07:00
|
|
|
} else {
|
|
|
|
// In many-to-one matching the grouping labels have to ensure a unique metric
|
2016-12-24 01:40:09 -08:00
|
|
|
// for the result Vector. Check whether those labels have already been added for
|
2015-05-16 07:35:52 -07:00
|
|
|
// the same matching labels.
|
2016-12-23 04:51:59 -08:00
|
|
|
insertSig := metric.Hash()
|
|
|
|
|
2015-05-16 07:35:52 -07:00
|
|
|
if !exists {
|
|
|
|
insertedSigs = map[uint64]struct{}{}
|
|
|
|
matchedSigs[sig] = insertedSigs
|
|
|
|
} else if _, duplicate := insertedSigs[insertSig]; duplicate {
|
|
|
|
ev.errorf("multiple matches for labels: grouping labels must ensure unique matches")
|
2015-03-30 10:13:36 -07:00
|
|
|
}
|
2015-05-16 07:35:52 -07:00
|
|
|
insertedSigs[insertSig] = struct{}{}
|
2015-03-30 10:13:36 -07:00
|
|
|
}
|
|
|
|
|
2016-12-24 02:32:10 -08:00
|
|
|
result = append(result, Sample{
|
2016-12-24 02:23:06 -08:00
|
|
|
Metric: metric,
|
|
|
|
Point: Point{V: value, T: ev.Timestamp},
|
2015-05-16 07:35:52 -07:00
|
|
|
})
|
|
|
|
}
|
2015-03-30 10:13:36 -07:00
|
|
|
return result
|
|
|
|
}
|
|
|
|
|
2016-12-23 04:51:59 -08:00
|
|
|
func hashWithoutLabels(lset labels.Labels, names ...string) uint64 {
|
2016-12-28 00:16:48 -08:00
|
|
|
cm := make(labels.Labels, 0, len(lset))
|
2016-12-23 04:51:59 -08:00
|
|
|
|
|
|
|
Outer:
|
|
|
|
for _, l := range lset {
|
|
|
|
for _, n := range names {
|
|
|
|
if n == l.Name {
|
|
|
|
continue Outer
|
|
|
|
}
|
|
|
|
}
|
2016-12-24 05:35:24 -08:00
|
|
|
if l.Name == labels.MetricName {
|
2016-12-23 04:51:59 -08:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
cm = append(cm, l)
|
|
|
|
}
|
|
|
|
|
|
|
|
return cm.Hash()
|
|
|
|
}
|
|
|
|
|
|
|
|
func hashForLabels(lset labels.Labels, names ...string) uint64 {
|
|
|
|
cm := make(labels.Labels, 0, len(names))
|
|
|
|
|
|
|
|
for _, l := range lset {
|
|
|
|
for _, n := range names {
|
|
|
|
if l.Name == n {
|
|
|
|
cm = append(cm, l)
|
|
|
|
break
|
2016-04-21 03:45:06 -07:00
|
|
|
}
|
2015-05-16 07:35:52 -07:00
|
|
|
}
|
|
|
|
}
|
2016-12-23 04:51:59 -08:00
|
|
|
return cm.Hash()
|
|
|
|
}
|
|
|
|
|
|
|
|
// signatureFunc returns a function that calculates the signature for a metric
|
|
|
|
// ignoring the provided labels. If on, then the given labels are only used instead.
|
|
|
|
func signatureFunc(on bool, names ...string) func(labels.Labels) uint64 {
|
|
|
|
// TODO(fabxc): ensure names are sorted and then use that and sortedness
|
|
|
|
// of labels by names to speed up the operations below.
|
|
|
|
// Alternatively, inline the hashing and don't build new label sets.
|
|
|
|
if on {
|
|
|
|
return func(lset labels.Labels) uint64 { return hashForLabels(lset, names...) }
|
2015-05-16 07:35:52 -07:00
|
|
|
}
|
2016-12-23 04:51:59 -08:00
|
|
|
return func(lset labels.Labels) uint64 { return hashWithoutLabels(lset, names...) }
|
2015-05-16 07:35:52 -07:00
|
|
|
}
|
|
|
|
|
2016-12-24 01:40:09 -08:00
|
|
|
// resultMetric returns the metric for the given sample(s) based on the Vector
|
2015-05-16 07:35:52 -07:00
|
|
|
// binary operation and the matching options.
|
2016-12-23 04:51:59 -08:00
|
|
|
func resultMetric(lhs, rhs labels.Labels, op itemType, matching *VectorMatching) labels.Labels {
|
2016-12-24 05:35:24 -08:00
|
|
|
lb := labels.NewBuilder(lhs)
|
2016-12-23 04:51:59 -08:00
|
|
|
|
2016-04-21 10:41:27 -07:00
|
|
|
if shouldDropMetricName(op) {
|
2016-12-24 05:35:24 -08:00
|
|
|
lb.Del(labels.MetricName)
|
2015-05-16 07:35:52 -07:00
|
|
|
}
|
2016-12-23 04:51:59 -08:00
|
|
|
|
2016-04-21 10:41:27 -07:00
|
|
|
if matching.Card == CardOneToOne {
|
2016-12-23 04:51:59 -08:00
|
|
|
if matching.On {
|
|
|
|
Outer:
|
|
|
|
for _, l := range lhs {
|
|
|
|
for _, n := range matching.MatchingLabels {
|
|
|
|
if l.Name == n {
|
|
|
|
continue Outer
|
|
|
|
}
|
|
|
|
}
|
2016-12-24 05:35:24 -08:00
|
|
|
lb.Del(l.Name)
|
2016-04-21 10:41:27 -07:00
|
|
|
}
|
2016-12-23 04:51:59 -08:00
|
|
|
} else {
|
2016-12-24 05:35:24 -08:00
|
|
|
lb.Del(matching.MatchingLabels...)
|
2016-04-21 07:53:14 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
for _, ln := range matching.Include {
|
2016-12-23 04:51:59 -08:00
|
|
|
// Included labels from the `group_x` modifier are taken from the "one"-side.
|
|
|
|
if v := rhs.Get(ln); v != "" {
|
2016-12-24 05:35:24 -08:00
|
|
|
lb.Set(ln, v)
|
|
|
|
} else {
|
|
|
|
lb.Del(ln)
|
2016-12-23 04:51:59 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-24 05:35:24 -08:00
|
|
|
return lb.Labels()
|
2015-05-16 07:35:52 -07:00
|
|
|
}
|
|
|
|
|
2016-12-24 02:37:16 -08:00
|
|
|
// VectorscalarBinop evaluates a binary operation between a Vector and a Scalar.
|
|
|
|
func (ev *evaluator) VectorscalarBinop(op itemType, lhs Vector, rhs Scalar, swap, returnBool bool) Vector {
|
2016-12-24 01:40:09 -08:00
|
|
|
vec := make(Vector, 0, len(lhs))
|
2015-03-30 10:13:36 -07:00
|
|
|
|
|
|
|
for _, lhsSample := range lhs {
|
2016-12-24 02:23:06 -08:00
|
|
|
lv, rv := lhsSample.V, rhs.V
|
2016-12-24 01:40:09 -08:00
|
|
|
// lhs always contains the Vector. If the original position was different
|
2015-03-30 10:13:36 -07:00
|
|
|
// swap for calculating the value.
|
|
|
|
if swap {
|
|
|
|
lv, rv = rv, lv
|
|
|
|
}
|
2016-12-24 02:37:16 -08:00
|
|
|
value, keep := vectorElemBinop(op, lv, rv)
|
2015-09-02 06:51:44 -07:00
|
|
|
if returnBool {
|
|
|
|
if keep {
|
|
|
|
value = 1.0
|
|
|
|
} else {
|
|
|
|
value = 0.0
|
|
|
|
}
|
|
|
|
keep = true
|
|
|
|
}
|
2015-03-30 10:13:36 -07:00
|
|
|
if keep {
|
2016-12-24 02:23:06 -08:00
|
|
|
lhsSample.V = value
|
2016-12-24 05:35:24 -08:00
|
|
|
if shouldDropMetricName(op) {
|
|
|
|
lhsSample.Metric = dropMetricName(lhsSample.Metric)
|
|
|
|
}
|
2015-08-24 09:04:41 -07:00
|
|
|
vec = append(vec, lhsSample)
|
2015-03-30 10:13:36 -07:00
|
|
|
}
|
|
|
|
}
|
2015-08-24 09:04:41 -07:00
|
|
|
return vec
|
2015-03-30 10:13:36 -07:00
|
|
|
}
|
|
|
|
|
2016-12-24 05:35:24 -08:00
|
|
|
func dropMetricName(l labels.Labels) labels.Labels {
|
|
|
|
return labels.NewBuilder(l).Del(labels.MetricName).Labels()
|
2016-12-23 04:51:59 -08:00
|
|
|
}
|
|
|
|
|
2016-12-24 02:37:16 -08:00
|
|
|
// scalarBinop evaluates a binary operation between two Scalars.
|
|
|
|
func scalarBinop(op itemType, lhs, rhs float64) float64 {
|
2015-03-30 10:13:36 -07:00
|
|
|
switch op {
|
|
|
|
case itemADD:
|
|
|
|
return lhs + rhs
|
|
|
|
case itemSUB:
|
|
|
|
return lhs - rhs
|
|
|
|
case itemMUL:
|
|
|
|
return lhs * rhs
|
|
|
|
case itemDIV:
|
|
|
|
return lhs / rhs
|
2016-05-29 02:06:14 -07:00
|
|
|
case itemPOW:
|
2016-12-23 04:51:59 -08:00
|
|
|
return math.Pow(float64(lhs), float64(rhs))
|
2015-03-30 10:13:36 -07:00
|
|
|
case itemMOD:
|
2016-12-23 04:51:59 -08:00
|
|
|
return math.Mod(float64(lhs), float64(rhs))
|
2015-03-30 10:13:36 -07:00
|
|
|
case itemEQL:
|
|
|
|
return btos(lhs == rhs)
|
|
|
|
case itemNEQ:
|
|
|
|
return btos(lhs != rhs)
|
|
|
|
case itemGTR:
|
|
|
|
return btos(lhs > rhs)
|
|
|
|
case itemLSS:
|
|
|
|
return btos(lhs < rhs)
|
|
|
|
case itemGTE:
|
|
|
|
return btos(lhs >= rhs)
|
|
|
|
case itemLTE:
|
|
|
|
return btos(lhs <= rhs)
|
|
|
|
}
|
2016-12-24 01:44:04 -08:00
|
|
|
panic(fmt.Errorf("operator %q not allowed for Scalar operations", op))
|
2015-03-30 10:13:36 -07:00
|
|
|
}
|
|
|
|
|
2016-12-24 02:37:16 -08:00
|
|
|
// vectorElemBinop evaluates a binary operation between two Vector elements.
|
|
|
|
func vectorElemBinop(op itemType, lhs, rhs float64) (float64, bool) {
|
2015-03-30 10:13:36 -07:00
|
|
|
switch op {
|
|
|
|
case itemADD:
|
|
|
|
return lhs + rhs, true
|
|
|
|
case itemSUB:
|
|
|
|
return lhs - rhs, true
|
|
|
|
case itemMUL:
|
|
|
|
return lhs * rhs, true
|
|
|
|
case itemDIV:
|
|
|
|
return lhs / rhs, true
|
2016-05-29 02:06:14 -07:00
|
|
|
case itemPOW:
|
2016-12-23 04:51:59 -08:00
|
|
|
return math.Pow(float64(lhs), float64(rhs)), true
|
2015-03-30 10:13:36 -07:00
|
|
|
case itemMOD:
|
2016-12-23 04:51:59 -08:00
|
|
|
return math.Mod(float64(lhs), float64(rhs)), true
|
2015-03-30 10:13:36 -07:00
|
|
|
case itemEQL:
|
|
|
|
return lhs, lhs == rhs
|
|
|
|
case itemNEQ:
|
|
|
|
return lhs, lhs != rhs
|
|
|
|
case itemGTR:
|
|
|
|
return lhs, lhs > rhs
|
|
|
|
case itemLSS:
|
|
|
|
return lhs, lhs < rhs
|
|
|
|
case itemGTE:
|
|
|
|
return lhs, lhs >= rhs
|
|
|
|
case itemLTE:
|
|
|
|
return lhs, lhs <= rhs
|
|
|
|
}
|
2016-12-24 01:40:09 -08:00
|
|
|
panic(fmt.Errorf("operator %q not allowed for operations between Vectors", op))
|
2015-03-30 10:13:36 -07:00
|
|
|
}
|
|
|
|
|
2016-12-23 04:51:59 -08:00
|
|
|
// intersection returns the metric of common label/value pairs of two input metrics.
|
|
|
|
func intersection(ls1, ls2 labels.Labels) labels.Labels {
|
|
|
|
res := make(labels.Labels, 0, 5)
|
|
|
|
|
|
|
|
for _, l1 := range ls1 {
|
|
|
|
for _, l2 := range ls2 {
|
|
|
|
if l1.Name == l2.Name && l1.Value == l2.Value {
|
|
|
|
res = append(res, l1)
|
|
|
|
continue
|
|
|
|
}
|
2015-03-30 10:13:36 -07:00
|
|
|
}
|
|
|
|
}
|
2016-12-23 04:51:59 -08:00
|
|
|
return res
|
2015-03-30 10:13:36 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
type groupedAggregation struct {
|
2016-12-23 04:51:59 -08:00
|
|
|
labels labels.Labels
|
|
|
|
value float64
|
|
|
|
valuesSquaredSum float64
|
2015-03-30 10:13:36 -07:00
|
|
|
groupCount int
|
2016-12-24 02:37:16 -08:00
|
|
|
heap vectorByValueHeap
|
|
|
|
reverseHeap vectorByReverseValueHeap
|
2015-03-30 10:13:36 -07:00
|
|
|
}
|
|
|
|
|
2016-12-24 01:40:09 -08:00
|
|
|
// aggregation evaluates an aggregation operation on a Vector.
|
|
|
|
func (ev *evaluator) aggregation(op itemType, grouping []string, without bool, keepCommon bool, param Expr, vec Vector) Vector {
|
2015-03-30 10:13:36 -07:00
|
|
|
|
|
|
|
result := map[uint64]*groupedAggregation{}
|
2016-11-04 16:48:32 -07:00
|
|
|
var k int64
|
2016-07-04 05:10:42 -07:00
|
|
|
if op == itemTopK || op == itemBottomK {
|
|
|
|
k = ev.evalInt(param)
|
|
|
|
if k < 1 {
|
2016-12-24 01:40:09 -08:00
|
|
|
return Vector{}
|
2016-07-04 05:10:42 -07:00
|
|
|
}
|
|
|
|
}
|
2016-07-08 05:48:48 -07:00
|
|
|
var q float64
|
|
|
|
if op == itemQuantile {
|
|
|
|
q = ev.evalFloat(param)
|
|
|
|
}
|
2016-12-23 04:51:59 -08:00
|
|
|
var valueLabel string
|
2016-07-05 09:12:19 -07:00
|
|
|
if op == itemCountValues {
|
2016-12-24 02:25:26 -08:00
|
|
|
valueLabel = ev.evalString(param).V
|
2016-07-05 09:12:19 -07:00
|
|
|
if !without {
|
|
|
|
grouping = append(grouping, valueLabel)
|
|
|
|
}
|
|
|
|
}
|
2015-03-30 10:13:36 -07:00
|
|
|
|
2016-07-04 05:10:42 -07:00
|
|
|
for _, s := range vec {
|
2016-12-24 05:35:24 -08:00
|
|
|
lb := labels.NewBuilder(s.Metric)
|
|
|
|
|
2016-12-28 00:16:48 -08:00
|
|
|
if without {
|
|
|
|
lb.Del(grouping...)
|
2016-12-24 05:35:24 -08:00
|
|
|
lb.Del(labels.MetricName)
|
2016-02-07 10:03:16 -08:00
|
|
|
}
|
2016-12-23 04:51:59 -08:00
|
|
|
if op == itemCountValues {
|
2016-12-28 00:16:48 -08:00
|
|
|
lb.Set(valueLabel, strconv.FormatFloat(float64(s.V), 'f', -1, 64))
|
2016-02-07 10:03:16 -08:00
|
|
|
}
|
2015-03-30 10:13:36 -07:00
|
|
|
|
2016-12-23 04:51:59 -08:00
|
|
|
var (
|
2016-12-28 00:16:48 -08:00
|
|
|
groupingKey uint64
|
2016-12-24 05:35:24 -08:00
|
|
|
metric = lb.Labels()
|
2016-12-23 04:51:59 -08:00
|
|
|
)
|
2016-12-28 00:16:48 -08:00
|
|
|
if without {
|
|
|
|
groupingKey = metric.Hash()
|
|
|
|
} else {
|
|
|
|
groupingKey = hashForLabels(metric, grouping...)
|
|
|
|
}
|
|
|
|
|
2016-12-23 04:51:59 -08:00
|
|
|
group, ok := result[groupingKey]
|
2015-03-30 10:13:36 -07:00
|
|
|
// Add a new group if it doesn't exist.
|
|
|
|
if !ok {
|
2016-12-23 04:51:59 -08:00
|
|
|
var m labels.Labels
|
2016-12-28 00:16:48 -08:00
|
|
|
|
|
|
|
if keepCommon {
|
|
|
|
m = lb.Del(labels.MetricName).Labels()
|
|
|
|
} else if without {
|
2016-12-23 04:51:59 -08:00
|
|
|
m = metric
|
2015-03-30 10:13:36 -07:00
|
|
|
} else {
|
2016-12-23 04:51:59 -08:00
|
|
|
m = make(labels.Labels, 0, len(grouping))
|
2016-12-28 00:16:48 -08:00
|
|
|
for _, l := range metric {
|
2016-12-23 04:51:59 -08:00
|
|
|
for _, n := range grouping {
|
|
|
|
if l.Name == n {
|
|
|
|
m = append(m, labels.Label{Name: n, Value: l.Value})
|
|
|
|
break
|
|
|
|
}
|
2015-03-30 10:13:36 -07:00
|
|
|
}
|
|
|
|
}
|
2016-12-28 00:16:48 -08:00
|
|
|
sort.Sort(m)
|
2015-03-30 10:13:36 -07:00
|
|
|
}
|
|
|
|
result[groupingKey] = &groupedAggregation{
|
|
|
|
labels: m,
|
2016-12-24 02:23:06 -08:00
|
|
|
value: s.V,
|
|
|
|
valuesSquaredSum: s.V * s.V,
|
2015-03-30 10:13:36 -07:00
|
|
|
groupCount: 1,
|
|
|
|
}
|
2016-07-08 05:48:48 -07:00
|
|
|
if op == itemTopK || op == itemQuantile {
|
2016-12-24 02:37:16 -08:00
|
|
|
result[groupingKey].heap = make(vectorByValueHeap, 0, k)
|
2016-12-24 02:32:10 -08:00
|
|
|
heap.Push(&result[groupingKey].heap, &Sample{
|
2016-12-24 02:23:06 -08:00
|
|
|
Point: Point{V: s.V},
|
|
|
|
Metric: s.Metric,
|
|
|
|
})
|
2016-07-04 05:10:42 -07:00
|
|
|
} else if op == itemBottomK {
|
2016-12-24 02:37:16 -08:00
|
|
|
result[groupingKey].reverseHeap = make(vectorByReverseValueHeap, 0, k)
|
2016-12-24 02:32:10 -08:00
|
|
|
heap.Push(&result[groupingKey].reverseHeap, &Sample{
|
2016-12-24 02:23:06 -08:00
|
|
|
Point: Point{V: s.V},
|
|
|
|
Metric: s.Metric,
|
|
|
|
})
|
2016-07-04 05:10:42 -07:00
|
|
|
}
|
2015-03-30 10:13:36 -07:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
// Add the sample to the existing group.
|
2016-05-26 09:42:19 -07:00
|
|
|
if keepCommon {
|
2016-12-23 04:51:59 -08:00
|
|
|
group.labels = intersection(group.labels, s.Metric)
|
2015-03-30 10:13:36 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
switch op {
|
|
|
|
case itemSum:
|
2016-12-24 02:23:06 -08:00
|
|
|
group.value += s.V
|
2016-12-23 04:51:59 -08:00
|
|
|
|
2015-03-30 10:13:36 -07:00
|
|
|
case itemAvg:
|
2016-12-24 02:23:06 -08:00
|
|
|
group.value += s.V
|
2016-12-23 04:51:59 -08:00
|
|
|
group.groupCount++
|
|
|
|
|
2015-03-30 10:13:36 -07:00
|
|
|
case itemMax:
|
2016-12-24 02:23:06 -08:00
|
|
|
if group.value < s.V || math.IsNaN(float64(group.value)) {
|
|
|
|
group.value = s.V
|
2015-03-30 10:13:36 -07:00
|
|
|
}
|
2016-12-23 04:51:59 -08:00
|
|
|
|
2015-03-30 10:13:36 -07:00
|
|
|
case itemMin:
|
2016-12-24 02:23:06 -08:00
|
|
|
if group.value > s.V || math.IsNaN(float64(group.value)) {
|
|
|
|
group.value = s.V
|
2015-03-30 10:13:36 -07:00
|
|
|
}
|
2016-12-23 04:51:59 -08:00
|
|
|
|
2016-07-05 09:12:19 -07:00
|
|
|
case itemCount, itemCountValues:
|
2016-12-23 04:51:59 -08:00
|
|
|
group.groupCount++
|
|
|
|
|
2015-03-30 10:13:36 -07:00
|
|
|
case itemStdvar, itemStddev:
|
2016-12-24 02:23:06 -08:00
|
|
|
group.value += s.V
|
|
|
|
group.valuesSquaredSum += s.V * s.V
|
2016-12-23 04:51:59 -08:00
|
|
|
group.groupCount++
|
|
|
|
|
2016-07-04 05:10:42 -07:00
|
|
|
case itemTopK:
|
2016-12-24 02:23:06 -08:00
|
|
|
if int64(len(group.heap)) < k || group.heap[0].V < s.V || math.IsNaN(float64(group.heap[0].V)) {
|
2016-12-23 04:51:59 -08:00
|
|
|
if int64(len(group.heap)) == k {
|
|
|
|
heap.Pop(&group.heap)
|
2016-07-04 05:10:42 -07:00
|
|
|
}
|
2016-12-24 02:32:10 -08:00
|
|
|
heap.Push(&group.heap, &Sample{
|
2016-12-24 02:23:06 -08:00
|
|
|
Point: Point{V: s.V},
|
|
|
|
Metric: s.Metric,
|
|
|
|
})
|
2016-07-04 05:10:42 -07:00
|
|
|
}
|
2016-12-23 04:51:59 -08:00
|
|
|
|
2016-07-04 05:10:42 -07:00
|
|
|
case itemBottomK:
|
2016-12-24 02:23:06 -08:00
|
|
|
if int64(len(group.reverseHeap)) < k || group.reverseHeap[0].V > s.V || math.IsNaN(float64(group.reverseHeap[0].V)) {
|
2016-12-23 04:51:59 -08:00
|
|
|
if int64(len(group.reverseHeap)) == k {
|
|
|
|
heap.Pop(&group.reverseHeap)
|
2016-07-04 05:10:42 -07:00
|
|
|
}
|
2016-12-24 02:32:10 -08:00
|
|
|
heap.Push(&group.reverseHeap, &Sample{
|
2016-12-24 02:23:06 -08:00
|
|
|
Point: Point{V: s.V},
|
|
|
|
Metric: s.Metric,
|
|
|
|
})
|
2016-07-04 05:10:42 -07:00
|
|
|
}
|
2016-12-23 04:51:59 -08:00
|
|
|
|
2016-07-08 05:48:48 -07:00
|
|
|
case itemQuantile:
|
2016-12-23 04:51:59 -08:00
|
|
|
group.heap = append(group.heap, s)
|
|
|
|
|
2015-03-30 10:13:36 -07:00
|
|
|
default:
|
|
|
|
panic(fmt.Errorf("expected aggregation operator but got %q", op))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-24 01:40:09 -08:00
|
|
|
// Construct the result Vector from the aggregated groups.
|
|
|
|
resultVector := make(Vector, 0, len(result))
|
2015-03-30 10:13:36 -07:00
|
|
|
|
|
|
|
for _, aggr := range result {
|
|
|
|
switch op {
|
|
|
|
case itemAvg:
|
2016-12-23 04:51:59 -08:00
|
|
|
aggr.value = aggr.value / float64(aggr.groupCount)
|
|
|
|
|
2016-07-05 09:12:19 -07:00
|
|
|
case itemCount, itemCountValues:
|
2016-12-23 04:51:59 -08:00
|
|
|
aggr.value = float64(aggr.groupCount)
|
|
|
|
|
2015-03-30 10:13:36 -07:00
|
|
|
case itemStdvar:
|
|
|
|
avg := float64(aggr.value) / float64(aggr.groupCount)
|
2016-12-23 04:51:59 -08:00
|
|
|
aggr.value = float64(aggr.valuesSquaredSum)/float64(aggr.groupCount) - avg*avg
|
|
|
|
|
2015-03-30 10:13:36 -07:00
|
|
|
case itemStddev:
|
|
|
|
avg := float64(aggr.value) / float64(aggr.groupCount)
|
2016-12-23 04:51:59 -08:00
|
|
|
aggr.value = math.Sqrt(float64(aggr.valuesSquaredSum)/float64(aggr.groupCount) - avg*avg)
|
|
|
|
|
2016-07-04 05:10:42 -07:00
|
|
|
case itemTopK:
|
|
|
|
// The heap keeps the lowest value on top, so reverse it.
|
|
|
|
sort.Sort(sort.Reverse(aggr.heap))
|
|
|
|
for _, v := range aggr.heap {
|
2016-12-24 02:32:10 -08:00
|
|
|
resultVector = append(resultVector, Sample{
|
2016-12-24 02:23:06 -08:00
|
|
|
Metric: v.Metric,
|
|
|
|
Point: Point{V: v.V, T: ev.Timestamp},
|
2016-07-04 05:10:42 -07:00
|
|
|
})
|
|
|
|
}
|
|
|
|
continue // Bypass default append.
|
2016-12-23 04:51:59 -08:00
|
|
|
|
2016-07-04 05:10:42 -07:00
|
|
|
case itemBottomK:
|
|
|
|
// The heap keeps the lowest value on top, so reverse it.
|
|
|
|
sort.Sort(sort.Reverse(aggr.reverseHeap))
|
|
|
|
for _, v := range aggr.reverseHeap {
|
2016-12-24 02:32:10 -08:00
|
|
|
resultVector = append(resultVector, Sample{
|
2016-12-24 02:23:06 -08:00
|
|
|
Metric: v.Metric,
|
|
|
|
Point: Point{V: v.V, T: ev.Timestamp},
|
2016-07-04 05:10:42 -07:00
|
|
|
})
|
|
|
|
}
|
|
|
|
continue // Bypass default append.
|
2016-12-23 04:51:59 -08:00
|
|
|
|
2016-07-08 05:48:48 -07:00
|
|
|
case itemQuantile:
|
2016-12-23 04:51:59 -08:00
|
|
|
aggr.value = quantile(q, aggr.heap)
|
|
|
|
|
2015-03-30 10:13:36 -07:00
|
|
|
default:
|
|
|
|
// For other aggregations, we already have the right value.
|
|
|
|
}
|
2016-12-23 04:51:59 -08:00
|
|
|
|
2016-12-24 02:32:10 -08:00
|
|
|
resultVector = append(resultVector, Sample{
|
2016-12-24 02:23:06 -08:00
|
|
|
Metric: aggr.labels,
|
|
|
|
Point: Point{V: aggr.value, T: ev.Timestamp},
|
2016-12-23 04:51:59 -08:00
|
|
|
})
|
2015-03-30 10:13:36 -07:00
|
|
|
}
|
|
|
|
return resultVector
|
|
|
|
}
|
|
|
|
|
|
|
|
// btos returns 1 if b is true, 0 otherwise.
|
2016-12-23 04:51:59 -08:00
|
|
|
func btos(b bool) float64 {
|
2015-03-30 10:13:36 -07:00
|
|
|
if b {
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
// shouldDropMetricName returns whether the metric name should be dropped in the
|
|
|
|
// result of the op operation.
|
|
|
|
func shouldDropMetricName(op itemType) bool {
|
|
|
|
switch op {
|
|
|
|
case itemADD, itemSUB, itemDIV, itemMUL, itemMOD:
|
|
|
|
return true
|
|
|
|
default:
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-15 03:49:11 -07:00
|
|
|
// StalenessDelta determines the time since the last sample after which a time
|
|
|
|
// series is considered stale.
|
|
|
|
var StalenessDelta = 5 * time.Minute
|
|
|
|
|
2015-04-30 15:49:19 -07:00
|
|
|
// A queryGate controls the maximum number of concurrently running and waiting queries.
|
|
|
|
type queryGate struct {
|
|
|
|
ch chan struct{}
|
|
|
|
}
|
|
|
|
|
|
|
|
// newQueryGate returns a query gate that limits the number of queries
|
|
|
|
// being concurrently executed.
|
|
|
|
func newQueryGate(length int) *queryGate {
|
|
|
|
return &queryGate{
|
|
|
|
ch: make(chan struct{}, length),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Start blocks until the gate has a free spot or the context is done.
|
|
|
|
func (g *queryGate) Start(ctx context.Context) error {
|
|
|
|
select {
|
|
|
|
case <-ctx.Done():
|
|
|
|
return contextDone(ctx, "query queue")
|
|
|
|
case g.ch <- struct{}{}:
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Done releases a single spot in the gate.
|
|
|
|
func (g *queryGate) Done() {
|
|
|
|
select {
|
|
|
|
case <-g.ch:
|
|
|
|
default:
|
|
|
|
panic("engine.queryGate.Done: more operations done than started")
|
|
|
|
}
|
|
|
|
}
|
2016-11-17 13:02:28 -08:00
|
|
|
|
|
|
|
// documentedType returns the internal type to the equivalent
|
|
|
|
// user facing terminology as defined in the documentation.
|
2016-12-23 04:51:59 -08:00
|
|
|
func documentedType(t ValueType) string {
|
|
|
|
switch t {
|
2016-12-28 00:16:48 -08:00
|
|
|
case "vector":
|
|
|
|
return "instant vector"
|
|
|
|
case "matrix":
|
|
|
|
return "range vector"
|
2016-11-17 13:02:28 -08:00
|
|
|
default:
|
2016-12-23 04:51:59 -08:00
|
|
|
return string(t)
|
2016-11-17 13:02:28 -08:00
|
|
|
}
|
|
|
|
}
|