Wait events for delayed checkpoints - Mailing list pgsql-hackers

From Thomas Munro
Subject Wait events for delayed checkpoints
Date
Msg-id CA+hUKGL7Whi8iwKbzkbn_1fixH3Yy8aAPz7mfq6Hpj7FeJrKMg@mail.gmail.com
Whole thread Raw
Responses Re: Wait events for delayed checkpoints
List pgsql-hackers
Hi,

You can't tell if your checkpointer is spending a lot of time waiting
around for flags in delayChkptFlags to clear.  Trivial patch to add
that.  I've managed to see it a few times when checkpointing
repeatedly with a heavy pgbench workload.

I had to stop and think for a moment about whether these events belong
under "WaitEventIPC", "waiting for notification from another process"
or under "WaitEventTimeout", "waiting for a timeout to expire".  I
mean, both?  It's using sleep-and-poll instead of (say) a CV due to
the economics, we want to make the other side as cheap as possible, so
we don't care about making the checkpointer take some micro-naps in
this case.  I feel like the key point here is that it's waiting for
another process to do stuff and unblock it.

Attachment

pgsql-hackers by date:

Previous
From: Michael Paquier
Date:
Subject: Re: odd buildfarm failure - "pg_ctl: control file appears to be corrupt"
Next
From: Merlin Moncure
Date:
Subject: Memory knob testing (was Re: Let's make PostgreSQL multi-threaded)