Aliaksandr Valialkin

Results 626 comments of Aliaksandr Valialkin

@klauspost , could you re-run benchmarks against [gozstd v1.5.1](https://github.com/valyala/gozstd/tree/v1.5.1)? It contains the updated `libzstd_windows_amd64.a` file for `zstd 1.4.0`. Previously this file was built with a year-old `zstd` code. This may...

> I'd be happy to do that as soon as I fixed some stuff here in the main repo. This would be great!

> From documentation my understanding VictoriaMetrics mimics Prometheus API in term of queries. Yes. VictoriaMetrics supports Prometheus querying API - see [these docs](https://github.com/VictoriaMetrics/VictoriaMetrics/blob/master/README.md#prometheus-querying-api-usage). Additionally to this it supports `/api/v1/export` handler...

FYI, [VictoriaMetrics](https://github.com/VictoriaMetrics/VictoriaMetrics/) supports using durations instead of numeric values and vice versa in [MetricsQL](https://docs.victoriametrics.com/MetricsQL.html). See, for example, how does `predict_linear(sum(rate(vm_http_requests_total[300])) offset 3600, 3h)` work in [VictoriaMetrics playground](https://play.victoriametrics.com/select/accounting/1/6a716b0f-38bc-4856-90ce-448fd713e3fe/prometheus/graph/?g0.range_input=30m&g0.step_input=3.886&g0.relative_time=last_30_minutes&g0.tab=chart&g0.expr=predict_linear(sum(rate(vm_http_requests_total%5B300%5D))%20offset%203600%2C%203h)). It would be...

cc'ing @fcddk and @like-inspur , the authors of https://github.com/prometheus/prometheus/commit/617c56f55a14b7f6ed4f0f4402c1e18aaf3b396c

I'm sorry, but I don't understand the question. Could you describe it in more details? Quicktemplate functions are translated to usual Go functions, so you can pass arbitrary arguments to...

@maxjust , the latest release is [v1.1.1](https://github.com/valyala/quicktemplate/tree/v1.1.1). It has the following diff comparing to master branch: ```diff diff --git a/README.md b/README.md index 3c104f4..3c2a420 100644 --- a/README.md +++ b/README.md @@ -605,7...

I have no idea why Github thinks this release is the latest :) Just deleted the old release

> {% %} are default delimiters, how to modify the default right and left delimiters, thanks @huyongde , could you explain the use case where you need to change default...

You may use two-step [go:generate](https://blog.golang.org/generate) for generating template output from `*.qtpl` files before compile time: * Generate `*.qtpl.go` files at first step with [qtc](https://github.com/valyala/quicktemplate/tree/master/qtc). * Generate output file from the...