VictoriaMetrics/app/vmselect
Aliaksandr Valialkin 8f4790625d app/vmselect/promql: return the correct time series from quantile
Previously arbitrary time series could be returned from `quantile`
depending on sort order for the last data point in the selected range.

Fix this by returning the calculated time series.

Fixes https://github.com/VictoriaMetrics/VictoriaMetrics/issues/55
2019-06-06 17:33:53 +03:00
..
deployment all: open-sourcing cluster version 2019-05-23 00:25:38 +03:00
netstorage app/vmselect/netstorage: remove spammy error message when certain vmstorage nodes are unavailable during query execution 2019-06-03 17:09:50 +03:00
prometheus app/vmselect: consume resultsCh data in exportHandler if writeResponseFunc failed to consume it 2019-05-24 14:54:54 +03:00
promql app/vmselect/promql: return the correct time series from quantile 2019-06-06 17:33:53 +03:00
main.go lib/timerpool: use timer pool in concurrency limiters 2019-05-28 17:30:10 +03:00
Makefile all: remove -p XXXX:XXXX from docker run options, since it is unnesessary if --net=host is set 2019-05-24 12:53:12 +03:00
README.md all: open-sourcing cluster version 2019-05-23 00:25:38 +03:00

vmselect performs the following tasks:

  • Splits incoming selects to tasks for vmstorage nodes and issues these tasks to all the vmstorage nodes in the cluster.

  • Merges responses from all the vmstorage nodes and returns a single response.