public inbox for [email protected]  
help / color / mirror / Atom feed
From: Tomas Vondra <[email protected]>
To: [email protected]
Subject: pgsql: Introduce pg_shmem_allocations_numa view
Date: Mon, 07 Apr 2025 21:18:10 +0000
Message-ID: <[email protected]> (raw)

Introduce pg_shmem_allocations_numa view

Introduce new pg_shmem_alloctions_numa view with information about how
shared memory is distributed across NUMA nodes. For each shared memory
segment, the view returns one row for each NUMA node backing it, with
the total amount of memory allocated from that node.

The view may be relatively expensive, especially when executed for the
first time in a backend, as it has to touch all memory pages to get
reliable information about the NUMA node. This may also force allocation
of the shared memory.

Unlike pg_shmem_allocations, the view does not show anonymous shared
memory allocations. It also does not show memory allocated using the
dynamic shared memory infrastructure.

Author: Jakub Wartak <[email protected]>
Reviewed-by: Andres Freund <[email protected]>
Reviewed-by: Bertrand Drouvot <[email protected]>
Reviewed-by: Tomas Vondra <[email protected]>
Discussion: https://postgr.es/m/CAKZiRmxh6KWo0aqRqvmcoaX2jUxZYb4kGp3N%3Dq1w%2BDiH-696Xw%40mail.gmail.com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/8cc139bec34a2971b0682a04eb52ce7b3f5bb425

Modified Files
--------------
doc/src/sgml/system-views.sgml           |  95 ++++++++++++++++++
src/backend/catalog/system_views.sql     |   8 ++
src/backend/storage/ipc/shmem.c          | 159 +++++++++++++++++++++++++++++++
src/include/catalog/catversion.h         |   2 +-
src/include/catalog/pg_proc.dat          |   8 ++
src/test/regress/expected/numa.out       |  13 +++
src/test/regress/expected/numa_1.out     |   5 +
src/test/regress/expected/privileges.out |  16 +++-
src/test/regress/expected/rules.out      |   4 +
src/test/regress/parallel_schedule       |   2 +-
src/test/regress/sql/numa.sql            |  10 ++
src/test/regress/sql/privileges.sql      |   6 +-
12 files changed, 322 insertions(+), 6 deletions(-)



view thread (83+ messages)  latest in thread

reply

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Reply to all the recipients using the --to and --cc options:
  reply via email

  To: [email protected]
  Cc: [email protected], [email protected]
  Subject: Re: pgsql: Introduce pg_shmem_allocations_numa view
  In-Reply-To: <[email protected]>

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

This inbox is served by agora; see mirroring instructions
for how to clone and mirror all data and code used for this inbox