forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork6
Commit1e9326d
committed
Fix statistics breakage from bgwriter/checkpointer process split.
ForwardFsyncRequest() supposed that it could only be called in regularbackends, which used to be true; but since the splitup of bgwriter andcheckpointer, it is also called in the bgwriter. We do not want to countsuch calls in pg_stat_bgwriter.buffers_backend statistics, so fix thingsso that they aren't.(It's worth noting here that this implies an alarmingly large increase inthe expected amount of cross-process fsync request traffic, which may wellmean that the process splitup was not such a hot idea.)1 parentd843589 commit1e9326d
1 file changed
+4
-2
lines changedLines changed: 4 additions & 2 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1135 | 1135 |
| |
1136 | 1136 |
| |
1137 | 1137 |
| |
1138 |
| - | |
| 1138 | + | |
| 1139 | + | |
1139 | 1140 |
| |
1140 | 1141 |
| |
1141 | 1142 |
| |
| |||
1150 | 1151 |
| |
1151 | 1152 |
| |
1152 | 1153 |
| |
1153 |
| - | |
| 1154 | + | |
| 1155 | + | |
1154 | 1156 |
| |
1155 | 1157 |
| |
1156 | 1158 |
| |
|
0 commit comments
Comments
(0)