Update copyright for 2022
[pgsql.git] / src / backend / storage / ipc / sinval.c
blob8a5c52652475463690a9c8ca0b91645111eceb55
1 /*-------------------------------------------------------------------------
3 * sinval.c
4 * POSTGRES shared cache invalidation communication code.
6 * Portions Copyright (c) 1996-2022, PostgreSQL Global Development Group
7 * Portions Copyright (c) 1994, Regents of the University of California
10 * IDENTIFICATION
11 * src/backend/storage/ipc/sinval.c
13 *-------------------------------------------------------------------------
15 #include "postgres.h"
17 #include "access/xact.h"
18 #include "commands/async.h"
19 #include "miscadmin.h"
20 #include "storage/ipc.h"
21 #include "storage/proc.h"
22 #include "storage/sinvaladt.h"
23 #include "utils/inval.h"
26 uint64 SharedInvalidMessageCounter;
30 * Because backends sitting idle will not be reading sinval events, we
31 * need a way to give an idle backend a swift kick in the rear and make
32 * it catch up before the sinval queue overflows and forces it to go
33 * through a cache reset exercise. This is done by sending
34 * PROCSIG_CATCHUP_INTERRUPT to any backend that gets too far behind.
36 * The signal handler will set an interrupt pending flag and will set the
37 * processes latch. Whenever starting to read from the client, or when
38 * interrupted while doing so, ProcessClientReadInterrupt() will call
39 * ProcessCatchupEvent().
41 volatile sig_atomic_t catchupInterruptPending = false;
45 * SendSharedInvalidMessages
46 * Add shared-cache-invalidation message(s) to the global SI message queue.
48 void
49 SendSharedInvalidMessages(const SharedInvalidationMessage *msgs, int n)
51 SIInsertDataEntries(msgs, n);
55 * ReceiveSharedInvalidMessages
56 * Process shared-cache-invalidation messages waiting for this backend
58 * We guarantee to process all messages that had been queued before the
59 * routine was entered. It is of course possible for more messages to get
60 * queued right after our last SIGetDataEntries call.
62 * NOTE: it is entirely possible for this routine to be invoked recursively
63 * as a consequence of processing inside the invalFunction or resetFunction.
64 * Furthermore, such a recursive call must guarantee that all outstanding
65 * inval messages have been processed before it exits. This is the reason
66 * for the strange-looking choice to use a statically allocated buffer array
67 * and counters; it's so that a recursive call can process messages already
68 * sucked out of sinvaladt.c.
70 void
71 ReceiveSharedInvalidMessages(void (*invalFunction) (SharedInvalidationMessage *msg),
72 void (*resetFunction) (void))
74 #define MAXINVALMSGS 32
75 static SharedInvalidationMessage messages[MAXINVALMSGS];
78 * We use volatile here to prevent bugs if a compiler doesn't realize that
79 * recursion is a possibility ...
81 static volatile int nextmsg = 0;
82 static volatile int nummsgs = 0;
84 /* Deal with any messages still pending from an outer recursion */
85 while (nextmsg < nummsgs)
87 SharedInvalidationMessage msg = messages[nextmsg++];
89 SharedInvalidMessageCounter++;
90 invalFunction(&msg);
95 int getResult;
97 nextmsg = nummsgs = 0;
99 /* Try to get some more messages */
100 getResult = SIGetDataEntries(messages, MAXINVALMSGS);
102 if (getResult < 0)
104 /* got a reset message */
105 elog(DEBUG4, "cache state reset");
106 SharedInvalidMessageCounter++;
107 resetFunction();
108 break; /* nothing more to do */
111 /* Process them, being wary that a recursive call might eat some */
112 nextmsg = 0;
113 nummsgs = getResult;
115 while (nextmsg < nummsgs)
117 SharedInvalidationMessage msg = messages[nextmsg++];
119 SharedInvalidMessageCounter++;
120 invalFunction(&msg);
124 * We only need to loop if the last SIGetDataEntries call (which might
125 * have been within a recursive call) returned a full buffer.
127 } while (nummsgs == MAXINVALMSGS);
130 * We are now caught up. If we received a catchup signal, reset that
131 * flag, and call SICleanupQueue(). This is not so much because we need
132 * to flush dead messages right now, as that we want to pass on the
133 * catchup signal to the next slowest backend. "Daisy chaining" the
134 * catchup signal this way avoids creating spikes in system load for what
135 * should be just a background maintenance activity.
137 if (catchupInterruptPending)
139 catchupInterruptPending = false;
140 elog(DEBUG4, "sinval catchup complete, cleaning queue");
141 SICleanupQueue(false, 0);
147 * HandleCatchupInterrupt
149 * This is called when PROCSIG_CATCHUP_INTERRUPT is received.
151 * We used to directly call ProcessCatchupEvent directly when idle. These days
152 * we just set a flag to do it later and notify the process of that fact by
153 * setting the process's latch.
155 void
156 HandleCatchupInterrupt(void)
159 * Note: this is called by a SIGNAL HANDLER. You must be very wary what
160 * you do here.
163 catchupInterruptPending = true;
165 /* make sure the event is processed in due course */
166 SetLatch(MyLatch);
170 * ProcessCatchupInterrupt
172 * The portion of catchup interrupt handling that runs outside of the signal
173 * handler, which allows it to actually process pending invalidations.
175 void
176 ProcessCatchupInterrupt(void)
178 while (catchupInterruptPending)
181 * What we need to do here is cause ReceiveSharedInvalidMessages() to
182 * run, which will do the necessary work and also reset the
183 * catchupInterruptPending flag. If we are inside a transaction we
184 * can just call AcceptInvalidationMessages() to do this. If we
185 * aren't, we start and immediately end a transaction; the call to
186 * AcceptInvalidationMessages() happens down inside transaction start.
188 * It is awfully tempting to just call AcceptInvalidationMessages()
189 * without the rest of the xact start/stop overhead, and I think that
190 * would actually work in the normal case; but I am not sure that
191 * things would clean up nicely if we got an error partway through.
193 if (IsTransactionOrTransactionBlock())
195 elog(DEBUG4, "ProcessCatchupEvent inside transaction");
196 AcceptInvalidationMessages();
198 else
200 elog(DEBUG4, "ProcessCatchupEvent outside transaction");
201 StartTransactionCommand();
202 CommitTransactionCommand();