-
Notifications
You must be signed in to change notification settings - Fork 453
/
m3_wrapper.go
198 lines (174 loc) · 6.1 KB
/
m3_wrapper.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
// Copyright (c) 2019 Uber Technologies, Inc.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
package storage
import (
"context"
"errors"
"fmt"
"time"
"github.com/m3db/m3/src/query/cost"
xctx "github.com/m3db/m3/src/query/graphite/context"
"github.com/m3db/m3/src/query/graphite/graphite"
"github.com/m3db/m3/src/query/graphite/ts"
"github.com/m3db/m3/src/query/models"
"github.com/m3db/m3/src/query/storage"
m3ts "github.com/m3db/m3/src/query/ts"
"github.com/m3db/m3/src/query/util/logging"
"github.com/m3db/m3/src/x/instrument"
"go.uber.org/zap"
)
var (
errSeriesNoResolution = errors.New("series has no resolution set")
)
type m3WrappedStore struct {
m3 storage.Storage
enforcer cost.ChainedEnforcer
queryContextOpts models.QueryContextOptions
instrumentOpts instrument.Options
}
// NewM3WrappedStorage creates a graphite storage wrapper around an m3query
// storage instance.
func NewM3WrappedStorage(
m3storage storage.Storage,
enforcer cost.ChainedEnforcer,
queryContextOpts models.QueryContextOptions,
instrumentOpts instrument.Options,
) Storage {
if enforcer == nil {
enforcer = cost.NoopChainedEnforcer()
}
return &m3WrappedStore{
m3: m3storage,
enforcer: enforcer,
queryContextOpts: queryContextOpts,
instrumentOpts: instrumentOpts,
}
}
// TranslateQueryToMatchersWithTerminator converts a graphite query to tag
// matcher pairs, and adds a terminator matcher to the end.
func TranslateQueryToMatchersWithTerminator(
query string,
) (models.Matchers, error) {
metricLength := graphite.CountMetricParts(query)
// Add space for a terminator character.
matchersLength := metricLength + 1
matchers := make(models.Matchers, matchersLength)
for i := 0; i < metricLength; i++ {
metric := graphite.ExtractNthMetricPart(query, i)
if len(metric) > 0 {
m, err := convertMetricPartToMatcher(i, metric)
if err != nil {
return nil, err
}
matchers[i] = m
} else {
return nil, fmt.Errorf("invalid matcher format: %s", query)
}
}
// Add a terminator matcher at the end to ensure expansion is terminated at
// the last given metric part.
matchers[metricLength] = matcherTerminator(metricLength)
return matchers, nil
}
// GetQueryTerminatorTagName will return the name for the terminator matcher in
// the given pattern. This is useful for filtering out any additional results.
func GetQueryTerminatorTagName(query string) []byte {
metricLength := graphite.CountMetricParts(query)
return graphite.TagName(metricLength)
}
func translateQuery(query string, opts FetchOptions) (*storage.FetchQuery, error) {
matchers, err := TranslateQueryToMatchersWithTerminator(query)
if err != nil {
return nil, err
}
return &storage.FetchQuery{
Raw: query,
TagMatchers: matchers,
Start: opts.StartTime,
End: opts.EndTime,
// NB: interval is not used for initial consolidation step from the storage
// so it's fine to use default here.
Interval: time.Duration(0),
}, nil
}
func translateTimeseries(
ctx xctx.Context,
m3list m3ts.SeriesList,
start, end time.Time,
) ([]*ts.Series, error) {
series := make([]*ts.Series, len(m3list))
for i, m3series := range m3list {
resolution := m3series.Resolution()
if resolution <= 0 {
return nil, errSeriesNoResolution
}
length := int(end.Sub(start) / resolution)
millisPerStep := int(resolution / time.Millisecond)
values := ts.NewValues(ctx, millisPerStep, length)
for _, datapoint := range m3series.Values().Datapoints() {
index := int(datapoint.Timestamp.Sub(start) / resolution)
if index < 0 || index >= length {
// Outside of range requested
continue
}
values.SetValueAt(index, datapoint.Value)
}
name := string(m3series.Name())
series[i] = ts.NewSeries(ctx, name, start, values)
}
return series, nil
}
func (s *m3WrappedStore) FetchByQuery(
ctx xctx.Context, query string, opts FetchOptions,
) (*FetchResult, error) {
m3query, err := translateQuery(query, opts)
if err != nil {
// NB: error here implies the query cannot be translated; empty set expected
// rather than propagating an error.
logger := logging.WithContext(ctx.RequestContext(), s.instrumentOpts)
logger.Info("could not translate query, returning empty results",
zap.String("query", query))
return &FetchResult{
SeriesList: []*ts.Series{},
}, nil
}
m3ctx, cancel := context.WithTimeout(ctx.RequestContext(), opts.Timeout)
defer cancel()
fetchOptions := storage.NewFetchOptions()
fetchOptions.Limit = s.queryContextOpts.LimitMaxTimeseries
perQueryEnforcer := s.enforcer.Child(cost.QueryLevel)
defer perQueryEnforcer.Close()
fetchOptions.Enforcer = perQueryEnforcer
fetchOptions.FanoutOptions = &storage.FanoutOptions{
FanoutUnaggregated: storage.FanoutForceDisable,
FanoutAggregated: storage.FanoutDefault,
FanoutAggregatedOptimized: storage.FanoutForceDisable,
}
m3result, err := s.m3.Fetch(m3ctx, m3query, fetchOptions)
if err != nil {
return nil, err
}
series, err := translateTimeseries(ctx, m3result.SeriesList,
opts.StartTime, opts.EndTime)
if err != nil {
return nil, err
}
return NewFetchResult(ctx, series), nil
}