Sniper91
Sniper91
influxdb don't support NaN by design. When encoding float value, it uses NaN as a sentinel to mark the end of data block. https://github.com/influxdata/influxdb/blob/master/tsdb/engine/tsm1/float.go
I think both #8351 and #11379 are not good enough. The read client interface below isn't properly designed. ``` StartRead(ctx context.Context, query *prompb.Query, sortSeries bool) (storage.SeriesSet, error) ``` if response...
// bufio.Writer // Flush writes any buffered data to the underlying io.Writer. func (b *Writer) Flush() error { if b.err != nil { return b.err } ... } bufio.Writer will...
Is apache arrow with dictionary encoder considered?
@roidelapluie @csmarchbanks Thank you for your advice. store proxy is stateless. It will become very complicated if considering whether it is overloaded. we use hardware load balancer because we build...
In a large k8s cluster, we want to monitor pods running on a subset of nodes. Relabeling is costy. Most pods are dropped by relabeling and the process causes high...