We scaled our new Prometheus TSDB Grafana Mimir to 1B active seriesgrafana.com7 points·by cip01·4 years ago·1 comments
Klaus Post: Taming Mutexes for Concurrency [Go talk]go-talks.appspot.com1 points·by cip01·7 years ago·0 comments
cip01·4 years ago·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 years ago·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 years ago·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.