OSDN Git Service

Reduce the memory footprint of large pending-trigger-event lists, as per my
authorTom Lane <tgl@sss.pgh.pa.us>
Fri, 24 Oct 2008 23:42:35 +0000 (23:42 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Fri, 24 Oct 2008 23:42:35 +0000 (23:42 +0000)
commit312b1a983fb57aff6a73fb65718e9121468ba472
treefe4dc2955f676fb2dad91061f9c1c0fc49d014af
parent3ca5aa6cbc579da7834401f41f85ee5eca3fe317
Reduce the memory footprint of large pending-trigger-event lists, as per my
recent proposal.  In typical cases, we now need 12 bytes per insert or delete
event and 16 bytes per update event; previously we needed 40 bytes per
event on 32-bit hardware and 80 bytes per event on 64-bit hardware.  Even
in the worst case usage pattern with a large number of distinct triggers being
fired in one query, usage is at most 32 bytes per event.  It seems to be a
bit faster than the old code as well, due to reduction of palloc overhead.

This commit doesn't address the TODO item of allowing the event list to spill
to disk; rather it's trying to stave off the need for that.  However, it
probably makes that task a bit easier by reducing the data structure's
dependency on pointers.  It would now be practical to dump an event list to
disk by "chunks" instead of individual events.
src/backend/commands/trigger.c
src/include/commands/trigger.h