-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathqueries.go
281 lines (238 loc) · 8.52 KB
/
queries.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
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
package godruid
import (
"encoding/json"
)
// Check http://druid.io/docs/0.6.154/Querying.html#query-operators for detail description.
// The Query interface stands for any kinds of druid query.
type Query interface {
setup()
onResponse(content []byte) error
}
// ---------------------------------
// GroupBy Query
// ---------------------------------
type QueryGroupBy struct {
QueryType string `json:"queryType"`
DataSource string `json:"dataSource"`
Dimensions []DimSpec `json:"dimensions"`
Granularity Granlarity `json:"granularity"`
LimitSpec *Limit `json:"limitSpec,omitempty"`
Having *Having `json:"having,omitempty"`
Filter *Filter `json:"filter,omitempty"`
Aggregations []Aggregation `json:"aggregations"`
PostAggregations []PostAggregation `json:"postAggregations,omitempty"`
Intervals []string `json:"intervals"`
Context map[string]interface{} `json:"context,omitempty"`
QueryResult []GroupbyItem `json:"-"`
}
type GroupbyItem struct {
Version string `json:"version"`
Timestamp string `json:"timestamp"`
Event map[string]interface{} `json:"event"`
}
func (q *QueryGroupBy) setup() { q.QueryType = "groupBy" }
func (q *QueryGroupBy) onResponse(content []byte) error {
res := new([]GroupbyItem)
err := json.Unmarshal(content, res)
if err != nil {
return err
}
q.QueryResult = *res
return nil
}
// ---------------------------------
// Search Query
// ---------------------------------
type QuerySearch struct {
QueryType string `json:"queryType"`
DataSource string `json:"dataSource"`
Granularity Granlarity `json:"granularity"`
Filter *Filter `json:"filter,omitempty"`
Intervals []string `json:"intervals"`
SearchDimensions []string `json:"searchDimensions,omitempty"`
Query *SearchQuery `json:"query"`
Sort *SearchSort `json:"sort"`
Context map[string]interface{} `json:"context,omitempty"`
QueryResult []SearchItem `json:"-"`
}
type SearchItem struct {
Timestamp string `json:"timestamp"`
Result []DimValue `json:"result"`
}
type DimValue struct {
Dimension string `json:"dimension"`
Value string `json:"value"`
}
func (q *QuerySearch) setup() { q.QueryType = "search" }
func (q *QuerySearch) onResponse(content []byte) error {
res := new([]SearchItem)
err := json.Unmarshal(content, res)
if err != nil {
return err
}
q.QueryResult = *res
return nil
}
// ---------------------------------
// SegmentMetadata Query
// ---------------------------------
type QuerySegmentMetadata struct {
QueryType string `json:"queryType"`
DataSource string `json:"dataSource"`
Intervals []string `json:"intervals"`
ToInclude *ToInclude `json:"toInclude,omitempty"`
Merge interface{} `json:"merge,omitempty"`
Context map[string]interface{} `json:"context,omitempty"`
QueryResult []SegmentMetaData `json:"-"`
}
type SegmentMetaData struct {
Id string `json:"id"`
Intervals []string `json:"intervals"`
Columns map[string]ColumnItem `json:"columns"`
}
type ColumnItem struct {
Type string `json:"type"`
Size int `json:"size"`
Cardinality interface{} `json:"cardinality"`
}
func (q *QuerySegmentMetadata) setup() { q.QueryType = "segmentMetadata" }
func (q *QuerySegmentMetadata) onResponse(content []byte) error {
res := new([]SegmentMetaData)
err := json.Unmarshal(content, res)
if err != nil {
return err
}
q.QueryResult = *res
return nil
}
// ---------------------------------
// TimeBoundary Query
// ---------------------------------
type QueryTimeBoundary struct {
QueryType string `json:"queryType"`
DataSource string `json:"dataSource"`
Bound string `json:"bound,omitempty"`
Context map[string]interface{} `json:"context,omitempty"`
QueryResult []TimeBoundaryItem `json:"-"`
}
type TimeBoundaryItem struct {
Timestamp string `json:"timestamp"`
Result TimeBoundary `json:"result"`
}
type TimeBoundary struct {
MinTime string `json:"minTime"`
MaxTime string `json:"minTime"`
}
func (q *QueryTimeBoundary) setup() { q.QueryType = "timeBoundary" }
func (q *QueryTimeBoundary) onResponse(content []byte) error {
res := new([]TimeBoundaryItem)
err := json.Unmarshal(content, res)
if err != nil {
return err
}
q.QueryResult = *res
return nil
}
// ---------------------------------
// Timeseries Query
// ---------------------------------
type QueryTimeseries struct {
QueryType string `json:"queryType"`
DataSource string `json:"dataSource"`
Granularity Granlarity `json:"granularity"`
Filter *Filter `json:"filter,omitempty"`
Aggregations []Aggregation `json:"aggregations"`
PostAggregations []PostAggregation `json:"postAggregations,omitempty"`
Intervals []string `json:"intervals"`
Context map[string]interface{} `json:"context,omitempty"`
QueryResult []Timeseries `json:"-"`
}
type Timeseries struct {
Timestamp string `json:"timestamp"`
Result map[string]interface{} `json:"result"`
}
func (q *QueryTimeseries) setup() { q.QueryType = "timeseries" }
func (q *QueryTimeseries) onResponse(content []byte) error {
res := new([]Timeseries)
err := json.Unmarshal(content, res)
if err != nil {
return err
}
q.QueryResult = *res
return nil
}
// ---------------------------------
// TopN Query
// ---------------------------------
type QueryTopN struct {
QueryType string `json:"queryType"`
DataSource string `json:"dataSource"`
Granularity Granlarity `json:"granularity"`
Dimension DimSpec `json:"dimension"`
Threshold int `json:"threshold"`
Metric *TopNMetric `json:"metric"`
Filter *Filter `json:"filter,omitempty"`
Aggregations []Aggregation `json:"aggregations"`
PostAggregations []PostAggregation `json:"postAggregations,omitempty"`
Intervals []string `json:"intervals"`
Context map[string]interface{} `json:"context,omitempty"`
QueryResult []TopNItem `json:"-"`
}
type TopNItem struct {
Timestamp string `json:"timestamp"`
Result []map[string]interface{} `json:"result"`
}
func (q *QueryTopN) setup() { q.QueryType = "topN" }
func (q *QueryTopN) onResponse(content []byte) error {
res := new([]TopNItem)
err := json.Unmarshal(content, res)
if err != nil {
return err
}
q.QueryResult = *res
return nil
}
// ---------------------------------
// Select Query
// ---------------------------------
type QuerySelect struct {
QueryType string `json:"queryType"`
DataSource string `json:"dataSource"`
Intervals []string `json:"intervals"`
Filter *Filter `json:"filter,omitempty"`
Dimensions []DimSpec `json:"dimensions"`
Metrics []string `json:"metrics"`
Granularity Granlarity `json:"granularity"`
PagingSpec map[string]interface{} `json:"pagingSpec,omitempty"`
Context map[string]interface{} `json:"context,omitempty"`
QueryResult SelectBlob `json:"-"`
}
// Select json blob from druid comes back as following:
// http://druid.io/docs/latest/querying/select-query.html
// the interesting results are in events blob which we
// call as 'SelectEvent'.
type SelectBlob struct {
Timestamp string `json:"timestamp"`
Result SelectResult `json:"result"`
}
type SelectResult struct {
PagingIdentifiers map[string]interface{} `json:"pagingIdentifiers"`
Events []SelectEvent `json:"events"`
}
type SelectEvent struct {
SegmentId string `json:"segmentId"`
Offset int64 `json:"offset"`
Event map[string]interface{} `json:"event"`
}
func (q *QuerySelect) setup() { q.QueryType = "select" }
func (q *QuerySelect) onResponse(content []byte) error {
res := new([]SelectBlob)
err := json.Unmarshal(content, res)
if err != nil {
return err
}
if len(*res) > 0 {
q.QueryResult = (*res)[0]
}
return nil
}