-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpglogical_ticker.c
334 lines (286 loc) · 8.63 KB
/
pglogical_ticker.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
/* -------------------------------------------------------------------------
*
* pglogical_ticker.c
* Cloned code from worker_spi and modified to accomplish our goals.
*
* -------------------------------------------------------------------------
*/
#include "postgres.h"
/* These are always necessary for a bgworker */
#include "miscadmin.h"
#include "postmaster/bgworker.h"
#include "storage/backendid.h"
#include "storage/ipc.h"
#include "storage/latch.h"
#include "storage/lwlock.h"
#include "storage/proc.h"
#include "storage/shmem.h"
/* these headers are used by this particular worker's code */
#include "access/xact.h"
#include "executor/spi.h"
#include "fmgr.h"
#include "lib/stringinfo.h"
#include "pgstat.h"
#include "utils/builtins.h"
#include "utils/snapmgr.h"
#include "tcop/utility.h"
/* includes for ticker */
#include "commands/dbcommands.h"
PG_MODULE_MAGIC;
PG_FUNCTION_INFO_V1(pglogical_ticker_launch);
PGDLLEXPORT void _PG_init(void);
PGDLLEXPORT void pglogical_ticker_main(Datum) pg_attribute_noreturn();
/* flags set by signal handlers */
static volatile sig_atomic_t got_sighup = false;
static volatile sig_atomic_t got_sigterm = false;
/* GUC variables */
static int pglogical_ticker_naptime = 10;
static char *pglogical_ticker_database;
static int pglogical_ticker_restart_time = 10;
/* Constants */
static int pglogical_ticker_total_workers = 1;
/*
* Signal handler for SIGTERM
* Set a flag to let the main loop to terminate, and set our latch to wake
* it up.
*/
static void
pglogical_ticker_sigterm(SIGNAL_ARGS)
{
int save_errno = errno;
got_sigterm = true;
SetLatch(MyLatch);
errno = save_errno;
}
/*
* Signal handler for SIGHUP
* Set a flag to tell the main loop to reread the config file, and set
* our latch to wake it up.
*/
static void
pglogical_ticker_sighup(SIGNAL_ARGS)
{
int save_errno = errno;
got_sighup = true;
SetLatch(MyLatch);
errno = save_errno;
}
void
pglogical_ticker_main(Datum main_arg)
{
Oid db_oid_main = DatumGetObjectId(main_arg);
StringInfoData buf;
/* Establish signal handlers before unblocking signals. */
pqsignal(SIGHUP, pglogical_ticker_sighup);
pqsignal(SIGTERM, pglogical_ticker_sigterm);
/* We're now ready to receive signals */
BackgroundWorkerUnblockSignals();
/* Connect to our database */
if (pglogical_ticker_database != NULL)
{
#if PG_VERSION_NUM >= 110000
BackgroundWorkerInitializeConnection(pglogical_ticker_database, NULL, 0);
#else
BackgroundWorkerInitializeConnection(pglogical_ticker_database, NULL);
#endif
}
else
{
#if PG_VERSION_NUM >= 110000
BackgroundWorkerInitializeConnectionByOid(db_oid_main, InvalidOid, 0);
#else
BackgroundWorkerInitializeConnectionByOid(db_oid_main, InvalidOid);
#endif
}
SetConfigOption("application_name", MyBgworkerEntry->bgw_name,
PGC_USERSET, PGC_S_SESSION);
elog(LOG, "%s initialized",
MyBgworkerEntry->bgw_name);
initStringInfo(&buf);
appendStringInfo(&buf,
"SELECT pglogical_ticker.tick();");
/*
* Main loop: do this until the SIGTERM handler tells us to terminate
*/
while (!got_sigterm)
{
int rc;
/*
* Background workers mustn't call usleep() or any direct equivalent:
* instead, they may wait on their process latch, which sleeps as
* necessary, but is awakened if postmaster dies. That way the
* background process goes away immediately in an emergency.
*/
#if PG_VERSION_NUM >= 100000
rc = WaitLatch(MyLatch,
WL_LATCH_SET | WL_TIMEOUT | WL_POSTMASTER_DEATH,
pglogical_ticker_naptime * 1000L,
PG_WAIT_EXTENSION);
#else
rc = WaitLatch(MyLatch,
WL_LATCH_SET | WL_TIMEOUT | WL_POSTMASTER_DEATH,
pglogical_ticker_naptime * 1000L);
#endif
ResetLatch(MyLatch);
/* emergency bailout if postmaster has died */
if (rc & WL_POSTMASTER_DEATH)
proc_exit(1);
CHECK_FOR_INTERRUPTS();
/*
* In case of a SIGHUP, just reload the configuration.
*/
if (got_sighup)
{
got_sighup = false;
ProcessConfigFile(PGC_SIGHUP);
}
/*
* Start a transaction on which we can run queries. Note that each
* StartTransactionCommand() call should be preceded by a
* SetCurrentStatementStartTimestamp() call, which sets both the time
* for the statement we're about the run, and also the transaction
* start time. Also, each other query sent to SPI should probably be
* preceded by SetCurrentStatementStartTimestamp(), so that statement
* start time is always up to date.
*
* The SPI_connect() call lets us run queries through the SPI manager,
* and the PushActiveSnapshot() call creates an "active" snapshot
* which is necessary for queries to have MVCC data to work on.
*
* The pgstat_report_activity() call makes our activity visible
* through the pgstat views.
*/
SetCurrentStatementStartTimestamp();
StartTransactionCommand();
SPI_connect();
PushActiveSnapshot(GetTransactionSnapshot());
pgstat_report_activity(STATE_RUNNING, buf.data);
/* We can now execute queries via SPI */
SPI_execute(buf.data, false, 0);
/*
* And finish our transaction.
*/
SPI_finish();
PopActiveSnapshot();
CommitTransactionCommand();
pgstat_report_stat(false);
pgstat_report_activity(STATE_IDLE, NULL);
}
proc_exit(1);
}
/*
* Entrypoint of this module.
*
* We register more than one worker process here, to demonstrate how that can
* be done.
*/
void
_PG_init(void)
{
BackgroundWorker worker;
unsigned int i;
/* get the configuration */
DefineCustomIntVariable("pglogical_ticker.naptime",
"Duration between each tick (in seconds).",
NULL,
&pglogical_ticker_naptime,
pglogical_ticker_naptime,
1,
INT_MAX,
PGC_SIGHUP,
0,
NULL,
NULL,
NULL);
DefineCustomStringVariable("pglogical_ticker.database",
"Database to connect to.",
NULL,
&pglogical_ticker_database,
pglogical_ticker_database,
PGC_SIGHUP,
0,
NULL,
NULL,
NULL);
DefineCustomIntVariable("pglogical_ticker.restart_time",
"Seconds after which to restart ticker if it dies. -1 to disable",
NULL,
&pglogical_ticker_restart_time,
pglogical_ticker_restart_time,
-1,
INT_MAX,
PGC_SIGHUP,
0,
NULL,
NULL,
NULL);
if (!process_shared_preload_libraries_in_progress)
return;
/* Only auto-start worker if pglogical_ticker_database is set */
if (pglogical_ticker_database)
{
/* set up common data for all our workers */
memset(&worker, 0, sizeof(worker));
worker.bgw_flags = BGWORKER_SHMEM_ACCESS |
BGWORKER_BACKEND_DATABASE_CONNECTION;
worker.bgw_start_time = BgWorkerStart_RecoveryFinished;
worker.bgw_restart_time = pglogical_ticker_restart_time;
sprintf(worker.bgw_library_name, "pglogical_ticker");
sprintf(worker.bgw_function_name, "pglogical_ticker_main");
worker.bgw_notify_pid = 0;
/*
* Now fill in worker-specific data, and do the actual registrations.
*/
for (i = 1; i <= pglogical_ticker_total_workers; i++)
{
snprintf(worker.bgw_name, BGW_MAXLEN, "pglogical_ticker worker %d", i);
#if PG_VERSION_NUM >= 110000
snprintf(worker.bgw_type, BGW_MAXLEN, "pglogical_ticker");
#endif
/* Hack to use postgres db oid until we do something smarter */
worker.bgw_main_arg = Int32GetDatum(0);
RegisterBackgroundWorker(&worker);
}
}
}
/*
* Dynamically launch an SPI worker.
*/
Datum
pglogical_ticker_launch(PG_FUNCTION_ARGS)
{
Oid db_oid = PG_GETARG_OID(0);
BackgroundWorker worker;
BackgroundWorkerHandle *handle;
BgwHandleStatus status;
pid_t pid;
memset(&worker, 0, sizeof(worker));
worker.bgw_flags = BGWORKER_SHMEM_ACCESS |
BGWORKER_BACKEND_DATABASE_CONNECTION;
worker.bgw_start_time = BgWorkerStart_RecoveryFinished;
worker.bgw_restart_time = pglogical_ticker_restart_time;
sprintf(worker.bgw_library_name, "pglogical_ticker");
sprintf(worker.bgw_function_name, "pglogical_ticker_main");
snprintf(worker.bgw_name, BGW_MAXLEN, "pglogical_ticker worker");
#if PG_VERSION_NUM >= 110000
snprintf(worker.bgw_type, BGW_MAXLEN, "pglogical_ticker");
#endif
worker.bgw_main_arg = ObjectIdGetDatum(db_oid);
/* set bgw_notify_pid so that we can use WaitForBackgroundWorkerStartup */
worker.bgw_notify_pid = MyProcPid;
if (!RegisterDynamicBackgroundWorker(&worker, &handle))
PG_RETURN_NULL();
status = WaitForBackgroundWorkerStartup(handle, &pid);
if (status == BGWH_STOPPED)
ereport(ERROR,
(errcode(ERRCODE_INSUFFICIENT_RESOURCES),
errmsg("could not start background process"),
errhint("More details may be available in the server log.")));
if (status == BGWH_POSTMASTER_DIED)
ereport(ERROR,
(errcode(ERRCODE_INSUFFICIENT_RESOURCES),
errmsg("cannot start background processes without postmaster"),
errhint("Kill all remaining database processes and restart the database.")));
Assert(status == BGWH_STARTED);
PG_RETURN_INT32(pid);
}