File size: 16,038 Bytes
d6f631f | 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 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 | package clickhouse
import (
_ "embed"
"fmt"
"math"
"slices"
"sort"
"strings"
"time"
"github.com/ClickHouse/clickhouse-go/v2/lib/driver"
"github.com/huandu/go-sqlbuilder"
"github.com/samber/lo"
"github.com/shopspring/decimal"
meterpkg "github.com/openmeterio/openmeter/openmeter/meter"
"github.com/openmeterio/openmeter/openmeter/streaming"
"github.com/openmeterio/openmeter/pkg/filter"
"github.com/openmeterio/openmeter/pkg/models"
)
type NullDecimal struct {
decimal.NullDecimal
}
func (v *NullDecimal) Scan(src any) error {
err := v.NullDecimal.Scan(src)
if err == nil {
return nil
}
if d, ok := src.(decimal.Decimal); ok {
v.Valid = true
v.Decimal = d
return nil
}
return err
}
type queryMeter struct {
Database string
EventsTableName string
Namespace string
Meter meterpkg.Meter
FilterCustomer []streaming.Customer
FilterSubject []string
FilterGroupBy map[string]filter.FilterString
FilterStoredAt *filter.FilterTimeUnix
From *time.Time
To *time.Time
GroupBy []string
WindowSize *meterpkg.WindowSize
WindowTimeZone *time.Location
QuerySettings map[string]string
EnablePrewhere bool
EnableDecimalPrecision bool
}
// from returns the from time for the query.
func (d *queryMeter) from() *time.Time {
// If the query from time is set, use it
from := d.From
// If none of the from times are set, return nil
if from == nil && d.Meter.EventFrom == nil {
return nil
}
// If only the event from time is set, use it
if from == nil && d.Meter.EventFrom != nil {
return d.Meter.EventFrom
}
// If only the query from time is set, use it
if from != nil && d.Meter.EventFrom == nil {
return from
}
// If both the query from time and the event from time are set
// use the query from time if it's after the event from time
if from.After(*d.Meter.EventFrom) {
return from
}
return d.Meter.EventFrom
}
// toCountRowSQL returns the SQL query for the estimated number of rows.
// This estimate is useful for query progress tracking.
// We only filter by columns that are in the ClickHouse table order.
func (d *queryMeter) toCountRowSQL() (string, []interface{}) {
tableName := getTableName(d.Database, d.EventsTableName)
query := sqlbuilder.ClickHouse.NewSelectBuilder()
query.Select("count() AS total")
query.From(tableName)
// Where by ordered columns
query = d.whereByOrderedColumns(query)
sql, args := query.Build()
return sql, args
}
// toSQL returns the SQL query for the meter query.
func (d *queryMeter) toSQL() (string, []interface{}, error) {
tableName := getTableName(d.Database, d.EventsTableName)
getColumn := columnFactory(d.EventsTableName)
timeColumn := getColumn("time")
var selectColumns, groupByColumns []string
// Select windows if any
groupByWindowSize := d.WindowSize != nil
tz := "UTC"
if d.WindowTimeZone != nil {
tz = d.WindowTimeZone.String()
}
if groupByWindowSize {
switch *d.WindowSize {
case meterpkg.WindowSizeMinute:
selectColumns = append(
selectColumns,
fmt.Sprintf("tumbleStart(%s, toIntervalMinute(1), '%s') AS windowstart", timeColumn, tz),
fmt.Sprintf("tumbleEnd(%s, toIntervalMinute(1), '%s') AS windowend", timeColumn, tz),
)
case meterpkg.WindowSizeHour:
selectColumns = append(
selectColumns,
fmt.Sprintf("tumbleStart(%s, toIntervalHour(1), '%s') AS windowstart", timeColumn, tz),
fmt.Sprintf("tumbleEnd(%s, toIntervalHour(1), '%s') AS windowend", timeColumn, tz),
)
case meterpkg.WindowSizeDay:
selectColumns = append(
selectColumns,
fmt.Sprintf("tumbleStart(%s, toIntervalDay(1), '%s') AS windowstart", timeColumn, tz),
"windowstart + toIntervalDay(1) AS windowend",
)
case meterpkg.WindowSizeMonth:
selectColumns = append(
selectColumns,
// We need to convert the tumbleStart and tumbleEnd to DateTime, as otherwise we got a Date type. Given
// we are scanning the result into a time.Time, we will end up with the correct date in UTC. In case the timezone
// is not UTC, the returned values will be offset by the timezone difference.
//
// e.g.:
// if timezone is Europe/Budapest, then if we are not casting to DateTime, then:
// tumbleStart will return 2025-01-01 which will become 2025-01-01 00:00:00 in UTC
// this is wrong, as in CET this is 2024-12-31 23:00:00
// if we are casting to DateTime, then:
// tumbleStart will return 2025-01-01 00:00:00 in Europe/Budapest
// Other queries are not affected by this, as for anything < Month, the result is always a DateTime (most probably due to
// DST changes).
fmt.Sprintf("toDateTime(tumbleStart(%s, toIntervalMonth(1), '%s'), '%s') AS windowstart", timeColumn, tz, tz),
fmt.Sprintf("toDateTime(tumbleEnd(%s, toIntervalMonth(1), '%s'), '%s') AS windowend", timeColumn, tz, tz),
)
default:
return "", nil, models.NewGenericValidationError(
fmt.Errorf("invalid window size type: %s", *d.WindowSize),
)
}
groupByColumns = append(groupByColumns, "windowstart", "windowend")
} else {
// TODO: remove this when we don't round to the nearest minute anymore
// We round them to the nearest minute to ensure the result is the same as with
// streaming connector using materialized views with per minute windows
selectColumn := fmt.Sprintf("tumbleStart(min(%s), toIntervalMinute(1)) AS windowstart, tumbleEnd(max(%s), toIntervalMinute(1)) AS windowend", timeColumn, timeColumn)
selectColumns = append(selectColumns, selectColumn)
}
// Select Value
sqlAggregation := ""
switch d.Meter.Aggregation {
case meterpkg.MeterAggregationSum:
sqlAggregation = "sum"
case meterpkg.MeterAggregationAvg:
sqlAggregation = "avg"
case meterpkg.MeterAggregationMin:
sqlAggregation = "min"
case meterpkg.MeterAggregationMax:
sqlAggregation = "max"
case meterpkg.MeterAggregationUniqueCount:
// Use the uniqExact function if you absolutely need an exact result.
// See: https://clickhouse.com/docs/sql-reference/aggregate-functions/reference/uniqexact
sqlAggregation = "uniqExact"
case meterpkg.MeterAggregationCount:
sqlAggregation = "count"
case meterpkg.MeterAggregationLatest:
sqlAggregation = "argMax"
default:
return "", []interface{}{}, models.NewGenericValidationError(
fmt.Errorf("invalid aggregation type: %s", d.Meter.Aggregation),
)
}
switch d.Meter.Aggregation {
case meterpkg.MeterAggregationCount:
selectColumns = append(selectColumns, fmt.Sprintf("%s(*) AS value", sqlAggregation))
case meterpkg.MeterAggregationUniqueCount:
selectColumns = append(selectColumns, fmt.Sprintf("%s(nullIf(JSON_VALUE(%s, '%s'), 'null')) AS value", sqlAggregation, getColumn("data"), escapeJSONPathLiteral(*d.Meter.ValueProperty)))
case meterpkg.MeterAggregationLatest:
if d.EnableDecimalPrecision {
selectColumns = append(selectColumns, fmt.Sprintf("%s(toDecimal128OrNull(nullIf(JSON_VALUE(%s, '%s'), 'null'), 19), %s) AS value", sqlAggregation, getColumn("data"), escapeJSONPathLiteral(*d.Meter.ValueProperty), timeColumn))
} else {
selectColumns = append(selectColumns, fmt.Sprintf("%s(ifNotFinite(toFloat64OrNull(JSON_VALUE(%s, '%s')), null), %s) AS value", sqlAggregation, getColumn("data"), escapeJSONPathLiteral(*d.Meter.ValueProperty), timeColumn))
}
default:
if d.EnableDecimalPrecision {
selectColumns = append(selectColumns, fmt.Sprintf("%s(toDecimal128OrNull(nullIf(JSON_VALUE(%s, '%s'), 'null'), 19)) AS value", sqlAggregation, getColumn("data"), escapeJSONPathLiteral(*d.Meter.ValueProperty)))
} else {
// JSON_VALUE returns an empty string if the JSON Path is not found. With toFloat64OrNull we convert it to NULL so the aggregation function can handle it properly.
selectColumns = append(selectColumns, fmt.Sprintf("%s(ifNotFinite(toFloat64OrNull(JSON_VALUE(%s, '%s')), null)) AS value", sqlAggregation, getColumn("data"), escapeJSONPathLiteral(*d.Meter.ValueProperty)))
}
}
for _, groupByKey := range d.GroupBy {
// Subject is a special case as it's a top level column
if groupByKey == "subject" {
selectColumns = append(selectColumns, getColumn("subject"))
groupByColumns = append(groupByColumns, "subject")
continue
}
// Customer ID is a special case as it's a top level column
if groupByKey == "customer_id" {
groupByColumns = append(groupByColumns, "customer_id")
continue
}
// Group by columns need to be parsed from the JSON data
groupByColumn := sqlbuilder.Escape(groupByKey)
groupByJSONPath := escapeJSONPathLiteral(d.Meter.GroupBy[groupByKey])
selectColumn := fmt.Sprintf("JSON_VALUE(%s, '%s') as %s", getColumn("data"), groupByJSONPath, groupByColumn)
selectColumns = append(selectColumns, selectColumn)
groupByColumns = append(groupByColumns, groupByColumn)
}
query := sqlbuilder.ClickHouse.NewSelectBuilder()
query.Select(selectColumns...)
query.From(tableName)
// Select customer id column if it's in the group by
if slices.Contains(d.GroupBy, "customer_id") {
query = selectCustomerIdColumn(d.EventsTableName, d.FilterCustomer, query)
}
// Where by ordered columns, going into prewhere clause
query = d.whereByOrderedColumns(query)
var sqlBeforeApplyingDataWheres string
// Where by columns not in the order of the event table, going into where clause
if len(d.FilterGroupBy) > 0 {
// If prewhere is enabled, we take a copy of the query to build the prewhere clause
if d.EnablePrewhere {
sqlBeforeApplyingDataWheres, _ = query.Build()
}
// We sort the group by s to ensure the query is deterministic
groupByKeys := make([]string, 0, len(d.FilterGroupBy))
for k := range d.FilterGroupBy {
groupByKeys = append(groupByKeys, k)
}
sort.Strings(groupByKeys)
dataColumn := getColumn("data")
for _, groupByKey := range groupByKeys {
if _, ok := d.Meter.GroupBy[groupByKey]; !ok {
return "", nil, models.NewGenericValidationError(
fmt.Errorf("meter does not have group by: %s", groupByKey),
)
}
groupByJSONPath := d.Meter.GroupBy[groupByKey]
filterString := d.FilterGroupBy[groupByKey]
// Skip empty filters
if filterString.IsEmpty() {
continue
}
// Validate the filter
if err := filterString.Validate(); err != nil {
return "", nil, models.NewGenericValidationError(
fmt.Errorf("invalid filter for group by %s: %w", groupByKey, err),
)
}
// Determine the column name
column := fmt.Sprintf("JSON_VALUE(%s, '%s')", dataColumn, escapeJSONPathLiteral(groupByJSONPath))
// Subject is a special case
if groupByKey == "subject" {
column = "subject"
}
// Customer ID is a special case
if groupByKey == "customer_id" {
column = "customer_id"
}
// Use the filter's SelectWhereExpr method to generate the WHERE clause
whereExpr := filterString.SelectWhereExpr(column, query)
query = query.Where(whereExpr)
}
}
if d.FilterStoredAt != nil && !d.FilterStoredAt.IsEmpty() {
whereExpr := d.FilterStoredAt.SelectWhereExpr(getColumn("stored_at"), query)
query = query.Where(whereExpr)
}
// Group by
query = query.GroupBy(groupByColumns...)
// Order by
if groupByWindowSize {
query = query.OrderBy("windowstart")
}
settings := []string{}
sql, args := query.Build()
// Move wheres to prewhere if enabled and there are non prewhere filters
if d.EnablePrewhere && sqlBeforeApplyingDataWheres != "" {
settings = append(settings, "optimize_move_to_prewhere = 1")
settings = append(settings, "allow_reorder_prewhere_conditions = 1")
sqlParts := strings.Split(sql, sqlBeforeApplyingDataWheres)
sqlAfter := sqlParts[1]
if strings.HasPrefix(sqlAfter, " AND") {
sqlAfter = strings.Replace(sqlAfter, "AND", "WHERE", 1)
}
sqlBeforeApplyingDataWheres = strings.Replace(sqlBeforeApplyingDataWheres, "WHERE", "PREWHERE", 1)
sql = fmt.Sprintf("%s%s", sqlBeforeApplyingDataWheres, sqlAfter)
}
// Add settings
for key, value := range d.QuerySettings {
settings = append(settings, fmt.Sprintf("%s = %s", key, value))
}
if len(settings) > 0 {
sql = sql + fmt.Sprintf(" SETTINGS %s", strings.Join(settings, ", "))
}
return sql, args, nil
}
// whereByOrderedColumns applies the where clause to the query for columns that are ordered by the event table.
// The event table is ordered by namespace, type, subject, time.
func (d *queryMeter) whereByOrderedColumns(query *sqlbuilder.SelectBuilder) *sqlbuilder.SelectBuilder {
getColumn := columnFactory(d.EventsTableName)
query.Where(query.Equal(getColumn("namespace"), d.Namespace))
query.Where(query.Equal(getColumn("type"), d.Meter.EventType))
query = customersWhere(d.EventsTableName, d.FilterCustomer, query)
query = subjectWhere(d.EventsTableName, d.FilterSubject, query)
query = d.timeWhere(query)
return query
}
// timeWhere applies the time filter to the query.
func (d *queryMeter) timeWhere(query *sqlbuilder.SelectBuilder) *sqlbuilder.SelectBuilder {
getColumn := columnFactory(d.EventsTableName)
timeColumn := getColumn("time")
from := d.from()
if from != nil {
query = query.Where(query.GreaterEqualThan(timeColumn, from.Unix()))
}
if d.To != nil {
query = query.Where(query.LessThan(timeColumn, d.To.Unix()))
}
return query
}
// scanRows scans the rows from the query and returns a list of meter query rows.
func (queryMeter queryMeter) scanRows(rows driver.Rows) ([]meterpkg.MeterQueryRow, error) {
values := []meterpkg.MeterQueryRow{}
// Get the columns from the query
columns := rows.Columns()
if columns[0] != "windowstart" {
return values, fmt.Errorf("first column is not windowstart")
}
if columns[1] != "windowend" {
return values, fmt.Errorf("second column is not windowend")
}
if columns[2] != "value" {
return values, fmt.Errorf("third column is not value")
}
// Scan the rows
for rows.Next() {
row := meterpkg.MeterQueryRow{
GroupBy: map[string]*string{},
}
var value NullDecimal
args := []interface{}{&row.WindowStart, &row.WindowEnd, &value}
argCount := len(args)
if len(columns) > argCount {
for range columns[argCount:] {
args = append(args, lo.ToPtr(""))
}
}
if err := rows.Scan(args...); err != nil {
return values, fmt.Errorf("query meter view row scan: %w", err)
}
if !value.Valid {
continue
}
// TODO: use decimal.Decimal for row value
row.Value = value.Decimal.InexactFloat64()
if math.IsNaN(row.Value) {
return values, fmt.Errorf("value is NaN")
}
if math.IsInf(row.Value, 0) {
return values, fmt.Errorf("value is infinite")
}
for i, column := range columns[argCount:] {
if s, ok := args[i+argCount].(*string); ok {
// Subject is a top level field
if column == "subject" {
row.Subject = s
continue
}
// Customer ID is a top level field
if column == "customer_id" {
row.CustomerID = s
continue
}
// Consistency check
if !slices.Contains(queryMeter.GroupBy, column) {
return values, fmt.Errorf("column %s is not a valid group by", column)
}
row.GroupBy[column] = s
}
}
values = append(values, row)
}
err := rows.Err()
if err != nil {
return values, fmt.Errorf("rows error: %w", err)
}
return values, nil
}
// escapeJSONPathLiteral escapes a string so it can be safely embedded
// inside a single-quoted ClickHouse string literal (i.e. '…').
//
// It handles backslashes, single quotes, and double quotes.
func escapeJSONPathLiteral(s string) string {
var sb strings.Builder
// Reserve approximate capacity
sb.Grow(len(s) * 2)
for _, r := range s {
switch r {
case '\\':
sb.WriteString(`\\`)
case '\'':
// Use backslash-escape for single quote (\' ), or you could also use ''
sb.WriteString(`\'`)
case '"':
// Escape double quotes (optional, depending on JSON path syntax)
sb.WriteString(`\"`)
default:
// For other runes, just write them
sb.WriteRune(r)
}
}
return sb.String()
}
|