forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork6
Commit1eff827
committed
Add memory/disk usage for Material nodes in EXPLAIN
Up until now, there was no ability to easily determine if a Materialnode caused the underlying tuplestore to spill to disk or even see howmuch memory the tuplestore used if it didn't.Here we add some new functions to tuplestore.c to query this informationand add some additional output in EXPLAIN ANALYZE to display thisinformation for the Material node.There are a few other executor node types that use tuplestores, so wecould also consider adding these details to the EXPLAIN ANALYZE forthose nodes too. Let's consider those independently from this. Havingthe tuplestore.c infrastructure in to allow that is step 1.Author: David RowleyReviewed-by: Matthias van de Meent, Dmitry DolgovDiscussion:https://postgr.es/m/CAApHDvp5Py9g4Rjq7_inL3-MCK1Co2CRt_YWFwTU2zfQix0p4A@mail.gmail.com1 parentaa86129 commit1eff827
File tree
5 files changed
+148
-12
lines changed- src
- backend
- commands
- utils/sort
- include/utils
- test/regress
- expected
- sql
5 files changed
+148
-12
lines changedLines changed: 37 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
125 | 125 |
| |
126 | 126 |
| |
127 | 127 |
| |
| 128 | + | |
128 | 129 |
| |
129 | 130 |
| |
130 | 131 |
| |
| |||
2251 | 2252 |
| |
2252 | 2253 |
| |
2253 | 2254 |
| |
| 2255 | + | |
| 2256 | + | |
| 2257 | + | |
2254 | 2258 |
| |
2255 | 2259 |
| |
2256 | 2260 |
| |
| |||
3322 | 3326 |
| |
3323 | 3327 |
| |
3324 | 3328 |
| |
| 3329 | + | |
| 3330 | + | |
| 3331 | + | |
| 3332 | + | |
| 3333 | + | |
| 3334 | + | |
| 3335 | + | |
| 3336 | + | |
| 3337 | + | |
| 3338 | + | |
| 3339 | + | |
| 3340 | + | |
| 3341 | + | |
| 3342 | + | |
| 3343 | + | |
| 3344 | + | |
| 3345 | + | |
| 3346 | + | |
| 3347 | + | |
| 3348 | + | |
| 3349 | + | |
| 3350 | + | |
| 3351 | + | |
| 3352 | + | |
| 3353 | + | |
| 3354 | + | |
| 3355 | + | |
| 3356 | + | |
| 3357 | + | |
| 3358 | + | |
| 3359 | + | |
| 3360 | + | |
| 3361 | + | |
3325 | 3362 |
| |
3326 | 3363 |
| |
3327 | 3364 |
| |
|
Lines changed: 53 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
109 | 109 |
| |
110 | 110 |
| |
111 | 111 |
| |
| 112 | + | |
112 | 113 |
| |
113 | 114 |
| |
114 | 115 |
| |
| |||
238 | 239 |
| |
239 | 240 |
| |
240 | 241 |
| |
| 242 | + | |
241 | 243 |
| |
242 | 244 |
| |
243 | 245 |
| |
| |||
262 | 264 |
| |
263 | 265 |
| |
264 | 266 |
| |
| 267 | + | |
265 | 268 |
| |
266 | 269 |
| |
267 | 270 |
| |
| |||
420 | 423 |
| |
421 | 424 |
| |
422 | 425 |
| |
| 426 | + | |
| 427 | + | |
| 428 | + | |
423 | 429 |
| |
424 | 430 |
| |
425 | 431 |
| |
| |||
1402 | 1408 |
| |
1403 | 1409 |
| |
1404 | 1410 |
| |
| 1411 | + | |
| 1412 | + | |
| 1413 | + | |
1405 | 1414 |
| |
1406 | 1415 |
| |
1407 | 1416 |
| |
| |||
1444 | 1453 |
| |
1445 | 1454 |
| |
1446 | 1455 |
| |
| 1456 | + | |
| 1457 | + | |
| 1458 | + | |
| 1459 | + | |
| 1460 | + | |
| 1461 | + | |
| 1462 | + | |
| 1463 | + | |
| 1464 | + | |
| 1465 | + | |
| 1466 | + | |
| 1467 | + | |
| 1468 | + | |
| 1469 | + | |
| 1470 | + | |
| 1471 | + | |
| 1472 | + | |
| 1473 | + | |
| 1474 | + | |
| 1475 | + | |
| 1476 | + | |
| 1477 | + | |
| 1478 | + | |
| 1479 | + | |
| 1480 | + | |
| 1481 | + | |
| 1482 | + | |
| 1483 | + | |
| 1484 | + | |
| 1485 | + | |
| 1486 | + | |
| 1487 | + | |
| 1488 | + | |
| 1489 | + | |
| 1490 | + | |
| 1491 | + | |
| 1492 | + | |
| 1493 | + | |
| 1494 | + | |
| 1495 | + | |
| 1496 | + | |
| 1497 | + | |
| 1498 | + | |
1447 | 1499 |
| |
1448 | 1500 |
| |
1449 | 1501 |
| |
| |||
1513 | 1565 |
| |
1514 | 1566 |
| |
1515 | 1567 |
| |
| 1568 | + | |
1516 | 1569 |
| |
1517 | 1570 |
| |
1518 | 1571 |
| |
|
Lines changed: 4 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
65 | 65 |
| |
66 | 66 |
| |
67 | 67 |
| |
| 68 | + | |
| 69 | + | |
| 70 | + | |
| 71 | + | |
68 | 72 |
| |
69 | 73 |
| |
70 | 74 |
| |
|
Lines changed: 29 additions & 8 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1 | 1 |
| |
2 | 2 |
| |
3 | 3 |
| |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
4 | 22 |
| |
5 | 23 |
| |
6 | 24 |
| |
| |||
2826 | 2844 |
| |
2827 | 2845 |
| |
2828 | 2846 |
| |
2829 |
| - | |
2830 |
| - | |
2831 |
| - | |
| 2847 | + | |
| 2848 | + | |
| 2849 | + | |
2832 | 2850 |
| |
2833 | 2851 |
| |
2834 | 2852 |
| |
| |||
2851 | 2869 |
| |
2852 | 2870 |
| |
2853 | 2871 |
| |
| 2872 | + | |
2854 | 2873 |
| |
2855 | 2874 |
| |
2856 | 2875 |
| |
| |||
2866 | 2885 |
| |
2867 | 2886 |
| |
2868 | 2887 |
| |
2869 |
| - | |
| 2888 | + | |
2870 | 2889 |
| |
2871 | 2890 |
| |
2872 | 2891 |
| |
| |||
2877 | 2896 |
| |
2878 | 2897 |
| |
2879 | 2898 |
| |
2880 |
| - | |
2881 |
| - | |
2882 |
| - | |
| 2899 | + | |
| 2900 | + | |
| 2901 | + | |
2883 | 2902 |
| |
2884 | 2903 |
| |
2885 | 2904 |
| |
| |||
2893 | 2912 |
| |
2894 | 2913 |
| |
2895 | 2914 |
| |
| 2915 | + | |
2896 | 2916 |
| |
2897 | 2917 |
| |
2898 | 2918 |
| |
2899 | 2919 |
| |
2900 | 2920 |
| |
2901 | 2921 |
| |
2902 | 2922 |
| |
2903 |
| - | |
| 2923 | + | |
2904 | 2924 |
| |
2905 | 2925 |
| |
2906 | 2926 |
| |
| |||
4419 | 4439 |
| |
4420 | 4440 |
| |
4421 | 4441 |
| |
| 4442 | + |
Lines changed: 25 additions & 4 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
2 | 2 |
| |
3 | 3 |
| |
4 | 4 |
| |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
5 | 24 |
| |
6 | 25 |
| |
7 | 26 |
| |
| |||
676 | 695 |
| |
677 | 696 |
| |
678 | 697 |
| |
679 |
| - | |
680 |
| - | |
| 698 | + | |
| 699 | + | |
681 | 700 |
| |
682 | 701 |
| |
683 | 702 |
| |
684 | 703 |
| |
685 | 704 |
| |
686 |
| - | |
687 |
| - | |
| 705 | + | |
| 706 | + | |
688 | 707 |
| |
689 | 708 |
| |
690 | 709 |
| |
| |||
1318 | 1337 |
| |
1319 | 1338 |
| |
1320 | 1339 |
| |
| 1340 | + | |
| 1341 | + |
0 commit comments
Comments
(0)