Vladimir Varankin

Results 128 comments of Vladimir Varankin

I'm pretty sure you've seen it, but just for a random developer surfing around and until the issue is opened, this introductory article by @dgryski (https://medium.com/@dgryski/go-fuzz-github-com-arolek-ase-3c74d5a3150c) totally deserved to be...

I'm current exploring exactly this case: - k8s nodes are EC2 m5.large (2 vCPU) - the PODs has the limit `500m` or `0.5` My current observations go as following: with...

> When you say cpu quota, which one do you mean in k8s I expect this was about `limits.cpu`. `requests.cpu` is for scheduling and for weighting the workload, but I'm...

Why not ask the question on some of [GraphQL Community Resources](http://graphql.org/community/)? I don't think there might be any technical issues related to Go implementation. You only need to figure out...

> blocks storage: unable to successfully send a request to object storage: The specified bucket does not exist. I think this is a "non-ideal" behaviour in mimio-go (the s3 API...

>> they treat all responses with 404 as "bucket not exists" > > That isn't true and would be very incorrect behavior. Requesting an object that doesn't exist results in...

> [..] But I would first try to introduce better promQL formatting @dimitarvdimitrov since prometheus/prometheus#10544 Prometheus exposes API to format a parsed expression (i.e. `parser.Prettify(Node)`). From a brief testing it...

How about we, by default, derived `GOMAXPROCS` from k8s CPU limits? ``` - name: GOMAXPROCS valueFrom: resourceFieldRef: resource: limits.cpu divisor: 1 ``` In the snippet above, the value for `GOMAXPROCS`...

I think there is some work being done in https://github.com/grafana/helm-charts/issues/2481 (it seems to me mimir uses this GH workflow for helm releases).

Sure, thank you for the issue. What I've noted above is that [mimir's CI workflow][1], which releases the chart, keeps using the workflow that lives in `grafana/helm-charts`. After they resolve...