sql >> Base de Datos >  >> RDS >> PostgreSQL

¿Cómo mostrar WORK_MEM de conexiones PostgreSQL externas?

Puede entrar en el proceso con un depurador en el nivel del sistema operativo.

Mostraré cómo hacerlo en Linux:

$ psql "dbname=test options='-c work_mem=256MB' application_name=test"
psql (9.6.1)
Type "help" for help.

test=>  SELECT pg_backend_pid();
 pg_backend_pid
----------------
          21089
(1 row)

Ahora puedo ingresar al proceso en la máquina del servidor:

$ gdb /path/to/postgres-9.6.1/bin/postgres 21089
GNU gdb (GDB) Red Hat Enterprise Linux (7.2-90.el6)
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
...
(gdb) print work_mem
$1 = 262144
(gdb) detach
Detaching from program: /path/to/postgres-9.6.1/bin/postgres, process 21089
(gdb) quit

No le gustaría hacer esto en un sistema de producción, ya que el backend está bloqueado mientras lo está depurando.