2022-06-28 11:04:14 +00:00
package servers
2019-05-22 21:23:23 +00:00
import (
"flag"
"fmt"
2020-06-30 21:58:26 +00:00
"net/http"
2019-05-22 21:23:23 +00:00
"sync"
2020-05-15 12:42:30 +00:00
"github.com/VictoriaMetrics/VictoriaMetrics/lib/fasttime"
2020-06-30 21:58:26 +00:00
"github.com/VictoriaMetrics/VictoriaMetrics/lib/httpserver"
2022-05-31 23:31:40 +00:00
"github.com/VictoriaMetrics/VictoriaMetrics/lib/querytracer"
2019-05-22 21:23:23 +00:00
"github.com/VictoriaMetrics/VictoriaMetrics/lib/storage"
2022-06-27 11:20:39 +00:00
"github.com/VictoriaMetrics/VictoriaMetrics/lib/vmselectapi"
2019-05-22 21:23:23 +00:00
)
var (
2022-06-27 11:20:39 +00:00
maxUniqueTimeseries = flag . Int ( "search.maxUniqueTimeseries" , 0 , "The maximum number of unique time series, which can be scanned during every query. This allows protecting against heavy queries, which select unexpectedly high number of series. Zero means 'no limit'. See also -search.max* command-line flags at vmselect" )
maxTagKeys = flag . Int ( "search.maxTagKeys" , 100e3 , "The maximum number of tag keys returned per search" )
maxTagValues = flag . Int ( "search.maxTagValues" , 100e3 , "The maximum number of tag values returned per search" )
2020-09-10 21:29:26 +00:00
maxTagValueSuffixesPerSearch = flag . Int ( "search.maxTagValueSuffixesPerSearch" , 100e3 , "The maximum number of tag value suffixes returned from /metrics/find" )
2019-05-22 21:23:23 +00:00
2022-06-23 16:19:36 +00:00
disableRPCCompression = flag . Bool ( ` rpc.disableCompression ` , false , "Whether to disable compression of the data sent from vmstorage to vmselect. " +
"This reduces CPU usage at the cost of higher network bandwidth usage" )
2020-06-30 21:58:26 +00:00
denyQueriesOutsideRetention = flag . Bool ( "denyQueriesOutsideRetention" , false , "Whether to deny queries outside of the configured -retentionPeriod. " +
"When set, then /api/v1/query_range would return '503 Service Unavailable' error for queries with 'from' value outside -retentionPeriod. " +
"This may be useful when multiple data sources with distinct retentions are hidden behind query-tee" )
2019-05-22 21:23:23 +00:00
)
2022-06-27 11:20:39 +00:00
// NewVMSelectServer starts new server at the given addr, which serves vmselect requests from the given s.
func NewVMSelectServer ( addr string , s * storage . Storage ) ( * vmselectapi . Server , error ) {
api := & vmstorageAPI {
s : s ,
2020-11-16 08:55:55 +00:00
}
2022-06-27 11:20:39 +00:00
limits := vmselectapi . Limits {
MaxMetrics : * maxUniqueTimeseries ,
MaxLabelNames : * maxTagKeys ,
MaxLabelValues : * maxTagValues ,
MaxTagValueSuffixes : * maxTagValueSuffixesPerSearch ,
2020-11-16 08:55:55 +00:00
}
2022-06-27 11:20:39 +00:00
return vmselectapi . NewServer ( addr , api , limits , * disableRPCCompression )
2020-11-16 08:55:55 +00:00
}
2022-06-27 11:20:39 +00:00
// vmstorageAPI impelemnts vmselectapi.API
type vmstorageAPI struct {
s * storage . Storage
2019-05-22 21:23:23 +00:00
}
2022-06-27 11:20:39 +00:00
func ( api * vmstorageAPI ) InitSearch ( qt * querytracer . Tracer , tfss [ ] * storage . TagFilters , tr storage . TimeRange , maxMetrics int , deadline uint64 ) ( vmselectapi . BlockIterator , error ) {
if err := checkTimeRange ( api . s , tr ) ; err != nil {
return nil , err
2019-08-04 19:15:33 +00:00
}
2022-06-27 11:20:39 +00:00
bi := getBlockIterator ( )
bi . sr . Init ( qt , api . s , tfss , tr , maxMetrics , deadline )
if err := bi . sr . Error ( ) ; err != nil {
bi . MustClose ( )
return nil , err
2020-09-10 21:29:26 +00:00
}
2022-06-27 11:20:39 +00:00
return bi , nil
2020-09-10 21:29:26 +00:00
}
2022-06-28 14:36:27 +00:00
func ( api * vmstorageAPI ) SearchMetricNames ( qt * querytracer . Tracer , tfss [ ] * storage . TagFilters , tr storage . TimeRange , maxMetrics int , deadline uint64 ) ( [ ] string , error ) {
2022-06-27 11:20:39 +00:00
return api . s . SearchMetricNames ( qt , tfss , tr , maxMetrics , deadline )
2019-05-22 21:23:23 +00:00
}
2022-06-27 11:20:39 +00:00
func ( api * vmstorageAPI ) LabelValues ( qt * querytracer . Tracer , accountID , projectID uint32 , tfss [ ] * storage . TagFilters , tr storage . TimeRange , labelName string ,
maxLabelValues , maxMetrics int , deadline uint64 ) ( [ ] string , error ) {
return api . s . SearchLabelValuesWithFiltersOnTimeRange ( qt , accountID , projectID , labelName , tfss , tr , maxLabelValues , maxMetrics , deadline )
2020-02-13 15:32:54 +00:00
}
2022-06-27 11:20:39 +00:00
func ( api * vmstorageAPI ) TagValueSuffixes ( qt * querytracer . Tracer , accountID , projectID uint32 , tr storage . TimeRange , tagKey , tagValuePrefix [ ] byte , delimiter byte ,
maxSuffixes int , deadline uint64 ) ( [ ] string , error ) {
return api . s . SearchTagValueSuffixes ( qt , accountID , projectID , tr , tagKey , tagValuePrefix , delimiter , maxSuffixes , deadline )
2019-05-22 21:23:23 +00:00
}
2022-06-27 11:20:39 +00:00
func ( api * vmstorageAPI ) LabelNames ( qt * querytracer . Tracer , accountID , projectID uint32 , tfss [ ] * storage . TagFilters , tr storage . TimeRange , maxLabelNames ,
maxMetrics int , deadline uint64 ) ( [ ] string , error ) {
return api . s . SearchLabelNamesWithFiltersOnTimeRange ( qt , accountID , projectID , tfss , tr , maxLabelNames , maxMetrics , deadline )
2019-05-22 21:23:23 +00:00
}
2022-06-27 11:20:39 +00:00
func ( api * vmstorageAPI ) SeriesCount ( qt * querytracer . Tracer , accountID , projectID uint32 , deadline uint64 ) ( uint64 , error ) {
return api . s . GetSeriesCount ( accountID , projectID , deadline )
2019-05-22 21:23:23 +00:00
}
2022-06-27 11:20:39 +00:00
func ( api * vmstorageAPI ) TSDBStatus ( qt * querytracer . Tracer , accountID , projectID uint32 , tfss [ ] * storage . TagFilters , date uint64 , focusLabel string ,
topN , maxMetrics int , deadline uint64 ) ( * storage . TSDBStatus , error ) {
return api . s . GetTSDBStatus ( qt , accountID , projectID , tfss , date , focusLabel , topN , maxMetrics , deadline )
2019-05-22 21:23:23 +00:00
}
2022-06-27 11:20:39 +00:00
func ( api * vmstorageAPI ) DeleteMetrics ( qt * querytracer . Tracer , tfss [ ] * storage . TagFilters , maxMetrics int , deadline uint64 ) ( int , error ) {
return api . s . DeleteMetrics ( qt , tfss )
2019-05-22 21:23:23 +00:00
}
2022-06-27 11:20:39 +00:00
func ( api * vmstorageAPI ) RegisterMetricNames ( qt * querytracer . Tracer , mrs [ ] storage . MetricRow ) error {
return api . s . RegisterMetricNames ( qt , mrs )
2019-06-10 15:55:20 +00:00
}
2022-06-27 11:20:39 +00:00
func ( api * vmstorageAPI ) SearchGraphitePaths ( qt * querytracer . Tracer , accountID , projectID uint32 , tr storage . TimeRange , query [ ] byte ,
maxMetrics int , deadline uint64 ) ( [ ] string , error ) {
return api . s . SearchGraphitePaths ( qt , accountID , projectID , tr , query , maxMetrics , deadline )
2020-09-10 21:29:26 +00:00
}
2022-06-27 11:20:39 +00:00
// blockIterator implements vmselectapi.BlockIterator
type blockIterator struct {
sr storage . Search
2019-05-22 21:23:23 +00:00
}
2022-06-27 11:20:39 +00:00
var blockIteratorsPool sync . Pool
2020-04-22 16:57:36 +00:00
2022-06-27 11:20:39 +00:00
func ( bi * blockIterator ) MustClose ( ) {
bi . sr . MustClose ( )
blockIteratorsPool . Put ( bi )
2022-06-08 16:25:59 +00:00
}
2022-06-27 11:20:39 +00:00
func getBlockIterator ( ) * blockIterator {
v := blockIteratorsPool . Get ( )
if v == nil {
v = & blockIterator { }
2022-06-16 07:44:29 +00:00
}
2022-06-27 11:20:39 +00:00
return v . ( * blockIterator )
2020-04-22 16:57:36 +00:00
}
2022-06-28 09:55:20 +00:00
func ( bi * blockIterator ) NextBlock ( mb * storage . MetricBlock ) bool {
2022-06-27 11:20:39 +00:00
if ! bi . sr . NextMetricBlock ( ) {
return false
2020-04-22 16:57:36 +00:00
}
2022-06-27 11:20:39 +00:00
mb . MetricName = bi . sr . MetricBlockRef . MetricName
2022-06-28 09:55:20 +00:00
bi . sr . MetricBlockRef . BlockRef . MustReadBlock ( & mb . Block )
2022-06-27 11:20:39 +00:00
return true
2020-04-22 16:57:36 +00:00
}
2022-06-27 11:20:39 +00:00
func ( bi * blockIterator ) Error ( ) error {
return bi . sr . Error ( )
2020-11-16 08:55:55 +00:00
}
2020-06-30 21:58:26 +00:00
// checkTimeRange returns true if the given tr is denied for querying.
func checkTimeRange ( s * storage . Storage , tr storage . TimeRange ) error {
if ! * denyQueriesOutsideRetention {
return nil
}
2020-10-20 13:10:46 +00:00
retentionMsecs := s . RetentionMsecs ( )
minAllowedTimestamp := int64 ( fasttime . UnixTimestamp ( ) * 1000 ) - retentionMsecs
2020-06-30 21:58:26 +00:00
if tr . MinTimestamp > minAllowedTimestamp {
return nil
}
return & httpserver . ErrorWithStatusCode {
2020-10-20 13:10:46 +00:00
Err : fmt . Errorf ( "the given time range %s is outside the allowed retention %.3f days according to -denyQueriesOutsideRetention" ,
& tr , float64 ( retentionMsecs ) / ( 24 * 3600 * 1000 ) ) ,
2020-06-30 21:58:26 +00:00
StatusCode : http . StatusServiceUnavailable ,
}
}