diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2012-05-09 23:36:01 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2012-05-09 23:37:10 -0400 |
commit | 6308ba05a7a24b5137d97508300131ffa42051c2 (patch) | |
tree | 819c0ef45e7322380b7992631e3331638e20c782 /src/backend/storage/buffer/bufmgr.c | |
parent | 668f959dcb7786654943d4726d1af07ad468a5be (diff) | |
download | postgresql-6308ba05a7a24b5137d97508300131ffa42051c2.tar.gz postgresql-6308ba05a7a24b5137d97508300131ffa42051c2.zip |
Improve control logic for bgwriter hibernation mode.
Commit 6d90eaaa89a007e0d365f49d6436f35d2392cfeb added a hibernation mode
to the bgwriter to reduce the server's idle-power consumption. However,
its interaction with the detailed behavior of BgBufferSync's feedback
control loop wasn't very well thought out. That control loop depends
primarily on the rate of buffer allocation, not the rate of buffer
dirtying, so the hibernation mode has to be designed to operate only when
no new buffer allocations are happening. Also, the check for whether the
system is effectively idle was not quite right and would fail to detect
a constant low level of activity, thus allowing the bgwriter to go into
hibernation mode in a way that would let the cycle time vary quite a bit,
possibly further confusing the feedback loop. To fix, move the wakeup
support from MarkBufferDirty and SetBufferCommitInfoNeedsSave into
StrategyGetBuffer, and prevent the bgwriter from entering hibernation mode
unless no buffer allocations have happened recently.
In addition, fix the delaying logic to remove the problem of possibly not
responding to signals promptly, which was basically caused by trying to use
the process latch's is_set flag for multiple purposes. I can't prove it
but I'm suspicious that that hack was responsible for the intermittent
"postmaster does not shut down" failures we've been seeing in the buildfarm
lately. In any case it did nothing to improve the readability or
robustness of the code.
In passing, express the hibernation sleep time as a multiplier on
BgWriterDelay, not a constant. I'm not sure whether there's any value in
exposing the longer sleep time as an independently configurable setting,
but we can at least make it act like this for little extra code.
Diffstat (limited to 'src/backend/storage/buffer/bufmgr.c')
-rw-r--r-- | src/backend/storage/buffer/bufmgr.c | 58 |
1 files changed, 26 insertions, 32 deletions
diff --git a/src/backend/storage/buffer/bufmgr.c b/src/backend/storage/buffer/bufmgr.c index 1889941eda1..a1b588b95c1 100644 --- a/src/backend/storage/buffer/bufmgr.c +++ b/src/backend/storage/buffer/bufmgr.c @@ -968,7 +968,6 @@ void MarkBufferDirty(Buffer buffer) { volatile BufferDesc *bufHdr; - bool dirtied = false; if (!BufferIsValid(buffer)) elog(ERROR, "bad buffer ID: %d", buffer); @@ -989,26 +988,20 @@ MarkBufferDirty(Buffer buffer) Assert(bufHdr->refcount > 0); - if (!(bufHdr->flags & BM_DIRTY)) - dirtied = true; - - bufHdr->flags |= (BM_DIRTY | BM_JUST_DIRTIED); - - UnlockBufHdr(bufHdr); - /* - * If the buffer was not dirty already, do vacuum accounting, and - * nudge bgwriter. + * If the buffer was not dirty already, do vacuum accounting. */ - if (dirtied) + if (!(bufHdr->flags & BM_DIRTY)) { VacuumPageDirty++; pgBufferUsage.shared_blks_dirtied++; if (VacuumCostActive) VacuumCostBalance += VacuumCostPageDirty; - if (ProcGlobal->bgwriterLatch) - SetLatch(ProcGlobal->bgwriterLatch); } + + bufHdr->flags |= (BM_DIRTY | BM_JUST_DIRTIED); + + UnlockBufHdr(bufHdr); } /* @@ -1331,9 +1324,11 @@ BufferSync(int flags) * * This is called periodically by the background writer process. * - * Returns true if the clocksweep has been "lapped", so that there's nothing - * to do. Also returns true if there's nothing to do because bgwriter was - * effectively disabled by setting bgwriter_lru_maxpages to 0. + * Returns true if it's appropriate for the bgwriter process to go into + * low-power hibernation mode. (This happens if the strategy clock sweep + * has been "lapped" and no buffer allocations have occurred recently, + * or if the bgwriter has been effectively disabled by setting + * bgwriter_lru_maxpages to 0.) */ bool BgBufferSync(void) @@ -1375,6 +1370,10 @@ BgBufferSync(void) int num_written; int reusable_buffers; + /* Variables for final smoothed_density update */ + long new_strategy_delta; + uint32 new_recent_alloc; + /* * Find out where the freelist clock sweep currently is, and how many * buffer allocations have happened since our last call. @@ -1598,21 +1597,23 @@ BgBufferSync(void) * which is helpful because a long memory isn't as desirable on the * density estimates. */ - strategy_delta = bufs_to_lap - num_to_scan; - recent_alloc = reusable_buffers - reusable_buffers_est; - if (strategy_delta > 0 && recent_alloc > 0) + new_strategy_delta = bufs_to_lap - num_to_scan; + new_recent_alloc = reusable_buffers - reusable_buffers_est; + if (new_strategy_delta > 0 && new_recent_alloc > 0) { - scans_per_alloc = (float) strategy_delta / (float) recent_alloc; + scans_per_alloc = (float) new_strategy_delta / (float) new_recent_alloc; smoothed_density += (scans_per_alloc - smoothed_density) / smoothing_samples; #ifdef BGW_DEBUG elog(DEBUG2, "bgwriter: cleaner density alloc=%u scan=%ld density=%.2f new smoothed=%.2f", - recent_alloc, strategy_delta, scans_per_alloc, smoothed_density); + new_recent_alloc, new_strategy_delta, + scans_per_alloc, smoothed_density); #endif } - return (bufs_to_lap == 0); + /* Return true if OK to hibernate */ + return (bufs_to_lap == 0 && recent_alloc == 0); } /* @@ -2385,24 +2386,17 @@ SetBufferCommitInfoNeedsSave(Buffer buffer) if ((bufHdr->flags & (BM_DIRTY | BM_JUST_DIRTIED)) != (BM_DIRTY | BM_JUST_DIRTIED)) { - bool dirtied = false; - LockBufHdr(bufHdr); Assert(bufHdr->refcount > 0); if (!(bufHdr->flags & BM_DIRTY)) - dirtied = true; - bufHdr->flags |= (BM_DIRTY | BM_JUST_DIRTIED); - UnlockBufHdr(bufHdr); - - if (dirtied) { + /* Do vacuum cost accounting */ VacuumPageDirty++; if (VacuumCostActive) VacuumCostBalance += VacuumCostPageDirty; - /* The bgwriter may need to be woken. */ - if (ProcGlobal->bgwriterLatch) - SetLatch(ProcGlobal->bgwriterLatch); } + bufHdr->flags |= (BM_DIRTY | BM_JUST_DIRTIED); + UnlockBufHdr(bufHdr); } } |