Łukasz Mierzwa

Results 25 issues of Łukasz Mierzwa

@juliusv I was getting frustrated with /targets page getting slower and slower as we add more targets to Prometheus. This is especially painful given that error details are only visible...

Example from docs: ``` from tastypie import authorization from tastypie_mongoengine import resources from test_app import documents class PersonResource(resources.MongoEngineResource): class Meta: queryset = documents.Person.objects.all() allowed_methods = ('get', 'post', 'put', 'delete') authorization...

This is a linked list version of #10709

prombench

[description copied from 1st commit] All those functions are only reading chunks so they don't need to hold a write lock.

MemPosting.Add() can be very slow because of the requirement to ensure ordering of SeriesRef values. Speed it up by sort on insert instead of appending and the sorting - this...

Currently all access to MemPostings is via a single mutex, which in effect serializes all Add() calls. This can cause MemPostings.Add() to get blocked for a long time in some...

It would be great if silences could have annotations rather than only author and comment fields (both could become standard annotations, like alertname is a standard label). Having the ability...

low hanging fruit
kind/enhancement

It looks like the code assumes that `package.json` is in the root of the repo, which makes it impossible to use in monorepos (for example with multiple npm packages in...