- Notifications
You must be signed in to change notification settings - Fork5
Commit5461564
committed
Reduce idle power consumption of walwriter and checkpointer processes.
This patch modifies the walwriter process so that, when it has not foundanything useful to do for many consecutive wakeup cycles, it extends itssleep time to reduce the server's idle power consumption. It reverts tonormal as soon as it's done any successful flushes. It's still true thatduring any async commit, backends check for completed, unflushed pages ofWAL and signal the walwriter if there are any; so that in practice thewalwriter can get awakened and returned to normal operation sooner than thesleep time might suggest.Also, improve the checkpointer so that it uses a latch and a computed delaytime to not wake up at all except when it has something to do, replacing aprevious hardcoded 0.5 sec wakeup cycle. This also is primarily useful forreducing the server's power consumption when idle.In passing, get rid of the dedicated latch for signaling the walwriter infavor of using its procLatch, since that comports better with possiblegeneric signal handlers using that latch. Also, fix a pre-existing bugwith failure to save/restore errno in walwriter's signal handlers.Peter Geoghegan, somewhat simplified by Tom1 parent081ca7a commit5461564
File tree
7 files changed
+189
-59
lines changed- src
- backend
- access/transam
- postmaster
- storage/lmgr
- include
- access
- storage
7 files changed
+189
-59
lines changedLines changed: 15 additions & 23 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
433 | 433 |
| |
434 | 434 |
| |
435 | 435 |
| |
436 |
| - | |
437 |
| - | |
438 |
| - | |
439 |
| - | |
440 |
| - | |
441 | 436 |
| |
442 | 437 |
| |
443 | 438 |
| |
| |||
1935 | 1930 |
| |
1936 | 1931 |
| |
1937 | 1932 |
| |
1938 |
| - | |
| 1933 | + | |
| 1934 | + | |
1939 | 1935 |
| |
1940 | 1936 |
| |
1941 | 1937 |
| |
| |||
2167 | 2163 |
| |
2168 | 2164 |
| |
2169 | 2165 |
| |
2170 |
| - | |
2171 |
| - | |
2172 |
| - | |
2173 |
| - | |
| 2166 | + | |
| 2167 | + | |
| 2168 | + | |
| 2169 | + | |
2174 | 2170 |
| |
2175 | 2171 |
| |
| 2172 | + | |
| 2173 | + | |
2176 | 2174 |
| |
2177 |
| - | |
| 2175 | + | |
2178 | 2176 |
| |
2179 | 2177 |
| |
2180 | 2178 |
| |
2181 | 2179 |
| |
| 2180 | + | |
2182 | 2181 |
| |
2183 | 2182 |
| |
2184 | 2183 |
| |
2185 |
| - | |
| 2184 | + | |
2186 | 2185 |
| |
2187 | 2186 |
| |
2188 | 2187 |
| |
| |||
2224 | 2223 |
| |
2225 | 2224 |
| |
2226 | 2225 |
| |
2227 |
| - | |
| 2226 | + | |
2228 | 2227 |
| |
2229 | 2228 |
| |
2230 | 2229 |
| |
| |||
2247 | 2246 |
| |
2248 | 2247 |
| |
2249 | 2248 |
| |
| 2249 | + | |
2250 | 2250 |
| |
2251 | 2251 |
| |
2252 | 2252 |
| |
2253 | 2253 |
| |
| 2254 | + | |
| 2255 | + | |
2254 | 2256 |
| |
2255 | 2257 |
| |
2256 | 2258 |
| |
| |||
5101 | 5103 |
| |
5102 | 5104 |
| |
5103 | 5105 |
| |
5104 |
| - | |
5105 | 5106 |
| |
5106 | 5107 |
| |
5107 | 5108 |
| |
| |||
10478 | 10479 |
| |
10479 | 10480 |
| |
10480 | 10481 |
| |
10481 |
| - | |
10482 |
| - | |
10483 |
| - | |
10484 |
| - | |
10485 |
| - | |
10486 |
| - | |
10487 |
| - | |
10488 |
| - | |
10489 |
| - |
Lines changed: 88 additions & 21 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
51 | 51 |
| |
52 | 52 |
| |
53 | 53 |
| |
| 54 | + | |
54 | 55 |
| |
55 | 56 |
| |
56 | 57 |
| |
| |||
178 | 179 |
| |
179 | 180 |
| |
180 | 181 |
| |
| 182 | + | |
181 | 183 |
| |
182 | 184 |
| |
183 | 185 |
| |
| |||
224 | 226 |
| |
225 | 227 |
| |
226 | 228 |
| |
227 |
| - | |
| 229 | + | |
228 | 230 |
| |
229 | 231 |
| |
230 | 232 |
| |
| |||
359 | 361 |
| |
360 | 362 |
| |
361 | 363 |
| |
| 364 | + | |
| 365 | + | |
| 366 | + | |
| 367 | + | |
| 368 | + | |
| 369 | + | |
362 | 370 |
| |
363 | 371 |
| |
364 | 372 |
| |
| |||
368 | 376 |
| |
369 | 377 |
| |
370 | 378 |
| |
| 379 | + | |
| 380 | + | |
| 381 | + | |
| 382 | + | |
371 | 383 |
| |
372 | 384 |
| |
373 | 385 |
| |
| |||
387 | 399 |
| |
388 | 400 |
| |
389 | 401 |
| |
390 |
| - | |
| 402 | + | |
391 | 403 |
| |
392 | 404 |
| |
393 | 405 |
| |
394 |
| - | |
395 |
| - | |
396 |
| - | |
397 |
| - | |
398 |
| - | |
| 406 | + | |
| 407 | + | |
| 408 | + | |
| 409 | + | |
| 410 | + | |
399 | 411 |
| |
400 | 412 |
| |
401 | 413 |
| |
| |||
488 | 500 |
| |
489 | 501 |
| |
490 | 502 |
| |
491 |
| - | |
| 503 | + | |
492 | 504 |
| |
493 | 505 |
| |
494 | 506 |
| |
| |||
543 | 555 |
| |
544 | 556 |
| |
545 | 557 |
| |
| 558 | + | |
| 559 | + | |
| 560 | + | |
546 | 561 |
| |
547 | 562 |
| |
548 | 563 |
| |
549 | 564 |
| |
550 | 565 |
| |
551 | 566 |
| |
552 |
| - | |
553 |
| - | |
554 |
| - | |
| 567 | + | |
| 568 | + | |
555 | 569 |
| |
556 |
| - | |
| 570 | + | |
| 571 | + | |
| 572 | + | |
| 573 | + | |
| 574 | + | |
| 575 | + | |
| 576 | + | |
| 577 | + | |
| 578 | + | |
| 579 | + | |
| 580 | + | |
| 581 | + | |
557 | 582 |
| |
558 |
| - | |
559 |
| - | |
| 583 | + | |
| 584 | + | |
| 585 | + | |
560 | 586 |
| |
561 | 587 |
| |
562 | 588 |
| |
| |||
814 | 840 |
| |
815 | 841 |
| |
816 | 842 |
| |
| 843 | + | |
| 844 | + | |
817 | 845 |
| |
| 846 | + | |
| 847 | + | |
| 848 | + | |
| 849 | + | |
818 | 850 |
| |
819 | 851 |
| |
820 | 852 |
| |
821 | 853 |
| |
822 | 854 |
| |
823 | 855 |
| |
| 856 | + | |
| 857 | + | |
824 | 858 |
| |
| 859 | + | |
| 860 | + | |
| 861 | + | |
| 862 | + | |
| 863 | + | |
| 864 | + | |
| 865 | + | |
| 866 | + | |
| 867 | + | |
| 868 | + | |
| 869 | + | |
| 870 | + | |
| 871 | + | |
| 872 | + | |
| 873 | + | |
825 | 874 |
| |
826 | 875 |
| |
827 | 876 |
| |
828 | 877 |
| |
829 | 878 |
| |
830 | 879 |
| |
| 880 | + | |
| 881 | + | |
831 | 882 |
| |
| 883 | + | |
| 884 | + | |
| 885 | + | |
| 886 | + | |
832 | 887 |
| |
833 | 888 |
| |
834 | 889 |
| |
| |||
1055 | 1110 |
| |
1056 | 1111 |
| |
1057 | 1112 |
| |
| 1113 | + | |
1058 | 1114 |
| |
1059 | 1115 |
| |
1060 | 1116 |
| |
| |||
1068 | 1124 |
| |
1069 | 1125 |
| |
1070 | 1126 |
| |
1071 |
| - | |
| 1127 | + | |
1072 | 1128 |
| |
1073 |
| - | |
1074 |
| - | |
| 1129 | + | |
1075 | 1130 |
| |
1076 | 1131 |
| |
1077 |
| - | |
1078 |
| - | |
| 1132 | + | |
| 1133 | + | |
1079 | 1134 |
| |
1080 | 1135 |
| |
1081 | 1136 |
| |
| |||
1085 | 1140 |
| |
1086 | 1141 |
| |
1087 | 1142 |
| |
| 1143 | + | |
| 1144 | + | |
1088 | 1145 |
| |
1089 | 1146 |
| |
1090 | 1147 |
| |
1091 | 1148 |
| |
| 1149 | + | |
| 1150 | + | |
| 1151 | + | |
| 1152 | + | |
| 1153 | + | |
1092 | 1154 |
| |
| 1155 | + | |
| 1156 | + | |
| 1157 | + | |
| 1158 | + | |
| 1159 | + | |
1093 | 1160 |
| |
1094 | 1161 |
| |
1095 | 1162 |
| |
| |||
1109 | 1176 |
| |
1110 | 1177 |
| |
1111 | 1178 |
| |
1112 |
| - | |
| 1179 | + | |
1113 | 1180 |
| |
1114 | 1181 |
| |
1115 | 1182 |
| |
| |||
1230 | 1297 |
| |
1231 | 1298 |
| |
1232 | 1299 |
| |
1233 |
| - | |
| 1300 | + | |
1234 | 1301 |
| |
1235 | 1302 |
| |
1236 | 1303 |
| |
|
0 commit comments
Comments
(0)