pgsql: Use "transient" files for blind writes

Поиск
Список
Период
Сортировка
От Alvaro Herrera
Тема pgsql: Use "transient" files for blind writes
Дата
Msg-id E1QUloD-0002jA-9X@gemulon.postgresql.org
обсуждение исходный текст
Ответы Re: pgsql: Use "transient" files for blind writes  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-committers
Use "transient" files for blind writes

"Blind writes" are a mechanism to push buffers down to disk when
evicting them; since they may belong to different databases than the one
a backend is connected to, the backend does not necessarily have a
relation to link them to, and thus no way to blow them away.  We were
keeping those files open indefinitely, which would cause a problem if
the underlying table was deleted, because the operating system would not
be able to reclaim the disk space used by those files.

To fix, have bufmgr mark such files as transient to smgr; the lower
layer is allowed to close the file descriptor when the current
transaction ends.  We must be careful to have any other access of the
file to remove the transient markings, to prevent unnecessary expensive
system calls when evicting buffers belonging to our own database (which
files we're likely to require again soon.)

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/54d9e8c6c19cbefa8fb42ed3442a0a5327590ed3

Modified Files
--------------
src/backend/storage/buffer/bufmgr.c |   10 +++-
src/backend/storage/file/fd.c       |  108 ++++++++++++++++++++++++++--------
src/backend/storage/smgr/md.c       |    9 +++
src/backend/storage/smgr/smgr.c     |   17 ++++++
src/include/storage/fd.h            |    1 +
src/include/storage/smgr.h          |    2 +
6 files changed, 119 insertions(+), 28 deletions(-)


В списке pgsql-committers по дате отправления:

Предыдущее
От: Peter Eisentraut
Дата:
Сообщение: pgsql: Translation updates for 9.1beta2
Следующее
От: Alvaro Herrera
Дата:
Сообщение: pgsql: Revert "Use "transient" files for blind writes"