VictoriaMetrics/app/vmselect/netstorage
Aliaksandr Valialkin 0fdbe5de25 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:45:57 +03:00
..
netstorage.go 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:45:57 +03:00
tmp_blocks_file.go lib/fs: optimize MustGetFreeSpace performance by caching the results for up to 2 seconds 2020-06-04 13:14:04 +03:00
tmp_blocks_file_test.go app/vmselect/netstorage: marshal block outside tmpBlocksFile.WriteBlock 2019-09-28 20:57:20 +03:00