PostgreSQL Source Code  git master
tablesync.c File Reference
#include "postgres.h"
#include "access/table.h"
#include "access/xact.h"
#include "catalog/indexing.h"
#include "catalog/pg_subscription_rel.h"
#include "catalog/pg_type.h"
#include "commands/copy.h"
#include "miscadmin.h"
#include "nodes/makefuncs.h"
#include "parser/parse_relation.h"
#include "pgstat.h"
#include "replication/logicallauncher.h"
#include "replication/logicalrelation.h"
#include "replication/logicalworker.h"
#include "replication/origin.h"
#include "replication/slot.h"
#include "replication/walreceiver.h"
#include "replication/worker_internal.h"
#include "storage/ipc.h"
#include "storage/lmgr.h"
#include "utils/acl.h"
#include "utils/array.h"
#include "utils/builtins.h"
#include "utils/lsyscache.h"
#include "utils/memutils.h"
#include "utils/rls.h"
#include "utils/snapmgr.h"
#include "utils/syscache.h"
#include "utils/usercontext.h"
Include dependency graph for tablesync.c:

Go to the source code of this file.

Enumerations

enum  SyncingTablesState { SYNC_TABLE_STATE_NEEDS_REBUILD , SYNC_TABLE_STATE_REBUILD_STARTED , SYNC_TABLE_STATE_VALID }
 

Functions

static bool FetchTableStates (bool *started_tx)
 
static void pg_attribute_noreturn () finish_sync_worker(void)
 
static bool wait_for_relation_state_change (Oid relid, char expected_state)
 
static bool wait_for_worker_state_change (char expected_state)
 
void invalidate_syncing_table_states (Datum arg, int cacheid, uint32 hashvalue)
 
static void process_syncing_tables_for_sync (XLogRecPtr current_lsn)
 
static void process_syncing_tables_for_apply (XLogRecPtr current_lsn)
 
void process_syncing_tables (XLogRecPtr current_lsn)
 
static Listmake_copy_attnamelist (LogicalRepRelMapEntry *rel)
 
static int copy_read_data (void *outbuf, int minread, int maxread)
 
static void fetch_remote_table_info (char *nspname, char *relname, LogicalRepRelation *lrel, List **qual)
 
static void copy_table (Relation rel)
 
void ReplicationSlotNameForTablesync (Oid suboid, Oid relid, char *syncslotname, Size szslot)
 
static char * LogicalRepSyncTableStart (XLogRecPtr *origin_startpos)
 
static void start_table_sync (XLogRecPtr *origin_startpos, char **slotname)
 
static void run_tablesync_worker ()
 
void TablesyncWorkerMain (Datum main_arg)
 
bool AllTablesyncsReady (void)
 
void UpdateTwoPhaseState (Oid suboid, char new_state)
 

Variables

static SyncingTablesState table_states_validity = SYNC_TABLE_STATE_NEEDS_REBUILD
 
static Listtable_states_not_ready = NIL
 
static StringInfo copybuf = NULL
 

Enumeration Type Documentation

◆ SyncingTablesState

Enumerator
SYNC_TABLE_STATE_NEEDS_REBUILD 
SYNC_TABLE_STATE_REBUILD_STARTED 
SYNC_TABLE_STATE_VALID 

Definition at line 126 of file tablesync.c.

127 {
SyncingTablesState
Definition: tablesync.c:127
@ SYNC_TABLE_STATE_REBUILD_STARTED
Definition: tablesync.c:129
@ SYNC_TABLE_STATE_VALID
Definition: tablesync.c:130
@ SYNC_TABLE_STATE_NEEDS_REBUILD
Definition: tablesync.c:128

Function Documentation

◆ AllTablesyncsReady()

bool AllTablesyncsReady ( void  )

Definition at line 1731 of file tablesync.c.

1732 {
1733  bool started_tx = false;
1734  bool has_subrels = false;
1735 
1736  /* We need up-to-date sync state info for subscription tables here. */
1737  has_subrels = FetchTableStates(&started_tx);
1738 
1739  if (started_tx)
1740  {
1742  pgstat_report_stat(true);
1743  }
1744 
1745  /*
1746  * Return false when there are no tables in subscription or not all tables
1747  * are in ready state; true otherwise.
1748  */
1749  return has_subrels && (table_states_not_ready == NIL);
1750 }
#define NIL
Definition: pg_list.h:68
long pgstat_report_stat(bool force)
Definition: pgstat.c:579
static List * table_states_not_ready
Definition: tablesync.c:134
static bool FetchTableStates(bool *started_tx)
Definition: tablesync.c:1572
void CommitTransactionCommand(void)
Definition: xact.c:3093

References CommitTransactionCommand(), FetchTableStates(), NIL, pgstat_report_stat(), and table_states_not_ready.

Referenced by pa_can_start(), process_syncing_tables_for_apply(), and run_apply_worker().

◆ copy_read_data()

static int copy_read_data ( void *  outbuf,
int  minread,
int  maxread 
)
static

Definition at line 718 of file tablesync.c.

719 {
720  int bytesread = 0;
721  int avail;
722 
723  /* If there are some leftover data from previous read, use it. */
724  avail = copybuf->len - copybuf->cursor;
725  if (avail)
726  {
727  if (avail > maxread)
728  avail = maxread;
729  memcpy(outbuf, &copybuf->data[copybuf->cursor], avail);
730  copybuf->cursor += avail;
731  maxread -= avail;
732  bytesread += avail;
733  }
734 
735  while (maxread > 0 && bytesread < minread)
736  {
738  int len;
739  char *buf = NULL;
740 
741  for (;;)
742  {
743  /* Try read the data. */
745 
747 
748  if (len == 0)
749  break;
750  else if (len < 0)
751  return bytesread;
752  else
753  {
754  /* Process the data */
755  copybuf->data = buf;
756  copybuf->len = len;
757  copybuf->cursor = 0;
758 
759  avail = copybuf->len - copybuf->cursor;
760  if (avail > maxread)
761  avail = maxread;
762  memcpy(outbuf, &copybuf->data[copybuf->cursor], avail);
763  outbuf = (void *) ((char *) outbuf + avail);
764  copybuf->cursor += avail;
765  maxread -= avail;
766  bytesread += avail;
767  }
768 
769  if (maxread <= 0 || bytesread >= minread)
770  return bytesread;
771  }
772 
773  /*
774  * Wait for more data or latch.
775  */
776  (void) WaitLatchOrSocket(MyLatch,
779  fd, 1000L, WAIT_EVENT_LOGICAL_SYNC_DATA);
780 
782  }
783 
784  return bytesread;
785 }
WalReceiverConn * LogRepWorkerWalRcvConn
Definition: worker.c:296
struct Latch * MyLatch
Definition: globals.c:60
int WaitLatchOrSocket(Latch *latch, int wakeEvents, pgsocket sock, long timeout, uint32 wait_event_info)
Definition: latch.c:565
void ResetLatch(Latch *latch)
Definition: latch.c:724
#define WL_SOCKET_READABLE
Definition: latch.h:128
#define WL_TIMEOUT
Definition: latch.h:130
#define WL_EXIT_ON_PM_DEATH
Definition: latch.h:132
#define WL_LATCH_SET
Definition: latch.h:127
#define CHECK_FOR_INTERRUPTS()
Definition: miscadmin.h:122
const void size_t len
static char * buf
Definition: pg_test_fsync.c:73
int pgsocket
Definition: port.h:29
#define PGINVALID_SOCKET
Definition: port.h:31
static int fd(const char *x, int i)
Definition: preproc-init.c:105
static StringInfo copybuf
Definition: tablesync.c:137
#define walrcv_receive(conn, buffer, wait_fd)
Definition: walreceiver.h:452

References buf, CHECK_FOR_INTERRUPTS, copybuf, StringInfoData::cursor, StringInfoData::data, fd(), StringInfoData::len, len, LogRepWorkerWalRcvConn, MyLatch, PGINVALID_SOCKET, ResetLatch(), WaitLatchOrSocket(), walrcv_receive, WL_EXIT_ON_PM_DEATH, WL_LATCH_SET, WL_SOCKET_READABLE, and WL_TIMEOUT.

Referenced by copy_table().

◆ copy_table()

static void copy_table ( Relation  rel)
static

Definition at line 1115 of file tablesync.c.

1116 {
1117  LogicalRepRelMapEntry *relmapentry;
1118  LogicalRepRelation lrel;
1119  List *qual = NIL;
1121  StringInfoData cmd;
1122  CopyFromState cstate;
1123  List *attnamelist;
1124  ParseState *pstate;
1125  List *options = NIL;
1126 
1127  /* Get the publisher relation info. */
1129  RelationGetRelationName(rel), &lrel, &qual);
1130 
1131  /* Put the relation into relmap. */
1132  logicalrep_relmap_update(&lrel);
1133 
1134  /* Map the publisher relation to local one. */
1135  relmapentry = logicalrep_rel_open(lrel.remoteid, NoLock);
1136  Assert(rel == relmapentry->localrel);
1137 
1138  /* Start copy on the publisher. */
1139  initStringInfo(&cmd);
1140 
1141  /* Regular table with no row filter */
1142  if (lrel.relkind == RELKIND_RELATION && qual == NIL)
1143  {
1144  appendStringInfo(&cmd, "COPY %s",
1146 
1147  /* If the table has columns, then specify the columns */
1148  if (lrel.natts)
1149  {
1150  appendStringInfoString(&cmd, " (");
1151 
1152  /*
1153  * XXX Do we need to list the columns in all cases? Maybe we're
1154  * replicating all columns?
1155  */
1156  for (int i = 0; i < lrel.natts; i++)
1157  {
1158  if (i > 0)
1159  appendStringInfoString(&cmd, ", ");
1160 
1162  }
1163 
1164  appendStringInfoChar(&cmd, ')');
1165  }
1166 
1167  appendStringInfoString(&cmd, " TO STDOUT");
1168  }
1169  else
1170  {
1171  /*
1172  * For non-tables and tables with row filters, we need to do COPY
1173  * (SELECT ...), but we can't just do SELECT * because we need to not
1174  * copy generated columns. For tables with any row filters, build a
1175  * SELECT query with OR'ed row filters for COPY.
1176  */
1177  appendStringInfoString(&cmd, "COPY (SELECT ");
1178  for (int i = 0; i < lrel.natts; i++)
1179  {
1181  if (i < lrel.natts - 1)
1182  appendStringInfoString(&cmd, ", ");
1183  }
1184 
1185  appendStringInfoString(&cmd, " FROM ");
1186 
1187  /*
1188  * For regular tables, make sure we don't copy data from a child that
1189  * inherits the named table as those will be copied separately.
1190  */
1191  if (lrel.relkind == RELKIND_RELATION)
1192  appendStringInfoString(&cmd, "ONLY ");
1193 
1195  /* list of OR'ed filters */
1196  if (qual != NIL)
1197  {
1198  ListCell *lc;
1199  char *q = strVal(linitial(qual));
1200 
1201  appendStringInfo(&cmd, " WHERE %s", q);
1202  for_each_from(lc, qual, 1)
1203  {
1204  q = strVal(lfirst(lc));
1205  appendStringInfo(&cmd, " OR %s", q);
1206  }
1207  list_free_deep(qual);
1208  }
1209 
1210  appendStringInfoString(&cmd, ") TO STDOUT");
1211  }
1212 
1213  /*
1214  * Prior to v16, initial table synchronization will use text format even
1215  * if the binary option is enabled for a subscription.
1216  */
1219  {
1220  appendStringInfoString(&cmd, " WITH (FORMAT binary)");
1221  options = list_make1(makeDefElem("format",
1222  (Node *) makeString("binary"), -1));
1223  }
1224 
1225  res = walrcv_exec(LogRepWorkerWalRcvConn, cmd.data, 0, NULL);
1226  pfree(cmd.data);
1227  if (res->status != WALRCV_OK_COPY_OUT)
1228  ereport(ERROR,
1229  (errcode(ERRCODE_CONNECTION_FAILURE),
1230  errmsg("could not start initial contents copy for table \"%s.%s\": %s",
1231  lrel.nspname, lrel.relname, res->err)));
1233 
1234  copybuf = makeStringInfo();
1235 
1236  pstate = make_parsestate(NULL);
1237  (void) addRangeTableEntryForRelation(pstate, rel, AccessShareLock,
1238  NULL, false, false);
1239 
1240  attnamelist = make_copy_attnamelist(relmapentry);
1241  cstate = BeginCopyFrom(pstate, rel, NULL, NULL, false, copy_read_data, attnamelist, options);
1242 
1243  /* Do the copy */
1244  (void) CopyFrom(cstate);
1245 
1246  logicalrep_rel_close(relmapentry, NoLock);
1247 }
Subscription * MySubscription
Definition: worker.c:298
#define Assert(condition)
Definition: c.h:858
CopyFromState BeginCopyFrom(ParseState *pstate, Relation rel, Node *whereClause, const char *filename, bool is_program, copy_data_source_cb data_source_cb, List *attnamelist, List *options)
Definition: copyfrom.c:1368
uint64 CopyFrom(CopyFromState cstate)
Definition: copyfrom.c:628
int errcode(int sqlerrcode)
Definition: elog.c:859
int errmsg(const char *fmt,...)
Definition: elog.c:1072
#define ERROR
Definition: elog.h:39
#define ereport(elevel,...)
Definition: elog.h:149
int i
Definition: isn.c:73
void list_free_deep(List *list)
Definition: list.c:1560
#define NoLock
Definition: lockdefs.h:34
#define AccessShareLock
Definition: lockdefs.h:36
char * get_namespace_name(Oid nspid)
Definition: lsyscache.c:3366
DefElem * makeDefElem(char *name, Node *arg, int location)
Definition: makefuncs.c:564
void pfree(void *pointer)
Definition: mcxt.c:1520
ParseState * make_parsestate(ParseState *parentParseState)
Definition: parse_node.c:39
ParseNamespaceItem * addRangeTableEntryForRelation(ParseState *pstate, Relation rel, int lockmode, Alias *alias, bool inh, bool inFromCl)
#define lfirst(lc)
Definition: pg_list.h:172
#define list_make1(x1)
Definition: pg_list.h:212
#define for_each_from(cell, lst, N)
Definition: pg_list.h:414
#define linitial(l)
Definition: pg_list.h:178
#define RelationGetRelationName(relation)
Definition: rel.h:539
#define RelationGetNamespace(relation)
Definition: rel.h:546
const char * quote_identifier(const char *ident)
Definition: ruleutils.c:12623
char * quote_qualified_identifier(const char *qualifier, const char *ident)
Definition: ruleutils.c:12707
void logicalrep_relmap_update(LogicalRepRelation *remoterel)
Definition: relation.c:164
LogicalRepRelMapEntry * logicalrep_rel_open(LogicalRepRelId remoteid, LOCKMODE lockmode)
Definition: relation.c:327
void logicalrep_rel_close(LogicalRepRelMapEntry *rel, LOCKMODE lockmode)
Definition: relation.c:473
StringInfo makeStringInfo(void)
Definition: stringinfo.c:41
void appendStringInfo(StringInfo str, const char *fmt,...)
Definition: stringinfo.c:97
void appendStringInfoString(StringInfo str, const char *s)
Definition: stringinfo.c:182
void appendStringInfoChar(StringInfo str, char ch)
Definition: stringinfo.c:194
void initStringInfo(StringInfo str)
Definition: stringinfo.c:59
Definition: pg_list.h:54
LogicalRepRelId remoteid
Definition: logicalproto.h:107
Definition: nodes.h:129
static int copy_read_data(void *outbuf, int minread, int maxread)
Definition: tablesync.c:718
static void fetch_remote_table_info(char *nspname, char *relname, LogicalRepRelation *lrel, List **qual)
Definition: tablesync.c:794
static List * make_copy_attnamelist(LogicalRepRelMapEntry *rel)
Definition: tablesync.c:698
String * makeString(char *str)
Definition: value.c:63
#define strVal(v)
Definition: value.h:82
@ WALRCV_OK_COPY_OUT
Definition: walreceiver.h:208
static void walrcv_clear_result(WalRcvExecResult *walres)
Definition: walreceiver.h:468
#define walrcv_server_version(conn)
Definition: walreceiver.h:444
#define walrcv_exec(conn, exec, nRetTypes, retTypes)
Definition: walreceiver.h:462

References AccessShareLock, addRangeTableEntryForRelation(), appendStringInfo(), appendStringInfoChar(), appendStringInfoString(), Assert, LogicalRepRelation::attnames, BeginCopyFrom(), Subscription::binary, copy_read_data(), copybuf, CopyFrom(), StringInfoData::data, ereport, errcode(), errmsg(), ERROR, fetch_remote_table_info(), for_each_from, get_namespace_name(), i, initStringInfo(), lfirst, linitial, list_free_deep(), list_make1, LogicalRepRelMapEntry::localrel, logicalrep_rel_close(), logicalrep_rel_open(), logicalrep_relmap_update(), LogRepWorkerWalRcvConn, make_copy_attnamelist(), make_parsestate(), makeDefElem(), makeString(), makeStringInfo(), MySubscription, LogicalRepRelation::natts, NIL, NoLock, LogicalRepRelation::nspname, pfree(), quote_identifier(), quote_qualified_identifier(), RelationGetNamespace, RelationGetRelationName, LogicalRepRelation::relkind, LogicalRepRelation::relname, LogicalRepRelation::remoteid, res, strVal, walrcv_clear_result(), walrcv_exec, WALRCV_OK_COPY_OUT, and walrcv_server_version.

Referenced by LogicalRepSyncTableStart().

◆ fetch_remote_table_info()

static void fetch_remote_table_info ( char *  nspname,
char *  relname,
LogicalRepRelation lrel,
List **  qual 
)
static

Definition at line 794 of file tablesync.c.

796 {
798  StringInfoData cmd;
799  TupleTableSlot *slot;
800  Oid tableRow[] = {OIDOID, CHAROID, CHAROID};
801  Oid attrRow[] = {INT2OID, TEXTOID, OIDOID, BOOLOID};
802  Oid qualRow[] = {TEXTOID};
803  bool isnull;
804  int natt;
805  ListCell *lc;
806  Bitmapset *included_cols = NULL;
807 
808  lrel->nspname = nspname;
809  lrel->relname = relname;
810 
811  /* First fetch Oid and replica identity. */
812  initStringInfo(&cmd);
813  appendStringInfo(&cmd, "SELECT c.oid, c.relreplident, c.relkind"
814  " FROM pg_catalog.pg_class c"
815  " INNER JOIN pg_catalog.pg_namespace n"
816  " ON (c.relnamespace = n.oid)"
817  " WHERE n.nspname = %s"
818  " AND c.relname = %s",
819  quote_literal_cstr(nspname),
822  lengthof(tableRow), tableRow);
823 
824  if (res->status != WALRCV_OK_TUPLES)
825  ereport(ERROR,
826  (errcode(ERRCODE_CONNECTION_FAILURE),
827  errmsg("could not fetch table info for table \"%s.%s\" from publisher: %s",
828  nspname, relname, res->err)));
829 
830  slot = MakeSingleTupleTableSlot(res->tupledesc, &TTSOpsMinimalTuple);
831  if (!tuplestore_gettupleslot(res->tuplestore, true, false, slot))
832  ereport(ERROR,
833  (errcode(ERRCODE_UNDEFINED_OBJECT),
834  errmsg("table \"%s.%s\" not found on publisher",
835  nspname, relname)));
836 
837  lrel->remoteid = DatumGetObjectId(slot_getattr(slot, 1, &isnull));
838  Assert(!isnull);
839  lrel->replident = DatumGetChar(slot_getattr(slot, 2, &isnull));
840  Assert(!isnull);
841  lrel->relkind = DatumGetChar(slot_getattr(slot, 3, &isnull));
842  Assert(!isnull);
843 
846 
847 
848  /*
849  * Get column lists for each relation.
850  *
851  * We need to do this before fetching info about column names and types,
852  * so that we can skip columns that should not be replicated.
853  */
855  {
856  WalRcvExecResult *pubres;
857  TupleTableSlot *tslot;
858  Oid attrsRow[] = {INT2VECTOROID};
859  StringInfoData pub_names;
860 
861  initStringInfo(&pub_names);
862  foreach(lc, MySubscription->publications)
863  {
864  if (foreach_current_index(lc) > 0)
865  appendStringInfoString(&pub_names, ", ");
867  }
868 
869  /*
870  * Fetch info about column lists for the relation (from all the
871  * publications).
872  */
873  resetStringInfo(&cmd);
874  appendStringInfo(&cmd,
875  "SELECT DISTINCT"
876  " (CASE WHEN (array_length(gpt.attrs, 1) = c.relnatts)"
877  " THEN NULL ELSE gpt.attrs END)"
878  " FROM pg_publication p,"
879  " LATERAL pg_get_publication_tables(p.pubname) gpt,"
880  " pg_class c"
881  " WHERE gpt.relid = %u AND c.oid = gpt.relid"
882  " AND p.pubname IN ( %s )",
883  lrel->remoteid,
884  pub_names.data);
885 
887  lengthof(attrsRow), attrsRow);
888 
889  if (pubres->status != WALRCV_OK_TUPLES)
890  ereport(ERROR,
891  (errcode(ERRCODE_CONNECTION_FAILURE),
892  errmsg("could not fetch column list info for table \"%s.%s\" from publisher: %s",
893  nspname, relname, pubres->err)));
894 
895  /*
896  * We don't support the case where the column list is different for
897  * the same table when combining publications. See comments atop
898  * fetch_table_list. So there should be only one row returned.
899  * Although we already checked this when creating the subscription, we
900  * still need to check here in case the column list was changed after
901  * creating the subscription and before the sync worker is started.
902  */
903  if (tuplestore_tuple_count(pubres->tuplestore) > 1)
904  ereport(ERROR,
905  errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
906  errmsg("cannot use different column lists for table \"%s.%s\" in different publications",
907  nspname, relname));
908 
909  /*
910  * Get the column list and build a single bitmap with the attnums.
911  *
912  * If we find a NULL value, it means all the columns should be
913  * replicated.
914  */
916  if (tuplestore_gettupleslot(pubres->tuplestore, true, false, tslot))
917  {
918  Datum cfval = slot_getattr(tslot, 1, &isnull);
919 
920  if (!isnull)
921  {
922  ArrayType *arr;
923  int nelems;
924  int16 *elems;
925 
926  arr = DatumGetArrayTypeP(cfval);
927  nelems = ARR_DIMS(arr)[0];
928  elems = (int16 *) ARR_DATA_PTR(arr);
929 
930  for (natt = 0; natt < nelems; natt++)
931  included_cols = bms_add_member(included_cols, elems[natt]);
932  }
933 
934  ExecClearTuple(tslot);
935  }
937 
938  walrcv_clear_result(pubres);
939 
940  pfree(pub_names.data);
941  }
942 
943  /*
944  * Now fetch column names and types.
945  */
946  resetStringInfo(&cmd);
947  appendStringInfo(&cmd,
948  "SELECT a.attnum,"
949  " a.attname,"
950  " a.atttypid,"
951  " a.attnum = ANY(i.indkey)"
952  " FROM pg_catalog.pg_attribute a"
953  " LEFT JOIN pg_catalog.pg_index i"
954  " ON (i.indexrelid = pg_get_replica_identity_index(%u))"
955  " WHERE a.attnum > 0::pg_catalog.int2"
956  " AND NOT a.attisdropped %s"
957  " AND a.attrelid = %u"
958  " ORDER BY a.attnum",
959  lrel->remoteid,
961  "AND a.attgenerated = ''" : ""),
962  lrel->remoteid);
964  lengthof(attrRow), attrRow);
965 
966  if (res->status != WALRCV_OK_TUPLES)
967  ereport(ERROR,
968  (errcode(ERRCODE_CONNECTION_FAILURE),
969  errmsg("could not fetch table info for table \"%s.%s\" from publisher: %s",
970  nspname, relname, res->err)));
971 
972  /* We don't know the number of rows coming, so allocate enough space. */
973  lrel->attnames = palloc0(MaxTupleAttributeNumber * sizeof(char *));
974  lrel->atttyps = palloc0(MaxTupleAttributeNumber * sizeof(Oid));
975  lrel->attkeys = NULL;
976 
977  /*
978  * Store the columns as a list of names. Ignore those that are not
979  * present in the column list, if there is one.
980  */
981  natt = 0;
982  slot = MakeSingleTupleTableSlot(res->tupledesc, &TTSOpsMinimalTuple);
983  while (tuplestore_gettupleslot(res->tuplestore, true, false, slot))
984  {
985  char *rel_colname;
987 
988  attnum = DatumGetInt16(slot_getattr(slot, 1, &isnull));
989  Assert(!isnull);
990 
991  /* If the column is not in the column list, skip it. */
992  if (included_cols != NULL && !bms_is_member(attnum, included_cols))
993  {
994  ExecClearTuple(slot);
995  continue;
996  }
997 
998  rel_colname = TextDatumGetCString(slot_getattr(slot, 2, &isnull));
999  Assert(!isnull);
1000 
1001  lrel->attnames[natt] = rel_colname;
1002  lrel->atttyps[natt] = DatumGetObjectId(slot_getattr(slot, 3, &isnull));
1003  Assert(!isnull);
1004 
1005  if (DatumGetBool(slot_getattr(slot, 4, &isnull)))
1006  lrel->attkeys = bms_add_member(lrel->attkeys, natt);
1007 
1008  /* Should never happen. */
1009  if (++natt >= MaxTupleAttributeNumber)
1010  elog(ERROR, "too many columns in remote table \"%s.%s\"",
1011  nspname, relname);
1012 
1013  ExecClearTuple(slot);
1014  }
1016 
1017  lrel->natts = natt;
1018 
1020 
1021  /*
1022  * Get relation's row filter expressions. DISTINCT avoids the same
1023  * expression of a table in multiple publications from being included
1024  * multiple times in the final expression.
1025  *
1026  * We need to copy the row even if it matches just one of the
1027  * publications, so we later combine all the quals with OR.
1028  *
1029  * For initial synchronization, row filtering can be ignored in following
1030  * cases:
1031  *
1032  * 1) one of the subscribed publications for the table hasn't specified
1033  * any row filter
1034  *
1035  * 2) one of the subscribed publications has puballtables set to true
1036  *
1037  * 3) one of the subscribed publications is declared as TABLES IN SCHEMA
1038  * that includes this relation
1039  */
1041  {
1042  StringInfoData pub_names;
1043 
1044  /* Build the pubname list. */
1045  initStringInfo(&pub_names);
1047  {
1048  char *pubname = strVal(pubstr);
1049 
1050  if (foreach_current_index(pubstr) > 0)
1051  appendStringInfoString(&pub_names, ", ");
1052 
1053  appendStringInfoString(&pub_names, quote_literal_cstr(pubname));
1054  }
1055 
1056  /* Check for row filters. */
1057  resetStringInfo(&cmd);
1058  appendStringInfo(&cmd,
1059  "SELECT DISTINCT pg_get_expr(gpt.qual, gpt.relid)"
1060  " FROM pg_publication p,"
1061  " LATERAL pg_get_publication_tables(p.pubname) gpt"
1062  " WHERE gpt.relid = %u"
1063  " AND p.pubname IN ( %s )",
1064  lrel->remoteid,
1065  pub_names.data);
1066 
1067  res = walrcv_exec(LogRepWorkerWalRcvConn, cmd.data, 1, qualRow);
1068 
1069  if (res->status != WALRCV_OK_TUPLES)
1070  ereport(ERROR,
1071  (errmsg("could not fetch table WHERE clause info for table \"%s.%s\" from publisher: %s",
1072  nspname, relname, res->err)));
1073 
1074  /*
1075  * Multiple row filter expressions for the same table will be combined
1076  * by COPY using OR. If any of the filter expressions for this table
1077  * are null, it means the whole table will be copied. In this case it
1078  * is not necessary to construct a unified row filter expression at
1079  * all.
1080  */
1081  slot = MakeSingleTupleTableSlot(res->tupledesc, &TTSOpsMinimalTuple);
1082  while (tuplestore_gettupleslot(res->tuplestore, true, false, slot))
1083  {
1084  Datum rf = slot_getattr(slot, 1, &isnull);
1085 
1086  if (!isnull)
1087  *qual = lappend(*qual, makeString(TextDatumGetCString(rf)));
1088  else
1089  {
1090  /* Ignore filters and cleanup as necessary. */
1091  if (*qual)
1092  {
1093  list_free_deep(*qual);
1094  *qual = NIL;
1095  }
1096  break;
1097  }
1098 
1099  ExecClearTuple(slot);
1100  }
1102 
1104  }
1105 
1106  pfree(cmd.data);
1107 }
#define ARR_DATA_PTR(a)
Definition: array.h:322
#define DatumGetArrayTypeP(X)
Definition: array.h:261
#define ARR_DIMS(a)
Definition: array.h:294
int16 AttrNumber
Definition: attnum.h:21
bool bms_is_member(int x, const Bitmapset *a)
Definition: bitmapset.c:510
Bitmapset * bms_add_member(Bitmapset *a, int x)
Definition: bitmapset.c:815
#define TextDatumGetCString(d)
Definition: builtins.h:98
signed short int16
Definition: c.h:493
#define lengthof(array)
Definition: c.h:788
#define elog(elevel,...)
Definition: elog.h:224
void ExecDropSingleTupleTableSlot(TupleTableSlot *slot)
Definition: execTuples.c:1341
const TupleTableSlotOps TTSOpsMinimalTuple
Definition: execTuples.c:86
TupleTableSlot * MakeSingleTupleTableSlot(TupleDesc tupdesc, const TupleTableSlotOps *tts_ops)
Definition: execTuples.c:1325
#define MaxTupleAttributeNumber
Definition: htup_details.h:34
List * lappend(List *list, void *datum)
Definition: list.c:339
void * palloc0(Size size)
Definition: mcxt.c:1346
int16 attnum
Definition: pg_attribute.h:74
NameData relname
Definition: pg_class.h:38
#define foreach_current_index(var_or_cell)
Definition: pg_list.h:403
#define foreach_node(type, var, lst)
Definition: pg_list.h:496
static bool DatumGetBool(Datum X)
Definition: postgres.h:90
uintptr_t Datum
Definition: postgres.h:64
static Oid DatumGetObjectId(Datum X)
Definition: postgres.h:242
static char DatumGetChar(Datum X)
Definition: postgres.h:112
static int16 DatumGetInt16(Datum X)
Definition: postgres.h:162
unsigned int Oid
Definition: postgres_ext.h:31
char * quote_literal_cstr(const char *rawstr)
Definition: quote.c:103
void resetStringInfo(StringInfo str)
Definition: stringinfo.c:78
Bitmapset * attkeys
Definition: logicalproto.h:115
Definition: value.h:64
Tuplestorestate * tuplestore
Definition: walreceiver.h:222
TupleDesc tupledesc
Definition: walreceiver.h:223
WalRcvExecStatus status
Definition: walreceiver.h:219
bool tuplestore_gettupleslot(Tuplestorestate *state, bool forward, bool copy, TupleTableSlot *slot)
Definition: tuplestore.c:1078
int64 tuplestore_tuple_count(Tuplestorestate *state)
Definition: tuplestore.c:546
static TupleTableSlot * ExecClearTuple(TupleTableSlot *slot)
Definition: tuptable.h:454
static Datum slot_getattr(TupleTableSlot *slot, int attnum, bool *isnull)
Definition: tuptable.h:395
@ WALRCV_OK_TUPLES
Definition: walreceiver.h:206

References appendStringInfo(), appendStringInfoString(), ARR_DATA_PTR, ARR_DIMS, Assert, LogicalRepRelation::attkeys, LogicalRepRelation::attnames, attnum, LogicalRepRelation::atttyps, bms_add_member(), bms_is_member(), StringInfoData::data, DatumGetArrayTypeP, DatumGetBool(), DatumGetChar(), DatumGetInt16(), DatumGetObjectId(), elog, ereport, WalRcvExecResult::err, errcode(), errmsg(), ERROR, ExecClearTuple(), ExecDropSingleTupleTableSlot(), foreach_current_index, foreach_node, initStringInfo(), lappend(), lengthof, lfirst, list_free_deep(), LogRepWorkerWalRcvConn, MakeSingleTupleTableSlot(), makeString(), MaxTupleAttributeNumber, MySubscription, LogicalRepRelation::natts, NIL, LogicalRepRelation::nspname, palloc0(), pfree(), Subscription::publications, quote_literal_cstr(), LogicalRepRelation::relkind, relname, LogicalRepRelation::relname, LogicalRepRelation::remoteid, LogicalRepRelation::replident, res, resetStringInfo(), slot_getattr(), WalRcvExecResult::status, strVal, TextDatumGetCString, TTSOpsMinimalTuple, WalRcvExecResult::tupledesc, WalRcvExecResult::tuplestore, tuplestore_gettupleslot(), tuplestore_tuple_count(), walrcv_clear_result(), walrcv_exec, WALRCV_OK_TUPLES, and walrcv_server_version.

Referenced by copy_table().

◆ FetchTableStates()

static bool FetchTableStates ( bool started_tx)
static

Definition at line 1572 of file tablesync.c.

1573 {
1574  static bool has_subrels = false;
1575 
1576  *started_tx = false;
1577 
1579  {
1580  MemoryContext oldctx;
1581  List *rstates;
1582  ListCell *lc;
1583  SubscriptionRelState *rstate;
1584 
1586 
1587  /* Clean the old lists. */
1590 
1591  if (!IsTransactionState())
1592  {
1594  *started_tx = true;
1595  }
1596 
1597  /* Fetch all non-ready tables. */
1598  rstates = GetSubscriptionRelations(MySubscription->oid, true);
1599 
1600  /* Allocate the tracking info in a permanent memory context. */
1602  foreach(lc, rstates)
1603  {
1604  rstate = palloc(sizeof(SubscriptionRelState));
1605  memcpy(rstate, lfirst(lc), sizeof(SubscriptionRelState));
1607  }
1608  MemoryContextSwitchTo(oldctx);
1609 
1610  /*
1611  * Does the subscription have tables?
1612  *
1613  * If there were not-READY relations found then we know it does. But
1614  * if table_states_not_ready was empty we still need to check again to
1615  * see if there are 0 tables.
1616  */
1617  has_subrels = (table_states_not_ready != NIL) ||
1619 
1620  /*
1621  * If the subscription relation cache has been invalidated since we
1622  * entered this routine, we still use and return the relations we just
1623  * finished constructing, to avoid infinite loops, but we leave the
1624  * table states marked as stale so that we'll rebuild it again on next
1625  * access. Otherwise, we mark the table states as valid.
1626  */
1629  }
1630 
1631  return has_subrels;
1632 }
MemoryContext CacheMemoryContext
Definition: mcxt.c:152
void * palloc(Size size)
Definition: mcxt.c:1316
List * GetSubscriptionRelations(Oid subid, bool not_ready)
bool HasSubscriptionRelations(Oid subid)
MemoryContextSwitchTo(old_ctx)
static SyncingTablesState table_states_validity
Definition: tablesync.c:133
bool IsTransactionState(void)
Definition: xact.c:384
void StartTransactionCommand(void)
Definition: xact.c:2995

References CacheMemoryContext, GetSubscriptionRelations(), HasSubscriptionRelations(), IsTransactionState(), lappend(), lfirst, list_free_deep(), MemoryContextSwitchTo(), MySubscription, NIL, Subscription::oid, palloc(), StartTransactionCommand(), SYNC_TABLE_STATE_REBUILD_STARTED, SYNC_TABLE_STATE_VALID, table_states_not_ready, and table_states_validity.

Referenced by AllTablesyncsReady(), and process_syncing_tables_for_apply().

◆ invalidate_syncing_table_states()

void invalidate_syncing_table_states ( Datum  arg,
int  cacheid,
uint32  hashvalue 
)

◆ LogicalRepSyncTableStart()

static char* LogicalRepSyncTableStart ( XLogRecPtr origin_startpos)
static

Definition at line 1283 of file tablesync.c.

1284 {
1285  char *slotname;
1286  char *err;
1287  char relstate;
1288  XLogRecPtr relstate_lsn;
1289  Relation rel;
1290  AclResult aclresult;
1292  char originname[NAMEDATALEN];
1293  RepOriginId originid;
1294  UserContext ucxt;
1295  bool must_use_password;
1296  bool run_as_owner;
1297 
1298  /* Check the state of the table synchronization. */
1302  &relstate_lsn);
1304 
1305  /* Is the use of a password mandatory? */
1306  must_use_password = MySubscription->passwordrequired &&
1308 
1310  MyLogicalRepWorker->relstate = relstate;
1311  MyLogicalRepWorker->relstate_lsn = relstate_lsn;
1313 
1314  /*
1315  * If synchronization is already done or no longer necessary, exit now
1316  * that we've updated shared memory state.
1317  */
1318  switch (relstate)
1319  {
1320  case SUBREL_STATE_SYNCDONE:
1321  case SUBREL_STATE_READY:
1322  case SUBREL_STATE_UNKNOWN:
1323  finish_sync_worker(); /* doesn't return */
1324  }
1325 
1326  /* Calculate the name of the tablesync slot. */
1327  slotname = (char *) palloc(NAMEDATALEN);
1330  slotname,
1331  NAMEDATALEN);
1332 
1333  /*
1334  * Here we use the slot name instead of the subscription name as the
1335  * application_name, so that it is different from the leader apply worker,
1336  * so that synchronous replication can distinguish them.
1337  */
1339  walrcv_connect(MySubscription->conninfo, true, true,
1340  must_use_password,
1341  slotname, &err);
1342  if (LogRepWorkerWalRcvConn == NULL)
1343  ereport(ERROR,
1344  (errcode(ERRCODE_CONNECTION_FAILURE),
1345  errmsg("could not connect to the publisher: %s", err)));
1346 
1347  Assert(MyLogicalRepWorker->relstate == SUBREL_STATE_INIT ||
1348  MyLogicalRepWorker->relstate == SUBREL_STATE_DATASYNC ||
1349  MyLogicalRepWorker->relstate == SUBREL_STATE_FINISHEDCOPY);
1350 
1351  /* Assign the origin tracking record name. */
1354  originname,
1355  sizeof(originname));
1356 
1357  if (MyLogicalRepWorker->relstate == SUBREL_STATE_DATASYNC)
1358  {
1359  /*
1360  * We have previously errored out before finishing the copy so the
1361  * replication slot might exist. We want to remove the slot if it
1362  * already exists and proceed.
1363  *
1364  * XXX We could also instead try to drop the slot, last time we failed
1365  * but for that, we might need to clean up the copy state as it might
1366  * be in the middle of fetching the rows. Also, if there is a network
1367  * breakdown then it wouldn't have succeeded so trying it next time
1368  * seems like a better bet.
1369  */
1371  }
1372  else if (MyLogicalRepWorker->relstate == SUBREL_STATE_FINISHEDCOPY)
1373  {
1374  /*
1375  * The COPY phase was previously done, but tablesync then crashed
1376  * before it was able to finish normally.
1377  */
1379 
1380  /*
1381  * The origin tracking name must already exist. It was created first
1382  * time this tablesync was launched.
1383  */
1384  originid = replorigin_by_name(originname, false);
1385  replorigin_session_setup(originid, 0);
1386  replorigin_session_origin = originid;
1387  *origin_startpos = replorigin_session_get_progress(false);
1388 
1390 
1391  goto copy_table_done;
1392  }
1393 
1395  MyLogicalRepWorker->relstate = SUBREL_STATE_DATASYNC;
1398 
1399  /* Update the state and make it visible to others. */
1406  pgstat_report_stat(true);
1407 
1409 
1410  /*
1411  * Use a standard write lock here. It might be better to disallow access
1412  * to the table while it's being synchronized. But we don't want to block
1413  * the main apply process from working and it has to open the relation in
1414  * RowExclusiveLock when remapping remote relation id to local one.
1415  */
1417 
1418  /*
1419  * Start a transaction in the remote node in REPEATABLE READ mode. This
1420  * ensures that both the replication slot we create (see below) and the
1421  * COPY are consistent with each other.
1422  */
1424  "BEGIN READ ONLY ISOLATION LEVEL REPEATABLE READ",
1425  0, NULL);
1426  if (res->status != WALRCV_OK_COMMAND)
1427  ereport(ERROR,
1428  (errcode(ERRCODE_CONNECTION_FAILURE),
1429  errmsg("table copy could not start transaction on publisher: %s",
1430  res->err)));
1432 
1433  /*
1434  * Create a new permanent logical decoding slot. This slot will be used
1435  * for the catchup phase after COPY is done, so tell it to use the
1436  * snapshot to make the final data consistent.
1437  */
1439  slotname, false /* permanent */ , false /* two_phase */ ,
1441  CRS_USE_SNAPSHOT, origin_startpos);
1442 
1443  /*
1444  * Setup replication origin tracking. The purpose of doing this before the
1445  * copy is to avoid doing the copy again due to any error in setting up
1446  * origin tracking.
1447  */
1448  originid = replorigin_by_name(originname, true);
1449  if (!OidIsValid(originid))
1450  {
1451  /*
1452  * Origin tracking does not exist, so create it now.
1453  *
1454  * Then advance to the LSN got from walrcv_create_slot. This is WAL
1455  * logged for the purpose of recovery. Locks are to prevent the
1456  * replication origin from vanishing while advancing.
1457  */
1458  originid = replorigin_create(originname);
1459 
1460  LockRelationOid(ReplicationOriginRelationId, RowExclusiveLock);
1461  replorigin_advance(originid, *origin_startpos, InvalidXLogRecPtr,
1462  true /* go backward */ , true /* WAL log */ );
1463  UnlockRelationOid(ReplicationOriginRelationId, RowExclusiveLock);
1464 
1465  replorigin_session_setup(originid, 0);
1466  replorigin_session_origin = originid;
1467  }
1468  else
1469  {
1470  ereport(ERROR,
1472  errmsg("replication origin \"%s\" already exists",
1473  originname)));
1474  }
1475 
1476  /*
1477  * Make sure that the copy command runs as the table owner, unless the
1478  * user has opted out of that behaviour.
1479  */
1480  run_as_owner = MySubscription->runasowner;
1481  if (!run_as_owner)
1482  SwitchToUntrustedUser(rel->rd_rel->relowner, &ucxt);
1483 
1484  /*
1485  * Check that our table sync worker has permission to insert into the
1486  * target table.
1487  */
1488  aclresult = pg_class_aclcheck(RelationGetRelid(rel), GetUserId(),
1489  ACL_INSERT);
1490  if (aclresult != ACLCHECK_OK)
1491  aclcheck_error(aclresult,
1492  get_relkind_objtype(rel->rd_rel->relkind),
1494 
1495  /*
1496  * COPY FROM does not honor RLS policies. That is not a problem for
1497  * subscriptions owned by roles with BYPASSRLS privilege (or superuser,
1498  * who has it implicitly), but other roles should not be able to
1499  * circumvent RLS. Disallow logical replication into RLS enabled
1500  * relations for such roles.
1501  */
1503  ereport(ERROR,
1504  (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
1505  errmsg("user \"%s\" cannot replicate into relation with row-level security enabled: \"%s\"",
1506  GetUserNameFromId(GetUserId(), true),
1507  RelationGetRelationName(rel))));
1508 
1509  /* Now do the initial data copy */
1511  copy_table(rel);
1513 
1514  res = walrcv_exec(LogRepWorkerWalRcvConn, "COMMIT", 0, NULL);
1515  if (res->status != WALRCV_OK_COMMAND)
1516  ereport(ERROR,
1517  (errcode(ERRCODE_CONNECTION_FAILURE),
1518  errmsg("table copy could not finish transaction on publisher: %s",
1519  res->err)));
1521 
1522  if (!run_as_owner)
1523  RestoreUserContext(&ucxt);
1524 
1525  table_close(rel, NoLock);
1526 
1527  /* Make the copy visible. */
1529 
1530  /*
1531  * Update the persisted state to indicate the COPY phase is done; make it
1532  * visible to others.
1533  */
1536  SUBREL_STATE_FINISHEDCOPY,
1538 
1540 
1541 copy_table_done:
1542 
1543  elog(DEBUG1,
1544  "LogicalRepSyncTableStart: '%s' origin_startpos lsn %X/%X",
1545  originname, LSN_FORMAT_ARGS(*origin_startpos));
1546 
1547  /*
1548  * We are done with the initial data synchronization, update the state.
1549  */
1551  MyLogicalRepWorker->relstate = SUBREL_STATE_SYNCWAIT;
1552  MyLogicalRepWorker->relstate_lsn = *origin_startpos;
1554 
1555  /*
1556  * Finally, wait until the leader apply worker tells us to catch up and
1557  * then return to let LogicalRepApplyLoop do it.
1558  */
1559  wait_for_worker_state_change(SUBREL_STATE_CATCHUP);
1560  return slotname;
1561 }
AclResult
Definition: acl.h:182
@ ACLCHECK_OK
Definition: acl.h:183
void aclcheck_error(AclResult aclerr, ObjectType objtype, const char *objectname)
Definition: aclchk.c:2688
AclResult pg_class_aclcheck(Oid table_oid, Oid roleid, AclMode mode)
Definition: aclchk.c:4079
void ReplicationOriginNameForLogicalRep(Oid suboid, Oid relid, char *originname, Size szoriginname)
Definition: worker.c:428
#define OidIsValid(objectId)
Definition: c.h:775
#define DEBUG1
Definition: elog.h:30
void err(int eval, const char *fmt,...)
Definition: err.c:43
LogicalRepWorker * MyLogicalRepWorker
Definition: launcher.c:54
void UnlockRelationOid(Oid relid, LOCKMODE lockmode)
Definition: lmgr.c:227
void LockRelationOid(Oid relid, LOCKMODE lockmode)
Definition: lmgr.c:108
#define RowExclusiveLock
Definition: lockdefs.h:38
char * GetUserNameFromId(Oid roleid, bool noerr)
Definition: miscinit.c:980
Oid GetUserId(void)
Definition: miscinit.c:514
ObjectType get_relkind_objtype(char relkind)
RepOriginId replorigin_by_name(const char *roname, bool missing_ok)
Definition: origin.c:221
RepOriginId replorigin_create(const char *roname)
Definition: origin.c:252
RepOriginId replorigin_session_origin
Definition: origin.c:155
void replorigin_advance(RepOriginId node, XLogRecPtr remote_commit, XLogRecPtr local_commit, bool go_backward, bool wal_log)
Definition: origin.c:888
void replorigin_session_setup(RepOriginId node, int acquired_by)
Definition: origin.c:1097
XLogRecPtr replorigin_session_get_progress(bool flush)
Definition: origin.c:1237
#define ACL_INSERT
Definition: parsenodes.h:76
#define NAMEDATALEN
char GetSubscriptionRelState(Oid subid, Oid relid, XLogRecPtr *sublsn)
void UpdateSubscriptionRelState(Oid subid, Oid relid, char state, XLogRecPtr sublsn)
#define InvalidOid
Definition: postgres_ext.h:36
#define RelationGetRelid(relation)
Definition: rel.h:505
int check_enable_rls(Oid relid, Oid checkAsUser, bool noError)
Definition: rls.c:52
@ RLS_ENABLED
Definition: rls.h:45
Snapshot GetTransactionSnapshot(void)
Definition: snapmgr.c:216
void PushActiveSnapshot(Snapshot snapshot)
Definition: snapmgr.c:648
void PopActiveSnapshot(void)
Definition: snapmgr.c:743
#define SpinLockRelease(lock)
Definition: spin.h:64
#define SpinLockAcquire(lock)
Definition: spin.h:62
#define ERRCODE_DUPLICATE_OBJECT
Definition: streamutil.c:32
XLogRecPtr relstate_lsn
Form_pg_class rd_rel
Definition: rel.h:111
void ReplicationSlotDropAtPubNode(WalReceiverConn *wrconn, char *slotname, bool missing_ok)
void table_close(Relation relation, LOCKMODE lockmode)
Definition: table.c:126
Relation table_open(Oid relationId, LOCKMODE lockmode)
Definition: table.c:40
static bool wait_for_worker_state_change(char expected_state)
Definition: tablesync.c:232
void ReplicationSlotNameForTablesync(Oid suboid, Oid relid, char *syncslotname, Size szslot)
Definition: tablesync.c:1267
static void copy_table(Relation rel)
Definition: tablesync.c:1115
void SwitchToUntrustedUser(Oid userid, UserContext *context)
Definition: usercontext.c:33
void RestoreUserContext(UserContext *context)
Definition: usercontext.c:87
#define walrcv_connect(conninfo, replication, logical, must_use_password, appname, err)
Definition: walreceiver.h:432
@ WALRCV_OK_COMMAND
Definition: walreceiver.h:204
#define walrcv_create_slot(conn, slotname, temporary, two_phase, failover, snapshot_action, lsn)
Definition: walreceiver.h:456
@ CRS_USE_SNAPSHOT
Definition: walsender.h:24
void CommandCounterIncrement(void)
Definition: xact.c:1097
#define LSN_FORMAT_ARGS(lsn)
Definition: xlogdefs.h:43
uint16 RepOriginId
Definition: xlogdefs.h:65
uint64 XLogRecPtr
Definition: xlogdefs.h:21
#define InvalidXLogRecPtr
Definition: xlogdefs.h:28

References ACL_INSERT, aclcheck_error(), ACLCHECK_OK, Assert, check_enable_rls(), CommandCounterIncrement(), CommitTransactionCommand(), Subscription::conninfo, copy_table(), CRS_USE_SNAPSHOT, DEBUG1, elog, ereport, err(), errcode(), ERRCODE_DUPLICATE_OBJECT, errmsg(), ERROR, Subscription::failover, get_relkind_objtype(), GetSubscriptionRelState(), GetTransactionSnapshot(), GetUserId(), GetUserNameFromId(), InvalidOid, InvalidXLogRecPtr, LockRelationOid(), LogRepWorkerWalRcvConn, LSN_FORMAT_ARGS, MyLogicalRepWorker, MySubscription, NAMEDATALEN, NoLock, Subscription::oid, OidIsValid, Subscription::ownersuperuser, palloc(), Subscription::passwordrequired, pg_class_aclcheck(), pgstat_report_stat(), PopActiveSnapshot(), PushActiveSnapshot(), RelationData::rd_rel, RelationGetRelationName, RelationGetRelid, LogicalRepWorker::relid, LogicalRepWorker::relmutex, LogicalRepWorker::relstate, LogicalRepWorker::relstate_lsn, ReplicationOriginNameForLogicalRep(), ReplicationSlotDropAtPubNode(), ReplicationSlotNameForTablesync(), replorigin_advance(), replorigin_by_name(), replorigin_create(), replorigin_session_get_progress(), replorigin_session_origin, replorigin_session_setup(), res, RestoreUserContext(), RLS_ENABLED, RowExclusiveLock, Subscription::runasowner, SpinLockAcquire, SpinLockRelease, StartTransactionCommand(), LogicalRepWorker::subid, SwitchToUntrustedUser(), table_close(), table_open(), UnlockRelationOid(), UpdateSubscriptionRelState(), wait_for_worker_state_change(), walrcv_clear_result(), walrcv_connect, walrcv_create_slot, walrcv_exec, and WALRCV_OK_COMMAND.

Referenced by start_table_sync().

◆ make_copy_attnamelist()

static List* make_copy_attnamelist ( LogicalRepRelMapEntry rel)
static

Definition at line 698 of file tablesync.c.

699 {
700  List *attnamelist = NIL;
701  int i;
702 
703  for (i = 0; i < rel->remoterel.natts; i++)
704  {
705  attnamelist = lappend(attnamelist,
706  makeString(rel->remoterel.attnames[i]));
707  }
708 
709 
710  return attnamelist;
711 }
LogicalRepRelation remoterel

References LogicalRepRelation::attnames, i, lappend(), makeString(), LogicalRepRelation::natts, NIL, and LogicalRepRelMapEntry::remoterel.

Referenced by copy_table().

◆ pg_attribute_noreturn()

static void pg_attribute_noreturn ( )
static

Definition at line 143 of file tablesync.c.

145 {
146  /*
147  * Commit any outstanding transaction. This is the usual case, unless
148  * there was nothing to do for the table.
149  */
150  if (IsTransactionState())
151  {
153  pgstat_report_stat(true);
154  }
155 
156  /* And flush all writes. */
158 
160  ereport(LOG,
161  (errmsg("logical replication table synchronization worker for subscription \"%s\", table \"%s\" has finished",
165 
166  /* Find the leader apply worker and signal it. */
168 
169  /* Stop gracefully */
170  proc_exit(0);
171 }
#define LOG
Definition: elog.h:31
void proc_exit(int code)
Definition: ipc.c:104
void logicalrep_worker_wakeup(Oid subid, Oid relid)
Definition: launcher.c:676
char * get_rel_name(Oid relid)
Definition: lsyscache.c:1928
XLogRecPtr GetXLogWriteRecPtr(void)
Definition: xlog.c:9371
void XLogFlush(XLogRecPtr record)
Definition: xlog.c:2791

References CommitTransactionCommand(), ereport, errmsg(), get_rel_name(), GetXLogWriteRecPtr(), InvalidOid, IsTransactionState(), LOG, logicalrep_worker_wakeup(), MyLogicalRepWorker, MySubscription, Subscription::name, pgstat_report_stat(), proc_exit(), LogicalRepWorker::relid, StartTransactionCommand(), LogicalRepWorker::subid, and XLogFlush().

◆ process_syncing_tables()

void process_syncing_tables ( XLogRecPtr  current_lsn)

Definition at line 667 of file tablesync.c.

668 {
669  switch (MyLogicalRepWorker->type)
670  {
672 
673  /*
674  * Skip for parallel apply workers because they only operate on
675  * tables that are in a READY state. See pa_can_start() and
676  * should_apply_changes_for_rel().
677  */
678  break;
679 
681  process_syncing_tables_for_sync(current_lsn);
682  break;
683 
684  case WORKERTYPE_APPLY:
686  break;
687 
688  case WORKERTYPE_UNKNOWN:
689  /* Should never happen. */
690  elog(ERROR, "Unknown worker type");
691  }
692 }
LogicalRepWorkerType type
static void process_syncing_tables_for_apply(XLogRecPtr current_lsn)
Definition: tablesync.c:418
static void process_syncing_tables_for_sync(XLogRecPtr current_lsn)
Definition: tablesync.c:295
@ WORKERTYPE_TABLESYNC
@ WORKERTYPE_UNKNOWN
@ WORKERTYPE_PARALLEL_APPLY
@ WORKERTYPE_APPLY

References elog, ERROR, MyLogicalRepWorker, process_syncing_tables_for_apply(), process_syncing_tables_for_sync(), LogicalRepWorker::type, WORKERTYPE_APPLY, WORKERTYPE_PARALLEL_APPLY, WORKERTYPE_TABLESYNC, and WORKERTYPE_UNKNOWN.

Referenced by apply_handle_commit(), apply_handle_commit_prepared(), apply_handle_prepare(), apply_handle_rollback_prepared(), apply_handle_stream_commit(), apply_handle_stream_prepare(), and LogicalRepApplyLoop().

◆ process_syncing_tables_for_apply()

static void process_syncing_tables_for_apply ( XLogRecPtr  current_lsn)
static

Definition at line 418 of file tablesync.c.

419 {
420  struct tablesync_start_time_mapping
421  {
422  Oid relid;
423  TimestampTz last_start_time;
424  };
425  static HTAB *last_start_times = NULL;
426  ListCell *lc;
427  bool started_tx = false;
428  bool should_exit = false;
429 
431 
432  /* We need up-to-date sync state info for subscription tables here. */
433  FetchTableStates(&started_tx);
434 
435  /*
436  * Prepare a hash table for tracking last start times of workers, to avoid
437  * immediate restarts. We don't need it if there are no tables that need
438  * syncing.
439  */
441  {
442  HASHCTL ctl;
443 
444  ctl.keysize = sizeof(Oid);
445  ctl.entrysize = sizeof(struct tablesync_start_time_mapping);
446  last_start_times = hash_create("Logical replication table sync worker start times",
447  256, &ctl, HASH_ELEM | HASH_BLOBS);
448  }
449 
450  /*
451  * Clean up the hash table when we're done with all tables (just to
452  * release the bit of memory).
453  */
455  {
457  last_start_times = NULL;
458  }
459 
460  /*
461  * Process all tables that are being synchronized.
462  */
463  foreach(lc, table_states_not_ready)
464  {
466 
467  if (rstate->state == SUBREL_STATE_SYNCDONE)
468  {
469  /*
470  * Apply has caught up to the position where the table sync has
471  * finished. Mark the table as ready so that the apply will just
472  * continue to replicate it normally.
473  */
474  if (current_lsn >= rstate->lsn)
475  {
476  char originname[NAMEDATALEN];
477 
478  rstate->state = SUBREL_STATE_READY;
479  rstate->lsn = current_lsn;
480  if (!started_tx)
481  {
483  started_tx = true;
484  }
485 
486  /*
487  * Remove the tablesync origin tracking if exists.
488  *
489  * There is a chance that the user is concurrently performing
490  * refresh for the subscription where we remove the table
491  * state and its origin or the tablesync worker would have
492  * already removed this origin. We can't rely on tablesync
493  * worker to remove the origin tracking as if there is any
494  * error while dropping we won't restart it to drop the
495  * origin. So passing missing_ok = true.
496  */
498  rstate->relid,
499  originname,
500  sizeof(originname));
501  replorigin_drop_by_name(originname, true, false);
502 
503  /*
504  * Update the state to READY only after the origin cleanup.
505  */
507  rstate->relid, rstate->state,
508  rstate->lsn);
509  }
510  }
511  else
512  {
513  LogicalRepWorker *syncworker;
514 
515  /*
516  * Look for a sync worker for this relation.
517  */
518  LWLockAcquire(LogicalRepWorkerLock, LW_SHARED);
519 
521  rstate->relid, false);
522 
523  if (syncworker)
524  {
525  /* Found one, update our copy of its state */
526  SpinLockAcquire(&syncworker->relmutex);
527  rstate->state = syncworker->relstate;
528  rstate->lsn = syncworker->relstate_lsn;
529  if (rstate->state == SUBREL_STATE_SYNCWAIT)
530  {
531  /*
532  * Sync worker is waiting for apply. Tell sync worker it
533  * can catchup now.
534  */
535  syncworker->relstate = SUBREL_STATE_CATCHUP;
536  syncworker->relstate_lsn =
537  Max(syncworker->relstate_lsn, current_lsn);
538  }
539  SpinLockRelease(&syncworker->relmutex);
540 
541  /* If we told worker to catch up, wait for it. */
542  if (rstate->state == SUBREL_STATE_SYNCWAIT)
543  {
544  /* Signal the sync worker, as it may be waiting for us. */
545  if (syncworker->proc)
546  logicalrep_worker_wakeup_ptr(syncworker);
547 
548  /* Now safe to release the LWLock */
549  LWLockRelease(LogicalRepWorkerLock);
550 
551  if (started_tx)
552  {
553  /*
554  * We must commit the existing transaction to release
555  * the existing locks before entering a busy loop.
556  * This is required to avoid any undetected deadlocks
557  * due to any existing lock as deadlock detector won't
558  * be able to detect the waits on the latch.
559  */
561  pgstat_report_stat(false);
562  }
563 
564  /*
565  * Enter busy loop and wait for synchronization worker to
566  * reach expected state (or die trying).
567  */
569  started_tx = true;
570 
572  SUBREL_STATE_SYNCDONE);
573  }
574  else
575  LWLockRelease(LogicalRepWorkerLock);
576  }
577  else
578  {
579  /*
580  * If there is no sync worker for this table yet, count
581  * running sync workers for this subscription, while we have
582  * the lock.
583  */
584  int nsyncworkers =
586 
587  /* Now safe to release the LWLock */
588  LWLockRelease(LogicalRepWorkerLock);
589 
590  /*
591  * If there are free sync worker slot(s), start a new sync
592  * worker for the table.
593  */
594  if (nsyncworkers < max_sync_workers_per_subscription)
595  {
597  struct tablesync_start_time_mapping *hentry;
598  bool found;
599 
600  hentry = hash_search(last_start_times, &rstate->relid,
601  HASH_ENTER, &found);
602 
603  if (!found ||
604  TimestampDifferenceExceeds(hentry->last_start_time, now,
606  {
612  rstate->relid,
614  hentry->last_start_time = now;
615  }
616  }
617  }
618  }
619  }
620 
621  if (started_tx)
622  {
623  /*
624  * Even when the two_phase mode is requested by the user, it remains
625  * as 'pending' until all tablesyncs have reached READY state.
626  *
627  * When this happens, we restart the apply worker and (if the
628  * conditions are still ok) then the two_phase tri-state will become
629  * 'enabled' at that time.
630  *
631  * Note: If the subscription has no tables then leave the state as
632  * PENDING, which allows ALTER SUBSCRIPTION ... REFRESH PUBLICATION to
633  * work.
634  */
636  {
637  CommandCounterIncrement(); /* make updates visible */
638  if (AllTablesyncsReady())
639  {
640  ereport(LOG,
641  (errmsg("logical replication apply worker for subscription \"%s\" will restart so that two_phase can be enabled",
642  MySubscription->name)));
643  should_exit = true;
644  }
645  }
646 
648  pgstat_report_stat(true);
649  }
650 
651  if (should_exit)
652  {
653  /*
654  * Reset the last-start time for this worker so that the launcher will
655  * restart it without waiting for wal_retrieve_retry_interval.
656  */
658 
659  proc_exit(0);
660  }
661 }
bool TimestampDifferenceExceeds(TimestampTz start_time, TimestampTz stop_time, int msec)
Definition: timestamp.c:1790
TimestampTz GetCurrentTimestamp(void)
Definition: timestamp.c:1654
Datum now(PG_FUNCTION_ARGS)
Definition: timestamp.c:1618
#define Max(x, y)
Definition: c.h:998
int64 TimestampTz
Definition: timestamp.h:39
#define DSM_HANDLE_INVALID
Definition: dsm_impl.h:58
void hash_destroy(HTAB *hashp)
Definition: dynahash.c:865
void * hash_search(HTAB *hashp, const void *keyPtr, HASHACTION action, bool *foundPtr)
Definition: dynahash.c:955
HTAB * hash_create(const char *tabname, long nelem, const HASHCTL *info, int flags)
Definition: dynahash.c:352
@ HASH_ENTER
Definition: hsearch.h:114
#define HASH_ELEM
Definition: hsearch.h:95
#define HASH_BLOBS
Definition: hsearch.h:97
bool logicalrep_worker_launch(LogicalRepWorkerType wtype, Oid dbid, Oid subid, const char *subname, Oid userid, Oid relid, dsm_handle subworker_dsm)
Definition: launcher.c:300
LogicalRepWorker * logicalrep_worker_find(Oid subid, Oid relid, bool only_running)
Definition: launcher.c:243
void logicalrep_worker_wakeup_ptr(LogicalRepWorker *worker)
Definition: launcher.c:696
static dshash_table * last_start_times
Definition: launcher.c:89
int max_sync_workers_per_subscription
Definition: launcher.c:51
int logicalrep_sync_worker_count(Oid subid)
Definition: launcher.c:848
void ApplyLauncherForgetWorkerStartTime(Oid subid)
Definition: launcher.c:1075
bool LWLockAcquire(LWLock *lock, LWLockMode mode)
Definition: lwlock.c:1170
void LWLockRelease(LWLock *lock)
Definition: lwlock.c:1783
@ LW_SHARED
Definition: lwlock.h:115
void replorigin_drop_by_name(const char *name, bool missing_ok, bool nowait)
Definition: origin.c:411
#define LOGICALREP_TWOPHASE_STATE_PENDING
tree ctl
Definition: radixtree.h:1851
Definition: dynahash.c:220
bool AllTablesyncsReady(void)
Definition: tablesync.c:1731
static bool wait_for_relation_state_change(Oid relid, char expected_state)
Definition: tablesync.c:184
int wal_retrieve_retry_interval
Definition: xlog.c:134

References AllTablesyncsReady(), ApplyLauncherForgetWorkerStartTime(), Assert, CommandCounterIncrement(), CommitTransactionCommand(), ctl, LogicalRepWorker::dbid, DSM_HANDLE_INVALID, ereport, errmsg(), FetchTableStates(), GetCurrentTimestamp(), HASH_BLOBS, hash_create(), hash_destroy(), HASH_ELEM, HASH_ENTER, hash_search(), IsTransactionState(), last_start_times, lfirst, LOG, logicalrep_sync_worker_count(), LOGICALREP_TWOPHASE_STATE_PENDING, logicalrep_worker_find(), logicalrep_worker_launch(), logicalrep_worker_wakeup_ptr(), SubscriptionRelState::lsn, LW_SHARED, LWLockAcquire(), LWLockRelease(), Max, max_sync_workers_per_subscription, MyLogicalRepWorker, MySubscription, Subscription::name, NAMEDATALEN, NIL, now(), Subscription::oid, pgstat_report_stat(), LogicalRepWorker::proc, proc_exit(), SubscriptionRelState::relid, LogicalRepWorker::relmutex, LogicalRepWorker::relstate, LogicalRepWorker::relstate_lsn, ReplicationOriginNameForLogicalRep(), replorigin_drop_by_name(), SpinLockAcquire, SpinLockRelease, StartTransactionCommand(), SubscriptionRelState::state, LogicalRepWorker::subid, table_states_not_ready, TimestampDifferenceExceeds(), Subscription::twophasestate, UpdateSubscriptionRelState(), LogicalRepWorker::userid, wait_for_relation_state_change(), wal_retrieve_retry_interval, and WORKERTYPE_TABLESYNC.

Referenced by process_syncing_tables().

◆ process_syncing_tables_for_sync()

static void process_syncing_tables_for_sync ( XLogRecPtr  current_lsn)
static

Definition at line 295 of file tablesync.c.

296 {
298 
299  if (MyLogicalRepWorker->relstate == SUBREL_STATE_CATCHUP &&
300  current_lsn >= MyLogicalRepWorker->relstate_lsn)
301  {
302  TimeLineID tli;
303  char syncslotname[NAMEDATALEN] = {0};
304  char originname[NAMEDATALEN] = {0};
305 
306  MyLogicalRepWorker->relstate = SUBREL_STATE_SYNCDONE;
307  MyLogicalRepWorker->relstate_lsn = current_lsn;
308 
310 
311  /*
312  * UpdateSubscriptionRelState must be called within a transaction.
313  */
314  if (!IsTransactionState())
316 
321 
322  /*
323  * End streaming so that LogRepWorkerWalRcvConn can be used to drop
324  * the slot.
325  */
327 
328  /*
329  * Cleanup the tablesync slot.
330  *
331  * This has to be done after updating the state because otherwise if
332  * there is an error while doing the database operations we won't be
333  * able to rollback dropped slot.
334  */
337  syncslotname,
338  sizeof(syncslotname));
339 
340  /*
341  * It is important to give an error if we are unable to drop the slot,
342  * otherwise, it won't be dropped till the corresponding subscription
343  * is dropped. So passing missing_ok = false.
344  */
346 
348  pgstat_report_stat(false);
349 
350  /*
351  * Start a new transaction to clean up the tablesync origin tracking.
352  * This transaction will be ended within the finish_sync_worker().
353  * Now, even, if we fail to remove this here, the apply worker will
354  * ensure to clean it up afterward.
355  *
356  * We need to do this after the table state is set to SYNCDONE.
357  * Otherwise, if an error occurs while performing the database
358  * operation, the worker will be restarted and the in-memory state of
359  * replication progress (remote_lsn) won't be rolled-back which would
360  * have been cleared before restart. So, the restarted worker will use
361  * invalid replication progress state resulting in replay of
362  * transactions that have already been applied.
363  */
365 
368  originname,
369  sizeof(originname));
370 
371  /*
372  * Resetting the origin session removes the ownership of the slot.
373  * This is needed to allow the origin to be dropped.
374  */
379 
380  /*
381  * Drop the tablesync's origin tracking if exists.
382  *
383  * There is a chance that the user is concurrently performing refresh
384  * for the subscription where we remove the table state and its origin
385  * or the apply worker would have removed this origin. So passing
386  * missing_ok = true.
387  */
388  replorigin_drop_by_name(originname, true, false);
389 
390  finish_sync_worker();
391  }
392  else
394 }
TimestampTz replorigin_session_origin_timestamp
Definition: origin.c:157
void replorigin_session_reset(void)
Definition: origin.c:1190
XLogRecPtr replorigin_session_origin_lsn
Definition: origin.c:156
#define InvalidRepOriginId
Definition: origin.h:33
#define walrcv_endstreaming(conn, next_tli)
Definition: walreceiver.h:450
uint32 TimeLineID
Definition: xlogdefs.h:59

References CommitTransactionCommand(), InvalidRepOriginId, InvalidXLogRecPtr, IsTransactionState(), LogRepWorkerWalRcvConn, MyLogicalRepWorker, NAMEDATALEN, pgstat_report_stat(), LogicalRepWorker::relid, LogicalRepWorker::relmutex, LogicalRepWorker::relstate, LogicalRepWorker::relstate_lsn, ReplicationOriginNameForLogicalRep(), ReplicationSlotDropAtPubNode(), ReplicationSlotNameForTablesync(), replorigin_drop_by_name(), replorigin_session_origin, replorigin_session_origin_lsn, replorigin_session_origin_timestamp, replorigin_session_reset(), SpinLockAcquire, SpinLockRelease, StartTransactionCommand(), LogicalRepWorker::subid, UpdateSubscriptionRelState(), and walrcv_endstreaming.

Referenced by process_syncing_tables().

◆ ReplicationSlotNameForTablesync()

void ReplicationSlotNameForTablesync ( Oid  suboid,
Oid  relid,
char *  syncslotname,
Size  szslot 
)

Definition at line 1267 of file tablesync.c.

1269 {
1270  snprintf(syncslotname, szslot, "pg_%u_sync_%u_" UINT64_FORMAT, suboid,
1271  relid, GetSystemIdentifier());
1272 }
#define UINT64_FORMAT
Definition: c.h:549
#define snprintf
Definition: port.h:238
uint64 GetSystemIdentifier(void)
Definition: xlog.c:4535

References GetSystemIdentifier(), snprintf, and UINT64_FORMAT.

Referenced by AlterSubscription_refresh(), DropSubscription(), LogicalRepSyncTableStart(), process_syncing_tables_for_sync(), and ReportSlotConnectionError().

◆ run_tablesync_worker()

static void run_tablesync_worker ( )
static

Definition at line 1685 of file tablesync.c.

1686 {
1687  char originname[NAMEDATALEN];
1688  XLogRecPtr origin_startpos = InvalidXLogRecPtr;
1689  char *slotname = NULL;
1691 
1692  start_table_sync(&origin_startpos, &slotname);
1693 
1696  originname,
1697  sizeof(originname));
1698 
1699  set_apply_error_context_origin(originname);
1700 
1701  set_stream_options(&options, slotname, &origin_startpos);
1702 
1704 
1705  /* Apply the changes till we catchup with the apply worker. */
1706  start_apply(origin_startpos);
1707 }
void set_stream_options(WalRcvStreamOptions *options, char *slotname, XLogRecPtr *origin_startpos)
Definition: worker.c:4338
void start_apply(XLogRecPtr origin_startpos)
Definition: worker.c:4425
void set_apply_error_context_origin(char *originname)
Definition: worker.c:5035
static char ** options
static void start_table_sync(XLogRecPtr *origin_startpos, char **slotname)
Definition: tablesync.c:1643
#define walrcv_startstreaming(conn, options)
Definition: walreceiver.h:448

References InvalidXLogRecPtr, LogRepWorkerWalRcvConn, MyLogicalRepWorker, MySubscription, NAMEDATALEN, Subscription::oid, options, LogicalRepWorker::relid, ReplicationOriginNameForLogicalRep(), set_apply_error_context_origin(), set_stream_options(), start_apply(), start_table_sync(), and walrcv_startstreaming.

Referenced by TablesyncWorkerMain().

◆ start_table_sync()

static void start_table_sync ( XLogRecPtr origin_startpos,
char **  slotname 
)
static

Definition at line 1643 of file tablesync.c.

1644 {
1645  char *sync_slotname = NULL;
1646 
1648 
1649  PG_TRY();
1650  {
1651  /* Call initial sync. */
1652  sync_slotname = LogicalRepSyncTableStart(origin_startpos);
1653  }
1654  PG_CATCH();
1655  {
1658  else
1659  {
1660  /*
1661  * Report the worker failed during table synchronization. Abort
1662  * the current transaction so that the stats message is sent in an
1663  * idle state.
1664  */
1667 
1668  PG_RE_THROW();
1669  }
1670  }
1671  PG_END_TRY();
1672 
1673  /* allocate slot name in long-lived context */
1674  *slotname = MemoryContextStrdup(ApplyContext, sync_slotname);
1675  pfree(sync_slotname);
1676 }
void DisableSubscriptionAndExit(void)
Definition: worker.c:4705
MemoryContext ApplyContext
Definition: worker.c:291
#define PG_RE_THROW()
Definition: elog.h:411
#define PG_TRY(...)
Definition: elog.h:370
#define PG_END_TRY(...)
Definition: elog.h:395
#define PG_CATCH(...)
Definition: elog.h:380
char * MemoryContextStrdup(MemoryContext context, const char *string)
Definition: mcxt.c:1682
void pgstat_report_subscription_error(Oid subid, bool is_apply_error)
static char * LogicalRepSyncTableStart(XLogRecPtr *origin_startpos)
Definition: tablesync.c:1283
static bool am_tablesync_worker(void)
void AbortOutOfAnyTransaction(void)
Definition: xact.c:4811

References AbortOutOfAnyTransaction(), am_tablesync_worker(), ApplyContext, Assert, Subscription::disableonerr, DisableSubscriptionAndExit(), LogicalRepSyncTableStart(), MemoryContextStrdup(), MySubscription, Subscription::oid, pfree(), PG_CATCH, PG_END_TRY, PG_RE_THROW, PG_TRY, and pgstat_report_subscription_error().

Referenced by run_tablesync_worker().

◆ TablesyncWorkerMain()

void TablesyncWorkerMain ( Datum  main_arg)

Definition at line 1711 of file tablesync.c.

1712 {
1713  int worker_slot = DatumGetInt32(main_arg);
1714 
1715  SetupApplyOrSyncWorker(worker_slot);
1716 
1718 
1719  finish_sync_worker();
1720 }
void SetupApplyOrSyncWorker(int worker_slot)
Definition: worker.c:4644
static int32 DatumGetInt32(Datum X)
Definition: postgres.h:202
static void run_tablesync_worker()
Definition: tablesync.c:1685

References DatumGetInt32(), run_tablesync_worker(), and SetupApplyOrSyncWorker().

◆ UpdateTwoPhaseState()

void UpdateTwoPhaseState ( Oid  suboid,
char  new_state 
)

Definition at line 1756 of file tablesync.c.

1757 {
1758  Relation rel;
1759  HeapTuple tup;
1760  bool nulls[Natts_pg_subscription];
1761  bool replaces[Natts_pg_subscription];
1762  Datum values[Natts_pg_subscription];
1763 
1765  new_state == LOGICALREP_TWOPHASE_STATE_PENDING ||
1766  new_state == LOGICALREP_TWOPHASE_STATE_ENABLED);
1767 
1768  rel = table_open(SubscriptionRelationId, RowExclusiveLock);
1769  tup = SearchSysCacheCopy1(SUBSCRIPTIONOID, ObjectIdGetDatum(suboid));
1770  if (!HeapTupleIsValid(tup))
1771  elog(ERROR,
1772  "cache lookup failed for subscription oid %u",
1773  suboid);
1774 
1775  /* Form a new tuple. */
1776  memset(values, 0, sizeof(values));
1777  memset(nulls, false, sizeof(nulls));
1778  memset(replaces, false, sizeof(replaces));
1779 
1780  /* And update/set two_phase state */
1781  values[Anum_pg_subscription_subtwophasestate - 1] = CharGetDatum(new_state);
1782  replaces[Anum_pg_subscription_subtwophasestate - 1] = true;
1783 
1784  tup = heap_modify_tuple(tup, RelationGetDescr(rel),
1785  values, nulls, replaces);
1786  CatalogTupleUpdate(rel, &tup->t_self, tup);
1787 
1788  heap_freetuple(tup);
1790 }
static Datum values[MAXATTR]
Definition: bootstrap.c:152
HeapTuple heap_modify_tuple(HeapTuple tuple, TupleDesc tupleDesc, const Datum *replValues, const bool *replIsnull, const bool *doReplace)
Definition: heaptuple.c:1209
void heap_freetuple(HeapTuple htup)
Definition: heaptuple.c:1434
#define HeapTupleIsValid(tuple)
Definition: htup.h:78
void CatalogTupleUpdate(Relation heapRel, ItemPointer otid, HeapTuple tup)
Definition: indexing.c:313
#define LOGICALREP_TWOPHASE_STATE_DISABLED
#define LOGICALREP_TWOPHASE_STATE_ENABLED
static Datum ObjectIdGetDatum(Oid X)
Definition: postgres.h:252
static Datum CharGetDatum(char X)
Definition: postgres.h:122
#define RelationGetDescr(relation)
Definition: rel.h:531
ItemPointerData t_self
Definition: htup.h:65
#define SearchSysCacheCopy1(cacheId, key1)
Definition: syscache.h:86

References Assert, CatalogTupleUpdate(), CharGetDatum(), elog, ERROR, heap_freetuple(), heap_modify_tuple(), HeapTupleIsValid, LOGICALREP_TWOPHASE_STATE_DISABLED, LOGICALREP_TWOPHASE_STATE_ENABLED, LOGICALREP_TWOPHASE_STATE_PENDING, ObjectIdGetDatum(), RelationGetDescr, RowExclusiveLock, SearchSysCacheCopy1, HeapTupleData::t_self, table_close(), table_open(), and values.

Referenced by CreateSubscription(), and run_apply_worker().

◆ wait_for_relation_state_change()

static bool wait_for_relation_state_change ( Oid  relid,
char  expected_state 
)
static

Definition at line 184 of file tablesync.c.

185 {
186  char state;
187 
188  for (;;)
189  {
190  LogicalRepWorker *worker;
191  XLogRecPtr statelsn;
192 
194 
197  relid, &statelsn);
198 
199  if (state == SUBREL_STATE_UNKNOWN)
200  break;
201 
202  if (state == expected_state)
203  return true;
204 
205  /* Check if the sync worker is still running and bail if not. */
206  LWLockAcquire(LogicalRepWorkerLock, LW_SHARED);
208  false);
209  LWLockRelease(LogicalRepWorkerLock);
210  if (!worker)
211  break;
212 
213  (void) WaitLatch(MyLatch,
215  1000L, WAIT_EVENT_LOGICAL_SYNC_STATE_CHANGE);
216 
218  }
219 
220  return false;
221 }
int WaitLatch(Latch *latch, int wakeEvents, long timeout, uint32 wait_event_info)
Definition: latch.c:517
void InvalidateCatalogSnapshot(void)
Definition: snapmgr.c:422
Definition: regguts.h:323

References CHECK_FOR_INTERRUPTS, GetSubscriptionRelState(), InvalidateCatalogSnapshot(), logicalrep_worker_find(), LW_SHARED, LWLockAcquire(), LWLockRelease(), MyLatch, MyLogicalRepWorker, ResetLatch(), LogicalRepWorker::subid, WaitLatch(), WL_EXIT_ON_PM_DEATH, WL_LATCH_SET, and WL_TIMEOUT.

Referenced by process_syncing_tables_for_apply().

◆ wait_for_worker_state_change()

static bool wait_for_worker_state_change ( char  expected_state)
static

Definition at line 232 of file tablesync.c.

233 {
234  int rc;
235 
236  for (;;)
237  {
238  LogicalRepWorker *worker;
239 
241 
242  /*
243  * Done if already in correct state. (We assume this fetch is atomic
244  * enough to not give a misleading answer if we do it with no lock.)
245  */
246  if (MyLogicalRepWorker->relstate == expected_state)
247  return true;
248 
249  /*
250  * Bail out if the apply worker has died, else signal it we're
251  * waiting.
252  */
253  LWLockAcquire(LogicalRepWorkerLock, LW_SHARED);
255  InvalidOid, false);
256  if (worker && worker->proc)
258  LWLockRelease(LogicalRepWorkerLock);
259  if (!worker)
260  break;
261 
262  /*
263  * Wait. We expect to get a latch signal back from the apply worker,
264  * but use a timeout in case it dies without sending one.
265  */
266  rc = WaitLatch(MyLatch,
268  1000L, WAIT_EVENT_LOGICAL_SYNC_STATE_CHANGE);
269 
270  if (rc & WL_LATCH_SET)
272  }
273 
274  return false;
275 }

References CHECK_FOR_INTERRUPTS, InvalidOid, logicalrep_worker_find(), logicalrep_worker_wakeup_ptr(), LW_SHARED, LWLockAcquire(), LWLockRelease(), MyLatch, MyLogicalRepWorker, LogicalRepWorker::proc, LogicalRepWorker::relstate, ResetLatch(), LogicalRepWorker::subid, WaitLatch(), WL_EXIT_ON_PM_DEATH, WL_LATCH_SET, and WL_TIMEOUT.

Referenced by LogicalRepSyncTableStart().

Variable Documentation

◆ copybuf

◆ table_states_not_ready

List* table_states_not_ready = NIL
static

◆ table_states_validity

SyncingTablesState table_states_validity = SYNC_TABLE_STATE_NEEDS_REBUILD
static

Definition at line 133 of file tablesync.c.

Referenced by FetchTableStates(), and invalidate_syncing_table_states().