Skip to content

Latest commit

 

History

History
14 lines (9 loc) · 1.46 KB

BackgroundBgWriterSettings.md

File metadata and controls

14 lines (9 loc) · 1.46 KB

BackgroundBgWriterSettings

Properties

Name Type Description Notes
bgwriter_delay Option<i32> Specifies the delay between activity rounds for the background writer in milliseconds. Default is 200. [optional]
bgwriter_flush_after Option<i32> Whenever more than bgwriter_flush_after bytes have been written by the background writer, attempt to force the OS to issue these writes to the underlying storage. Specified in kilobytes, default is 512. Setting of 0 disables forced writeback. [optional]
bgwriter_lru_maxpages Option<i32> In each round, no more than this many buffers will be written by the background writer. Setting this to zero disables background writing. Default is 100. [optional]
bgwriter_lru_multiplier Option<f64> The average recent need for new buffers is multiplied by bgwriter_lru_multiplier to arrive at an estimate of the number that will be needed during the next round, (up to bgwriter_lru_maxpages). 1.0 represents a “just in time” policy of writing exactly the number of buffers predicted to be needed. Larger values provide some cushion against spikes in demand, while smaller values intentionally leave writes to be done by server processes. The default is 2.0. [optional]

[Back to Model list] [Back to API list] [Back to README]