From: | Simon Riggs <simon(at)2ndQuadrant(dot)com> |
---|---|
To: | pgsql-committers(at)postgresql(dot)org |
Subject: | pgsql: Generational memory allocator |
Date: | 2017-11-22 18:48:19 |
Message-ID: | [email protected] |
Views: | Whole Thread | Raw Message | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-committers |
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.
Author: Tomas Vondra
Reviewed-by: Simon Riggs
Branch
------
master
Modified Files
--------------
src/backend/replication/logical/reorderbuffer.c | 80 +--
src/backend/utils/mmgr/Makefile | 2 +-
src/backend/utils/mmgr/README | 23 +
src/backend/utils/mmgr/generation.c | 768 ++++++++++++++++++++++++
src/include/nodes/memnodes.h | 4 +-
src/include/nodes/nodes.h | 1 +
src/include/replication/reorderbuffer.h | 15 +-
src/include/utils/memutils.h | 5 +
8 files changed, 819 insertions(+), 79 deletions(-)
From | Date | Subject | |
---|---|---|---|
Next Message | Simon Riggs | 2017-11-22 19:56:52 | pgsql: Tweak code for older compilers |
Previous Message | Simon Riggs | 2017-11-22 18:19:41 | pgsql: Sort default partition to bottom of psql \d+ |