Re: pgsql: Generational memory allocator

From: Simon Riggs <simon(at)2ndquadrant(dot)com>
To: Andres Freund <andres(at)anarazel(dot)de>
Cc: Tomas Vondra <tv(at)fuzzy(dot)cz>, pgsql-committers <pgsql-committers(at)postgresql(dot)org>
Subject: Re: pgsql: Generational memory allocator
Date: 2017-11-23 21:47:07
Message-ID: CANP8+j+PaFGLTu5WWOFbQecTPRZ37KR9zwqG7vCmm6Cxm-_g9Q@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

On 24 November 2017 at 06:39, Andres Freund <andres(at)anarazel(dot)de> wrote:
> On 2017-11-23 20:57:10 +1100, Simon Riggs wrote:
>> On 23 November 2017 at 11:16, Andres Freund <andres(at)anarazel(dot)de> wrote:
>> > Hi,
>> >
>> > On 2017-11-22 18:48:19 +0000, Simon Riggs wrote:
>> >> Generational memory allocator
>> >>
>> >> Add new style of memory allocator, known as Generational
>> >> appropriate for use in cases where memory is allocated
>> >> and then freed in roughly oldest first order (FIFO).
>> >>
>> >> Use new allocator for logical decoding’s reorderbuffer
>> >> to significantly reduce memory usage and improve performance.
>> >
>> > Looks like it's not quite valgrind clean:
>> > https://buildfarm.postgresql.org/cgi-bin/show_log.pl?nm=skink&dt=2017-11-22%2022%3A30%3A01
>>
>> It doesn't report anything useful that would allow me to fix this.
>
> Uh. It reports a failure, and you can go from there. The error output
> actually is in postmaster.log but for some reason the buildfarm code
> didn't display that in this case.

>> Please enable some info reporting on the animal.
>
> Hey, I just pointed out for you that there's a problem with something
> that you committed. ISTM you're inverting the responsibilities more than
> a bit here.

I don't believe I was inverting responsibilties, but sorry if you thought I was.

Yes, there is a bug in something I committed which I know about
because of the buildfarm. I am happy to work on fixing it. No
discussion on responsibility there.

I can see that buildfarm animal is yours, so I asked you for more info
about the bug on that animal. ISTM reasonable to ask for some more
detail on a bug report, and where that is an automated service to
request that the owner of that service make changes to assist. I don't
see why that implies some change of my responsibilities.

Thanks for your help

--
Simon Riggs http://www.2ndQuadrant.com/
PostgreSQL Development, 24x7 Support, Remote DBA, Training & Services

In response to

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2017-11-23 22:02:19 pgsql: Ensure sizeof(GenerationChunk) is maxaligned.
Previous Message Andres Freund 2017-11-23 21:46:36 Re: pgsql: Generational memory allocator