forked from pgfdwplus/postgres_fdw_plus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpostgres_fdw_plus.c
646 lines (550 loc) · 17.7 KB
/
postgres_fdw_plus.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
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
#include "postgres.h"
#include "access/table.h"
#include "catalog/indexing.h"
#include "catalog/namespace.h"
#include "postgres_fdw_plus.h"
#include "utils/guc.h"
#include "utils/lsyscache.h"
#include "utils/rel.h"
#include "utils/xid8.h"
/*
* GUC parameters
*/
static bool pgfdw_two_phase_commit = false;
static bool pgfdw_skip_commit_phase = false;
static bool pgfdw_track_xact_commits = true;
static bool pgfdw_use_read_committed = false;
/*
* Global variables
*/
/*
* This flag indicates whether the current local transaction uses
* the read committed isolation level when starting remote transactions.
* The flag is set when the first remote transaction is started and is
* based on the value of the pgfdw_use_read_committed parameter.
* The flag remains constant for the duration of the local transaction,
* even if pgfdw_use_read_committed is changed during that time.
*/
bool pgfdw_use_read_committed_in_xact = false;
/*
* This saves the command ID that was retrieved the last time a PGconn
* was obtained, i.e., GetConnection() is called. The saved command ID
* is used to detect cases where a single local query requires multiple
* accesses to remote servers, which is not allowed when the read committed
* isolation level is used for remote transactions.
*/
static CommandId pgfdw_last_cid = InvalidCommandId;
/*
* Private macros
*/
/*
* Construct the prepared transaction command like PREPARE TRANSACTION
* that's issued to the foreign server. It consists of full transaction ID,
* user mapping OID, process ID and cluster name.
*/
#define PreparedXactCommand(sql, cmd, entry) \
snprintf(sql, sizeof(sql), "%s 'pgfdw_" UINT64_FORMAT "_%u_%d_%s'", \
cmd, U64FromFullTransactionId(entry->fxid), \
(Oid) entry->key, MyProcPid, \
(*cluster_name == '\0') ? "null" : cluster_name)
/*
* Private functions
*/
static void pgfdw_abort_cleanup_with_sql(ConnCacheEntry *entry,
const char *sql, bool toplevel);
static void pgfdw_prepare_xacts(ConnCacheEntry *entry,
List **pending_entries_prepare);
static void pgfdw_finish_prepare_cleanup(List **pending_entries_prepare);
static void pgfdw_cleanup_pending_entries(List **pending_entries_prepare);
static void pgfdw_commit_prepared(ConnCacheEntry *entry,
List **pending_entries_commit_prepared);
static void pgfdw_finish_commit_prepared_cleanup(
List *pending_entries_commit_prepared);
static bool pgfdw_rollback_prepared(ConnCacheEntry *entry);
static void pgfdw_deallocate_all(ConnCacheEntry *entry);
static void pgfdw_insert_xact_commits(List *umids);
/*
* Define GUC parameters for postgres_fdw_plus.
*/
void
DefineCustomVariablesForPgFdwPlus(void)
{
DefineCustomBoolVariable("postgres_fdw.two_phase_commit",
"Uses two phase commit to commit foreign transactions.",
NULL,
&pgfdw_two_phase_commit,
false,
PGC_USERSET,
0,
NULL,
NULL,
NULL);
DefineCustomBoolVariable("postgres_fdw.skip_commit_phase",
"Performs only prepare phase in two phase commit.",
NULL,
&pgfdw_skip_commit_phase,
false,
PGC_USERSET,
0,
NULL,
NULL,
NULL);
DefineCustomBoolVariable("postgres_fdw.track_xact_commits",
"Collects transaction commits information.",
NULL,
&pgfdw_track_xact_commits,
true,
PGC_USERSET,
0,
NULL,
NULL,
NULL);
DefineCustomBoolVariable("postgres_fdw.use_read_committed",
"Use READ COMMITTED isolation level on remote transactions.",
NULL,
&pgfdw_use_read_committed,
false,
PGC_USERSET,
0,
NULL,
NULL,
NULL);
}
/*
* Connection cache (initialized on first use)
*/
HTAB *ConnectionHash = NULL;
void
pgfdw_abort_cleanup(ConnCacheEntry *entry, bool toplevel)
{
char sql[100];
CONSTRUCT_ABORT_COMMAND(sql, entry, toplevel);
pgfdw_abort_cleanup_with_sql(entry, sql, toplevel);
}
static void
pgfdw_abort_cleanup_with_sql(ConnCacheEntry *entry, const char *sql,
bool toplevel)
{
/*
* Don't try to clean up the connection if we're already in error
* recursion trouble.
*/
if (in_error_recursion_trouble())
entry->changing_xact_state = true;
/*
* If connection is already unsalvageable, don't touch it further.
*/
if (entry->changing_xact_state)
return;
/*
* Mark this connection as in the process of changing transaction state.
*/
entry->changing_xact_state = true;
/* Assume we might have lost track of prepared statements */
entry->have_error = true;
/*
* If a command has been submitted to the remote server by using an
* asynchronous execution function, the command might not have yet
* completed. Check to see if a command is still being processed by the
* remote server, and if so, request cancellation of the command.
*/
if (PQtransactionStatus(entry->conn) == PQTRANS_ACTIVE &&
!pgfdw_cancel_query(entry->conn))
return; /* Unable to cancel running query */
if (!pgfdw_exec_cleanup_query(entry->conn, sql, false))
return; /* Unable to abort remote (sub)transaction */
if (toplevel)
{
if (entry->have_prep_stmt && entry->have_error &&
!pgfdw_exec_cleanup_query(entry->conn,
"DEALLOCATE ALL",
true))
return; /* Trouble clearing prepared statements */
entry->have_prep_stmt = false;
entry->have_error = false;
}
/*
* If pendingAreq of the per-connection state is not NULL, it means that
* an asynchronous fetch begun by fetch_more_data_begin() was not done
* successfully and thus the per-connection state was not reset in
* fetch_more_data(); in that case reset the per-connection state here.
*/
if (entry->state.pendingAreq)
memset(&entry->state, 0, sizeof(entry->state));
/* Disarm changing_xact_state if it all worked */
entry->changing_xact_state = false;
}
void
pgfdw_arrange_read_committed(bool xact_got_connection)
{
/*
* Determine whether the current local transaction uses the read
* committed isolation level when starting remote transactions.
*/
if (!xact_got_connection)
{
pgfdw_use_read_committed_in_xact = pgfdw_use_read_committed;
pgfdw_last_cid = InvalidCommandId;
}
/*
* When using the read committed isolation level for remote transactions,
* a single query should perform only one foreign scan to maintain
* consistency. If a query performs multiple foreign scans, it triggers
* an error. This is detected by checking how many times GetConnection()
* is called with the same command ID.
*/
if (pgfdw_use_read_committed_in_xact)
{
CommandId cid = GetCurrentCommandId(true);
if (pgfdw_last_cid == cid)
ereport(ERROR,
(errcode(ERRCODE_S_R_E_PROHIBITED_SQL_STATEMENT_ATTEMPTED),
errmsg("could not initiate multiple foreign scans in a single query"),
errdetail("Multiple foreign scans are not allowed in a single query when using read committed level for remote transactions to maintain consistency."),
errhint("Disable postgres_fdw.use_read_committed or modify query to perform only a single foreign scan.")));
pgfdw_last_cid = cid;
}
}
bool
pgfdw_xact_two_phase(XactEvent event)
{
HASH_SEQ_STATUS scan;
ConnCacheEntry *entry;
List *umids = NIL;
static List *pending_entries_prepare = NIL;
List *pending_entries_commit_prepared = NIL;
List *pending_entries_rollback = NIL;
List *cancel_requested = NIL;
/* Quick exit if not two-phase commit case */
if (!pgfdw_two_phase_commit)
return false;
/*
* Quick exit if PREPARE is executed so that pgfdw_xact_callback()
* can handle it promptly.
*/
if (event == XACT_EVENT_PRE_PREPARE ||
event == XACT_EVENT_PREPARE)
return false;
/*
* When the event is XACT_EVENT_ABORT or XACT_EVENT_PARALLEL_ABORT,
* it's possible that there are pending connection entries which
* sent PREPARE TRANSACTION commands to remote servers but their
* responses haven't been received yet. This situation can occur if,
* for example, an error is raised during the execution of
* PREPARE TRANSACTION commands in pgfdw_xact_two_phase() with
* parallel_commit = on. To ensure proper handling, we make an effort
* to receive these responses before issuing ROLLBACK PREPARED
* commands. This is necessary because until we receive all the results
* from the last command, like ROLLBACK PREPARED, we cannot issue any
* new commands.
*/
if ((event == XACT_EVENT_ABORT ||
event == XACT_EVENT_PARALLEL_ABORT) &&
pending_entries_prepare)
pgfdw_cleanup_pending_entries(&pending_entries_prepare);
Assert(!pending_entries_prepare);
/*
* Scan all connection cache entries to find open remote transactions, and
* close them.
*/
hash_seq_init(&scan, ConnectionHash);
while ((entry = (ConnCacheEntry *) hash_seq_search(&scan)))
{
/* Ignore cache entry if no open connection right now */
if (entry->conn == NULL)
continue;
/* If it has an open remote transaction, try to close it */
if (entry->xact_depth > 0)
{
elog(DEBUG3, "closing remote transaction on connection %p",
entry->conn);
switch (event)
{
case XACT_EVENT_PARALLEL_PRE_COMMIT:
case XACT_EVENT_PRE_COMMIT:
Assert(pgfdw_two_phase_commit);
/*
* If abort cleanup previously failed for this connection,
* we can't issue any more commands against it.
*/
pgfdw_reject_incomplete_xact_state_change(entry);
pgfdw_prepare_xacts(entry, &pending_entries_prepare);
if (pgfdw_track_xact_commits)
umids = lappend_oid(umids, (Oid) entry->key);
continue;
case XACT_EVENT_PARALLEL_COMMIT:
case XACT_EVENT_COMMIT:
pgfdw_commit_prepared(entry,
&pending_entries_commit_prepared);
if (entry->parallel_commit && !pgfdw_skip_commit_phase)
continue;
break;
case XACT_EVENT_PARALLEL_ABORT:
case XACT_EVENT_ABORT:
if (pgfdw_rollback_prepared(entry))
break;
if (entry->parallel_abort)
{
if (pgfdw_abort_cleanup_begin(entry, true,
&pending_entries_rollback,
&cancel_requested))
continue;
}
else
pgfdw_abort_cleanup(entry, true);
break;
default:
Assert(false); /* can't happen */
break;
}
}
/* Reset state to show we're out of a transaction */
entry->fxid = InvalidFullTransactionId;
pgfdw_reset_xact_state(entry, true);
}
if (pending_entries_prepare)
{
Assert(event == XACT_EVENT_PARALLEL_PRE_COMMIT ||
event == XACT_EVENT_PRE_COMMIT);
pgfdw_finish_prepare_cleanup(&pending_entries_prepare);
}
if (pending_entries_commit_prepared)
{
Assert(event == XACT_EVENT_PARALLEL_COMMIT ||
event == XACT_EVENT_COMMIT);
pgfdw_finish_commit_prepared_cleanup(pending_entries_commit_prepared);
}
if (pending_entries_rollback || cancel_requested)
{
Assert(event == XACT_EVENT_PARALLEL_ABORT ||
event == XACT_EVENT_ABORT);
pgfdw_finish_abort_cleanup(pending_entries_rollback, cancel_requested,
true);
}
if (umids)
{
Assert(event == XACT_EVENT_PARALLEL_PRE_COMMIT ||
event == XACT_EVENT_PRE_COMMIT);
pgfdw_insert_xact_commits(umids);
}
return true;
}
static void
pgfdw_prepare_xacts(ConnCacheEntry *entry, List **pending_entries_prepare)
{
char sql[256];
Assert(!FullTransactionIdIsValid(entry->fxid));
entry->fxid = GetTopFullTransactionId();
PreparedXactCommand(sql, "PREPARE TRANSACTION", entry);
entry->changing_xact_state = true;
if (entry->parallel_commit)
{
do_sql_command_begin(entry->conn, sql);
*pending_entries_prepare = lappend(*pending_entries_prepare, entry);
return;
}
do_sql_command(entry->conn, sql);
entry->changing_xact_state = false;
}
static void
pgfdw_finish_prepare_cleanup(List **pending_entries_prepare)
{
ConnCacheEntry *entry;
char sql[256];
ListCell *lc;
Assert(*pending_entries_prepare);
foreach(lc, *pending_entries_prepare)
{
entry = (ConnCacheEntry *) lfirst(lc);
Assert(entry->changing_xact_state);
/*
* We might already have received the result on the socket, so pass
* consume_input=true to try to consume it first
*/
PreparedXactCommand(sql, "PREPARE TRANSACTION", entry);
do_sql_command_end(entry->conn, sql, true);
entry->changing_xact_state = false;
}
*pending_entries_prepare = NIL;
}
static void
pgfdw_cleanup_pending_entries(List **pending_entries_prepare)
{
ConnCacheEntry *entry;
char sql[256];
ListCell *lc;
Assert(*pending_entries_prepare);
foreach(lc, *pending_entries_prepare)
{
TimestampTz endtime;
bool success;
entry = (ConnCacheEntry *) lfirst(lc);
/* If this connection has problem or is cleaned up already, skip it */
if (PQstatus(entry->conn) != CONNECTION_OK ||
!entry->changing_xact_state)
continue;
endtime = TimestampTzPlusMilliseconds(GetCurrentTimestamp(),
CONNECTION_CLEANUP_TIMEOUT);
PreparedXactCommand(sql, "PREPARE TRANSACTION", entry);
success = pgfdw_exec_cleanup_query_end(entry->conn, sql, endtime,
true, false);
if (success)
entry->changing_xact_state = false;
}
*pending_entries_prepare = NIL;
}
static void
pgfdw_commit_prepared(ConnCacheEntry *entry,
List **pending_entries_commit_prepared)
{
char sql[256];
bool success = true;
if (!FullTransactionIdIsValid(entry->fxid))
return;
Assert(pgfdw_two_phase_commit);
if (!pgfdw_skip_commit_phase)
{
PreparedXactCommand(sql, "COMMIT PREPARED", entry);
entry->changing_xact_state = true;
if (entry->parallel_commit)
{
if (pgfdw_exec_cleanup_query_begin(entry->conn, sql))
*pending_entries_commit_prepared =
lappend(*pending_entries_commit_prepared, entry);
return;
}
success = pgfdw_exec_cleanup_query(entry->conn, sql, false);
entry->changing_xact_state = false;
}
/*
* If COMMIT PREPARED fails, we don't do a DEALLOCATE ALL because it's
* also likely to fail or may get stuck (especially when
* pgfdw_exec_cleanup_query() reports failure because of a timeout).
*/
if (success)
pgfdw_deallocate_all(entry);
}
static void
pgfdw_finish_commit_prepared_cleanup(List *pending_entries_commit_prepared)
{
ConnCacheEntry *entry;
char sql[256];
ListCell *lc;
Assert(pending_entries_commit_prepared);
foreach(lc, pending_entries_commit_prepared)
{
bool success;
TimestampTz endtime;
entry = (ConnCacheEntry *) lfirst(lc);
Assert(entry->changing_xact_state);
/*
* Set end time. We do this now, not before issuing the command like
* in normal mode, for the same reason as for the cancel_requested
* entries.
*/
endtime = TimestampTzPlusMilliseconds(GetCurrentTimestamp(),
CONNECTION_CLEANUP_TIMEOUT);
PreparedXactCommand(sql, "COMMIT PREPARED", entry);
success = pgfdw_exec_cleanup_query_end(entry->conn, sql, endtime,
false, false);
entry->changing_xact_state = false;
if (success)
pgfdw_deallocate_all(entry);
entry->fxid = InvalidFullTransactionId;
pgfdw_reset_xact_state(entry, true);
}
}
static bool
pgfdw_rollback_prepared(ConnCacheEntry *entry)
{
char sql[256];
if (!FullTransactionIdIsValid(entry->fxid))
return false;
Assert(pgfdw_two_phase_commit);
if (!pgfdw_skip_commit_phase)
{
PreparedXactCommand(sql, "ROLLBACK PREPARED", entry);
pgfdw_abort_cleanup_with_sql(entry, sql, true);
}
else
pgfdw_deallocate_all(entry);
return true;
}
/*
* Do a DEALLOCATE ALL to make sure we get rid of all prepared statements.
* See comments in pgfdw_xact_callback().
*/
static void
pgfdw_deallocate_all(ConnCacheEntry *entry)
{
if (entry->have_prep_stmt && entry->have_error)
pgfdw_exec_cleanup_query(entry->conn, "DEALLOCATE ALL", true);
entry->have_prep_stmt = false;
entry->have_error = false;
}
/* Macros for pgfdw_plus.xact_commits table to track transaction commits */
#define PGFDW_PLUS_SCHEMA "pgfdw_plus"
#define PGFDW_PLUS_XACT_COMMITS_TABLE "xact_commits"
#define PGFDW_PLUS_XACT_COMMITS_COLS 2
/*
* Insert the following two information about the current local
* transaction into PGFDW_PLUS_XACT_COMMITS_TABLE table.
*
* 1. The full transaction ID of the current local transaction.
* 2. Array of user mapping OID corresponding to a foreign transaction
* that the current local transaction started. The list of
* these user mapping OIDs needs to be specified in the argument
* "umids". This list must not be NIL.
*
* Note that PGFDW_PLUS_XACT_COMMITS_TABLE, as it is named,
* eventually contains only the information of committed transactions.
* If the transaction is rollbacked, the record inserted by this function
* obviously gets unvisiable.
*/
static void
pgfdw_insert_xact_commits(List *umids)
{
Datum values[PGFDW_PLUS_XACT_COMMITS_COLS];
bool nulls[PGFDW_PLUS_XACT_COMMITS_COLS];
Datum *datums;
int ndatums;
ArrayType *arr;
ListCell *lc;
Oid namespaceId;
Oid relId;
Relation rel;
HeapTuple tup;
Assert(umids != NIL);
MemSet(values, 0, sizeof(values));
MemSet(nulls, 0, sizeof(nulls));
values[0] = FullTransactionIdGetDatum(GetTopFullTransactionId());
/* Convert a list of umid to an oid[] Datum */
ndatums = list_length(umids);
datums = (Datum *) palloc(ndatums * sizeof(Datum));
ndatums = 0;
foreach(lc, umids)
{
Oid umid = lfirst_oid(lc);
datums[ndatums++] = ObjectIdGetDatum(umid);
}
arr = construct_array(datums, ndatums, OIDOID, sizeof(Oid),
true, TYPALIGN_INT);
values[1] = PointerGetDatum(arr);
/*
* Look up the schema and table to store transaction commits information.
* Note that we don't verify we have enough permissions on them, nor run
* object access hooks for them.
*/
namespaceId = get_namespace_oid(PGFDW_PLUS_SCHEMA, false);
relId = get_relname_relid(PGFDW_PLUS_XACT_COMMITS_TABLE, namespaceId);
if (!OidIsValid(relId))
ereport(ERROR,
(errcode(ERRCODE_UNDEFINED_TABLE),
errmsg("relation \"%s.%s\" does not exist",
PGFDW_PLUS_SCHEMA,
PGFDW_PLUS_XACT_COMMITS_TABLE)));
rel = table_open(relId, RowExclusiveLock);
tup = heap_form_tuple(RelationGetDescr(rel), values, nulls);
CatalogTupleInsert(rel, tup);
table_close(rel, NoLock);
}