mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-12-15 00:13:30 +01:00
e4cef1b678
Previously it was possible that the connection is served after the server is closed if the following steps are performed: 1) Server accepts new connection. 2) Server.MustClose() is called and successfully finished. 3) Server starts processing the connection accepted at step 1. There could be various crashes like in https://github.com/VictoriaMetrics/VictoriaMetrics/issues/534 since the storage may be already closed. Now the server closes the connection at step 3 without processing it. |
||
---|---|---|
.. | ||
deployment | ||
transport | ||
main.go | ||
Makefile | ||
README.md |
vmstorage
performs the following tasks:
-
Accepts inserts from
vminsert
nodes and stores them to local storage. -
Performs select requests from
vmselect
nodes.