mirror of
https://github.com/postgres/postgres.git
synced 2025-10-27 00:12:01 +03:00
Add io_direct setting (developer-only).
Provide a way to ask the kernel to use O_DIRECT (or local equivalent) where available for data and WAL files, to avoid or minimize kernel caching. This hurts performance currently and is not intended for end users yet. Later proposed work would introduce our own I/O clustering, read-ahead, etc to replace the facilities the kernel disables with this option. The only user-visible change, if the developer-only GUC is not used, is that this commit also removes the obscure logic that would activate O_DIRECT for the WAL when wal_sync_method=open_[data]sync and wal_level=minimal (which also requires max_wal_senders=0). Those are non-default and unlikely settings, and this behavior wasn't (correctly) documented. The same effect can be achieved with io_direct=wal. Author: Thomas Munro <thomas.munro@gmail.com> Author: Andres Freund <andres@anarazel.de> Author: Bharath Rupireddy <bharath.rupireddyforpostgres@gmail.com> Reviewed-by: Justin Pryzby <pryzby@telsasoft.com> Reviewed-by: Bharath Rupireddy <bharath.rupireddyforpostgres@gmail.com> Discussion: https://postgr.es/m/CA%2BhUKGK1X532hYqJ_MzFWt0n1zt8trz980D79WbjwnT-yYLZpg%40mail.gmail.com
This commit is contained in:
@@ -44,6 +44,7 @@
|
||||
#define FD_H
|
||||
|
||||
#include <dirent.h>
|
||||
#include <fcntl.h>
|
||||
|
||||
typedef enum RecoveryInitSyncMethod
|
||||
{
|
||||
@@ -54,10 +55,16 @@ typedef enum RecoveryInitSyncMethod
|
||||
typedef int File;
|
||||
|
||||
|
||||
#define IO_DIRECT_DATA 0x01
|
||||
#define IO_DIRECT_WAL 0x02
|
||||
#define IO_DIRECT_WAL_INIT 0x04
|
||||
|
||||
|
||||
/* GUC parameter */
|
||||
extern PGDLLIMPORT int max_files_per_process;
|
||||
extern PGDLLIMPORT bool data_sync_retry;
|
||||
extern PGDLLIMPORT int recovery_init_sync_method;
|
||||
extern PGDLLIMPORT int io_direct_flags;
|
||||
|
||||
/*
|
||||
* This is private to fd.c, but exported for save/restore_backend_variables()
|
||||
|
||||
Reference in New Issue
Block a user