2020-09-10 21:28:19 +00:00
package searchutils
import (
"flag"
"fmt"
"math"
"net/http"
"strconv"
"strings"
"time"
2020-09-11 10:18:57 +00:00
"github.com/VictoriaMetrics/VictoriaMetrics/lib/fasttime"
2020-09-10 21:28:19 +00:00
"github.com/VictoriaMetrics/metricsql"
)
var (
maxExportDuration = flag . Duration ( "search.maxExportDuration" , time . Hour * 24 * 30 , "The maximum duration for /api/v1/export call" )
2020-09-16 18:03:51 +00:00
maxQueryDuration = flag . Duration ( "search.maxQueryDuration" , time . Second * 30 , "The maximum duration for query execution" )
2020-09-10 21:28:19 +00:00
)
2020-09-21 18:23:43 +00:00
func roundToSeconds ( ms int64 ) int64 {
return ms - ms % 1000
}
2020-09-10 21:28:19 +00:00
// GetTime returns time from the given argKey query arg.
2020-09-21 18:23:43 +00:00
//
// If argKey is missing in r, then defaultMs rounded to seconds is returned.
// The rounding is needed in order to align query results in Grafana
// executed at different times. See https://github.com/VictoriaMetrics/VictoriaMetrics/issues/720
func GetTime ( r * http . Request , argKey string , defaultMs int64 ) ( int64 , error ) {
2020-09-10 21:28:19 +00:00
argValue := r . FormValue ( argKey )
if len ( argValue ) == 0 {
2020-09-21 18:23:43 +00:00
return roundToSeconds ( defaultMs ) , nil
2020-09-10 21:28:19 +00:00
}
secs , err := strconv . ParseFloat ( argValue , 64 )
if err != nil {
// Try parsing string format
t , err := time . Parse ( time . RFC3339 , argValue )
if err != nil {
// Handle Prometheus'-provided minTime and maxTime.
// See https://github.com/prometheus/client_golang/issues/614
switch argValue {
case prometheusMinTimeFormatted :
return minTimeMsecs , nil
case prometheusMaxTimeFormatted :
return maxTimeMsecs , nil
}
// Try parsing duration relative to the current time
d , err1 := metricsql . DurationValue ( argValue , 0 )
if err1 != nil {
return 0 , fmt . Errorf ( "cannot parse %q=%q: %w" , argKey , argValue , err )
}
if d > 0 {
d = - d
}
t = time . Now ( ) . Add ( time . Duration ( d ) * time . Millisecond )
}
secs = float64 ( t . UnixNano ( ) ) / 1e9
}
msecs := int64 ( secs * 1e3 )
if msecs < minTimeMsecs {
msecs = 0
}
if msecs > maxTimeMsecs {
msecs = maxTimeMsecs
}
return msecs , nil
}
var (
// These constants were obtained from https://github.com/prometheus/prometheus/blob/91d7175eaac18b00e370965f3a8186cc40bf9f55/web/api/v1/api.go#L442
// See https://github.com/prometheus/client_golang/issues/614 for details.
prometheusMinTimeFormatted = time . Unix ( math . MinInt64 / 1000 + 62135596801 , 0 ) . UTC ( ) . Format ( time . RFC3339Nano )
prometheusMaxTimeFormatted = time . Unix ( math . MaxInt64 / 1000 - 62135596801 , 999999999 ) . UTC ( ) . Format ( time . RFC3339Nano )
)
const (
// These values prevent from overflow when storing msec-precision time in int64.
minTimeMsecs = 0 // use 0 instead of `int64(-1<<63) / 1e6` because the storage engine doesn't actually support negative time
maxTimeMsecs = int64 ( 1 << 63 - 1 ) / 1e6
)
// GetDuration returns duration from the given argKey query arg.
func GetDuration ( r * http . Request , argKey string , defaultValue int64 ) ( int64 , error ) {
argValue := r . FormValue ( argKey )
if len ( argValue ) == 0 {
return defaultValue , nil
}
secs , err := strconv . ParseFloat ( argValue , 64 )
if err != nil {
// Try parsing string format
d , err := metricsql . DurationValue ( argValue , 0 )
if err != nil {
return 0 , fmt . Errorf ( "cannot parse %q=%q: %w" , argKey , argValue , err )
}
secs = float64 ( d ) / 1000
}
msecs := int64 ( secs * 1e3 )
if msecs <= 0 || msecs > maxDurationMsecs {
return 0 , fmt . Errorf ( "%q=%dms is out of allowed range [%d ... %d]" , argKey , msecs , 0 , int64 ( maxDurationMsecs ) )
}
return msecs , nil
}
const maxDurationMsecs = 100 * 365 * 24 * 3600 * 1000
2020-09-21 22:21:20 +00:00
// GetMaxQueryDuration returns the maximum duration for query from r.
func GetMaxQueryDuration ( r * http . Request ) time . Duration {
dms , err := GetDuration ( r , "timeout" , 0 )
if err != nil {
dms = 0
}
d := time . Duration ( dms ) * time . Millisecond
if d <= 0 || d > * maxQueryDuration {
d = * maxQueryDuration
}
return d
}
2020-09-10 21:28:19 +00:00
// GetDeadlineForQuery returns deadline for the given query r.
2020-09-11 10:18:57 +00:00
func GetDeadlineForQuery ( r * http . Request , startTime time . Time ) Deadline {
2020-09-10 21:28:19 +00:00
dMax := maxQueryDuration . Milliseconds ( )
return getDeadlineWithMaxDuration ( r , startTime , dMax , "-search.maxQueryDuration" )
}
// GetDeadlineForExport returns deadline for the given request to /api/v1/export.
2020-09-11 10:18:57 +00:00
func GetDeadlineForExport ( r * http . Request , startTime time . Time ) Deadline {
2020-09-10 21:28:19 +00:00
dMax := maxExportDuration . Milliseconds ( )
return getDeadlineWithMaxDuration ( r , startTime , dMax , "-search.maxExportDuration" )
}
2020-09-11 10:18:57 +00:00
func getDeadlineWithMaxDuration ( r * http . Request , startTime time . Time , dMax int64 , flagHint string ) Deadline {
2020-09-10 21:28:19 +00:00
d , err := GetDuration ( r , "timeout" , 0 )
if err != nil {
d = 0
}
if d <= 0 || d > dMax {
d = dMax
}
timeout := time . Duration ( d ) * time . Millisecond
2020-09-11 10:18:57 +00:00
return NewDeadline ( startTime , timeout , flagHint )
2020-09-10 21:28:19 +00:00
}
// GetBool returns boolean value from the given argKey query arg.
func GetBool ( r * http . Request , argKey string ) bool {
argValue := r . FormValue ( argKey )
switch strings . ToLower ( argValue ) {
case "" , "0" , "f" , "false" , "no" :
return false
default :
return true
}
}
2020-09-11 10:18:57 +00:00
// Deadline contains deadline with the corresponding timeout for pretty error messages.
type Deadline struct {
deadline uint64
timeout time . Duration
flagHint string
}
// NewDeadline returns deadline for the given timeout.
//
// flagHint must contain a hit for command-line flag, which could be used
// in order to increase timeout.
func NewDeadline ( startTime time . Time , timeout time . Duration , flagHint string ) Deadline {
return Deadline {
deadline : uint64 ( startTime . Add ( timeout ) . Unix ( ) ) ,
timeout : timeout ,
flagHint : flagHint ,
}
}
// Exceeded returns true if deadline is exceeded.
func ( d * Deadline ) Exceeded ( ) bool {
return fasttime . UnixTimestamp ( ) > d . deadline
}
// Deadline returns deadline in unix timestamp seconds.
func ( d * Deadline ) Deadline ( ) uint64 {
return d . deadline
}
// String returns human-readable string representation for d.
func ( d * Deadline ) String ( ) string {
2020-11-30 22:14:06 +00:00
startTime := time . Unix ( int64 ( d . deadline ) , 0 ) . Add ( - d . timeout )
elapsed := time . Since ( startTime )
return fmt . Sprintf ( "%.3f seconds (elapsed %.3f seconds); the timeout can be adjusted with `%s` command-line flag" , d . timeout . Seconds ( ) , elapsed . Seconds ( ) , d . flagHint )
2020-09-11 10:18:57 +00:00
}