We scaled our new Prometheus TSDB Grafana Mimir to 1B active seriesgrafana.com7 points·by cip01·4 yıl önce·1 comments
Klaus Post: Taming Mutexes for Concurrency [Go talk]go-talks.appspot.com1 points·by cip01·7 yıl önce·0 comments
cip01·4 yıl önce·discussWhich restrictions do you have in mind?Quick look at the issue looks like it wanted to avoid using local storage by Prometheus, but that’s Prometheus specific problem, not remote-read problem.Remote-read is a generic protocol (https://github.com/prometheus/prometheus/blob/a1121efc18ba15...), you pass query (start/end time and matchers), and get back data.
cip01·4 yıl önce·discussCortex, Thanos and Mimir all support "remote-read" protocol (documented in Prometheus: https://prometheus.io/docs/prometheus/latest/storage/#remote...), so external systems (eg Prometheus) can read data from them easily.
cip01·7 yıl önce·discussGrafana is such a pleasure to work with. I hope all that money won't destroy a nice project.Congratulations! :)
Quick look at the issue looks like it wanted to avoid using local storage by Prometheus, but that’s Prometheus specific problem, not remote-read problem.
Remote-read is a generic protocol (https://github.com/prometheus/prometheus/blob/a1121efc18ba15...), you pass query (start/end time and matchers), and get back data.