VictoriaMetrics/app/vmselect
Aliaksandr Valialkin 7209d58fbd app/vmselect/netstorage: increase concurrency when processing small number of time series with big number of data points per each time series
Previously VictoriaMetrics was processing up to 32 time series in a single goroutine.
This could be slow if each time series contains big number of data points (10M+ or more), since only a single CPU core could be loaded with work,
while other CPU cores were idle. Fix this by launching GOMAXPROCS workers for time series processing.

This should help with https://github.com/VictoriaMetrics/VictoriaMetrics/issues/572
2020-06-23 22:46:15 +03:00
..
netstorage app/vmselect/netstorage: increase concurrency when processing small number of time series with big number of data points per each time series 2020-06-23 22:46:15 +03:00
prometheus lib: extract common code for returning fast unix timestamp into lib/fasttime 2020-05-14 23:02:07 +03:00
promql app/vmselect/promql: properly override label values from group_left and group_right lists like Prometheus does 2020-06-21 16:33:01 +03:00
main.go lib/storage: postpone reading data from blocks during search 2020-04-27 11:45:24 +03:00
README.md all: open-sourcing single-node version 2019-05-23 00:18:06 +03:00

vmselect performs the incoming queries and fetches the required data from vmstorage.