Re: pg_stat_statements issue with parallel maintenance (Was Re: WAL usage calculation patch)
Masahiko Sawada <masahiko.sawada@2ndquadrant.com>
Commits
GET /api/v1/messages/:b64id/commits
the thread's linked commits as JSON, with link sources.
API reference →
-
Change the display of WAL usage statistics in Explain.
- 69bfaf2e1de4 13.0 landed
-
Cosmetic fixups for WAL usage work.
- ef08ca113fe3 13.0 landed
-
Allow parallel create index to accumulate buffer usage stats.
- 5c71362174eb 13.0 landed
- f179e9f01b65 11.8 landed
- 13823ad3b012 12.3 landed
-
Allow autovacuum to log WAL usage statistics.
- b7ce6de93b59 13.0 landed
-
Add the option to report WAL usage in EXPLAIN and auto_explain.
- 33e05f89c53e 13.0 landed
-
Allow pg_stat_statements to track WAL usage statistics.
- 6b466bf5f2be 13.0 landed
-
Add infrastructure to track WAL usage.
- df3b181499b4 13.0 landed
-
Include information on buffer usage during planning phase, in EXPLAIN output, take two.
- ce77abe63cfc 13.0 cited
-
Include information on buffer usage during planning phase, in EXPLAIN output.
- ed7a5095716e 13.0 cited
-
Allow parallel vacuum to accumulate buffer usage.
- 3a5e22138a8d 13.0 landed
-
Allow pg_stat_statements to track planning statistics.
- 17e03282241c 13.0 cited
Attachments
- bufferusage_create_index_pg12.patch (application/x-patch) patch
- bufferusage_create_index_pg11.patch (application/x-patch) patch
On Wed, 8 Apr 2020 at 16:04, Amit Kapila <amit.kapila16@gmail.com> wrote: > > On Wed, Apr 8, 2020 at 11:53 AM Masahiko Sawada > <masahiko.sawada@2ndquadrant.com> wrote: > > > > On Wed, 8 Apr 2020 at 14:44, Amit Kapila <amit.kapila16@gmail.com> wrote: > > > > > > > > > Thanks for the investigation. I don't see we can do anything special > > > about this. In an ideal world, this should be done once and not for > > > each worker but I guess it doesn't matter too much. I am not sure if > > > it is worth adding a comment for this, what do you think? > > > > > > > I agree with you. If the differences were considerably large probably > > we would do something but I think we don't need to anything at this > > time. > > > > Fair enough, can you once check this in back-branches as this needs to > be backpatched? I will do that once by myself as well. I've done the same test with HEAD of both REL_12_STABLE and REL_11_STABLE. I think the patch needs to be backpatched to PG11 where parallel index creation was introduced. I've attached the patches for PG12 and PG11 I used for this test for reference. Here are the results: * PG12 With no worker: -[ RECORD 1 ]-------+------------- shared_blks_hit | 119 shared_blks_read | 44283 total_read_blks | 44402 shared_blks_dirtied | 44262 shared_blks_written | 24925 With 4 workers: -[ RECORD 1 ]-------+------------ shared_blks_hit | 128 shared_blks_read | 8844 total_read_blks | 8972 shared_blks_dirtied | 8822 shared_blks_written | 5393 With 4 workers after patching: -[ RECORD 1 ]-------+------------ shared_blks_hit | 140 shared_blks_read | 44284 total_read_blks | 44424 shared_blks_dirtied | 44262 shared_blks_written | 26574 * PG11 With no worker: -[ RECORD 1 ]-------+------------ shared_blks_hit | 124 shared_blks_read | 44284 total_read_blks | 44408 shared_blks_dirtied | 44263 shared_blks_written | 24908 With 4 workers: -[ RECORD 1 ]-------+------------- shared_blks_hit | 132 shared_blks_read | 8910 total_read_blks | 9042 shared_blks_dirtied | 8888 shared_blks_written | 5370 With 4 workers after patched: -[ RECORD 1 ]-------+------------- shared_blks_hit | 144 shared_blks_read | 44285 total_read_blks | 44429 shared_blks_dirtied | 44263 shared_blks_written | 26861 Regards, -- Masahiko Sawada http://www.2ndQuadrant.com/ PostgreSQL Development, 24x7 Support, Remote DBA, Training & Services