PostgreSQL Source Code  git master
worker_internal.h
Go to the documentation of this file.
1 /*-------------------------------------------------------------------------
2  *
3  * worker_internal.h
4  * Internal headers shared by logical replication workers.
5  *
6  * Portions Copyright (c) 2016-2024, PostgreSQL Global Development Group
7  *
8  * src/include/replication/worker_internal.h
9  *
10  *-------------------------------------------------------------------------
11  */
12 #ifndef WORKER_INTERNAL_H
13 #define WORKER_INTERNAL_H
14 
15 #include "access/xlogdefs.h"
17 #include "datatype/timestamp.h"
18 #include "miscadmin.h"
21 #include "storage/buffile.h"
22 #include "storage/fileset.h"
23 #include "storage/lock.h"
24 #include "storage/shm_mq.h"
25 #include "storage/shm_toc.h"
26 #include "storage/spin.h"
27 
28 /* Different types of worker */
30 {
36 
37 typedef struct LogicalRepWorker
38 {
39  /* What type of worker is this? */
41 
42  /* Time at which this worker was launched. */
44 
45  /* Indicates if this slot is used or free. */
46  bool in_use;
47 
48  /* Increased every time the slot is taken by new worker. */
50 
51  /* Pointer to proc array. NULL if not running. */
53 
54  /* Database id to connect to. */
56 
57  /* User to use for connection (will be same as owner of subscription). */
59 
60  /* Subscription id for the worker. */
62 
63  /* Used for initial table synchronization. */
65  char relstate;
68 
69  /*
70  * Used to create the changes and subxact files for the streaming
71  * transactions. Upon the arrival of the first streaming transaction or
72  * when the first-time leader apply worker times out while sending changes
73  * to the parallel apply worker, the fileset will be initialized, and it
74  * will be deleted when the worker exits. Under this, separate buffiles
75  * would be created for each transaction which will be deleted after the
76  * transaction is finished.
77  */
79 
80  /*
81  * PID of leader apply worker if this slot is used for a parallel apply
82  * worker, InvalidPid otherwise.
83  */
84  pid_t leader_pid;
85 
86  /* Indicates whether apply can be performed in parallel. */
88 
89  /* Stats. */
96 
97 /*
98  * State of the transaction in parallel apply worker.
99  *
100  * The enum values must have the same order as the transaction state
101  * transitions.
102  */
103 typedef enum ParallelTransState
104 {
109 
110 /*
111  * State of fileset used to communicate changes from leader to parallel
112  * apply worker.
113  *
114  * FS_EMPTY indicates an initial state where the leader doesn't need to use
115  * the file to communicate with the parallel apply worker.
116  *
117  * FS_SERIALIZE_IN_PROGRESS indicates that the leader is serializing changes
118  * to the file.
119  *
120  * FS_SERIALIZE_DONE indicates that the leader has serialized all changes to
121  * the file.
122  *
123  * FS_READY indicates that it is now ok for a parallel apply worker to
124  * read the file.
125  */
127 {
133 
134 /*
135  * Struct for sharing information between leader apply worker and parallel
136  * apply workers.
137  */
139 {
141 
143 
144  /*
145  * State used to ensure commit ordering.
146  *
147  * The parallel apply worker will set it to PARALLEL_TRANS_FINISHED after
148  * handling the transaction finish commands while the apply leader will
149  * wait for it to become PARALLEL_TRANS_FINISHED before proceeding in
150  * transaction finish commands (e.g. STREAM_COMMIT/STREAM_PREPARE/
151  * STREAM_ABORT).
152  */
154 
155  /* Information from the corresponding LogicalRepWorker slot. */
158 
159  /*
160  * Indicates whether there are pending streaming blocks in the queue. The
161  * parallel apply worker will check it before starting to wait.
162  */
164 
165  /*
166  * XactLastCommitEnd from the parallel apply worker. This is required by
167  * the leader worker so it can update the lsn_mappings.
168  */
170 
171  /*
172  * After entering PARTIAL_SERIALIZE mode, the leader apply worker will
173  * serialize changes to the file, and share the fileset with the parallel
174  * apply worker when processing the transaction finish command. Then the
175  * parallel apply worker will apply all the spooled messages.
176  *
177  * FileSet is used here instead of SharedFileSet because we need it to
178  * survive after releasing the shared memory so that the leader apply
179  * worker can re-use the same fileset for the next streaming transaction.
180  */
184 
185 /*
186  * Information which is used to manage the parallel apply worker.
187  */
189 {
190  /*
191  * This queue is used to send changes from the leader apply worker to the
192  * parallel apply worker.
193  */
195 
196  /*
197  * This queue is used to transfer error messages from the parallel apply
198  * worker to the leader apply worker.
199  */
201 
203 
204  /*
205  * Indicates whether the leader apply worker needs to serialize the
206  * remaining changes to a file due to timeout when attempting to send data
207  * to the parallel apply worker via shared memory.
208  */
210 
211  /*
212  * True if the worker is being used to process a parallel apply
213  * transaction. False indicates this worker is available for re-use.
214  */
215  bool in_use;
216 
219 
220 /* Main memory context for apply worker. Permanent during worker lifetime. */
222 
224 
226 
228 
229 /* libpqreceiver connection */
231 
232 /* Worker and subscription objects. */
235 
237 
239 
240 extern void logicalrep_worker_attach(int slot);
241 extern LogicalRepWorker *logicalrep_worker_find(Oid subid, Oid relid,
242  bool only_running);
243 extern List *logicalrep_workers_find(Oid subid, bool only_running);
245  Oid dbid, Oid subid, const char *subname,
246  Oid userid, Oid relid,
247  dsm_handle subworker_dsm);
248 extern void logicalrep_worker_stop(Oid subid, Oid relid);
250 extern void logicalrep_worker_wakeup(Oid subid, Oid relid);
252 
253 extern int logicalrep_sync_worker_count(Oid subid);
254 
255 extern void ReplicationOriginNameForLogicalRep(Oid suboid, Oid relid,
256  char *originname, Size szoriginname);
257 
258 extern bool AllTablesyncsReady(void);
259 extern void UpdateTwoPhaseState(Oid suboid, char new_state);
260 
261 extern void process_syncing_tables(XLogRecPtr current_lsn);
262 extern void invalidate_syncing_table_states(Datum arg, int cacheid,
263  uint32 hashvalue);
264 
265 extern void stream_start_internal(TransactionId xid, bool first_segment);
266 extern void stream_stop_internal(TransactionId xid);
267 
268 /* Common streaming function to apply all the spooled messages */
269 extern void apply_spooled_messages(FileSet *stream_fileset, TransactionId xid,
270  XLogRecPtr lsn);
271 
272 extern void apply_dispatch(StringInfo s);
273 
274 extern void maybe_reread_subscription(void);
275 
276 extern void stream_cleanup_files(Oid subid, TransactionId xid);
277 
279  char *slotname,
280  XLogRecPtr *origin_startpos);
281 
282 extern void start_apply(XLogRecPtr origin_startpos);
283 
284 extern void InitializeLogRepWorker(void);
285 
286 extern void SetupApplyOrSyncWorker(int worker_slot);
287 
288 extern void DisableSubscriptionAndExit(void);
289 
290 extern void store_flush_position(XLogRecPtr remote_lsn, XLogRecPtr local_lsn);
291 
292 /* Function for apply error callback */
293 extern void apply_error_callback(void *arg);
294 extern void set_apply_error_context_origin(char *originname);
295 
296 /* Parallel apply worker setup and interactions */
297 extern void pa_allocate_worker(TransactionId xid);
299 extern void pa_detach_all_error_mq(void);
300 
301 extern bool pa_send_data(ParallelApplyWorkerInfo *winfo, Size nbytes,
302  const void *data);
304  bool stream_locked);
305 
306 extern void pa_set_xact_state(ParallelApplyWorkerShared *wshared,
307  ParallelTransState xact_state);
309 
310 extern void pa_start_subtrans(TransactionId current_xid,
311  TransactionId top_xid);
312 extern void pa_reset_subtrans(void);
313 extern void pa_stream_abort(LogicalRepStreamAbortData *abort_data);
315  PartialFileSetState fileset_state);
316 
317 extern void pa_lock_stream(TransactionId xid, LOCKMODE lockmode);
318 extern void pa_unlock_stream(TransactionId xid, LOCKMODE lockmode);
319 
320 extern void pa_lock_transaction(TransactionId xid, LOCKMODE lockmode);
321 extern void pa_unlock_transaction(TransactionId xid, LOCKMODE lockmode);
322 
323 extern void pa_decr_and_wait_stream_block(void);
324 
325 extern void pa_xact_finish(ParallelApplyWorkerInfo *winfo,
326  XLogRecPtr remote_lsn);
327 
328 #define isParallelApplyWorker(worker) ((worker)->in_use && \
329  (worker)->type == WORKERTYPE_PARALLEL_APPLY)
330 #define isTablesyncWorker(worker) ((worker)->in_use && \
331  (worker)->type == WORKERTYPE_TABLESYNC)
332 
333 static inline bool
335 {
337 }
338 
339 static inline bool
341 {
344 }
345 
346 static inline bool
348 {
351 }
352 
353 #endif /* WORKER_INTERNAL_H */
unsigned short uint16
Definition: c.h:505
unsigned int uint32
Definition: c.h:506
#define PGDLLIMPORT
Definition: c.h:1316
#define Assert(condition)
Definition: c.h:858
uint32 TransactionId
Definition: c.h:652
size_t Size
Definition: c.h:605
int64 TimestampTz
Definition: timestamp.h:39
uint32 dsm_handle
Definition: dsm_impl.h:55
int LOCKMODE
Definition: lockdefs.h:26
void * arg
const void * data
NameData subname
uintptr_t Datum
Definition: postgres.h:64
unsigned int Oid
Definition: postgres_ext.h:31
int slock_t
Definition: s_lock.h:735
Definition: pg_list.h:54
XLogRecPtr relstate_lsn
TimestampTz last_recv_time
LogicalRepWorkerType type
TimestampTz launch_time
TimestampTz reply_time
FileSet * stream_fileset
XLogRecPtr reply_lsn
XLogRecPtr last_lsn
TimestampTz last_send_time
Definition: proc.h:157
shm_mq_handle * error_mq_handle
shm_mq_handle * mq_handle
ParallelApplyWorkerShared * shared
pg_atomic_uint32 pending_stream_count
PartialFileSetState fileset_state
ParallelTransState xact_state
bool AllTablesyncsReady(void)
Definition: tablesync.c:1731
ParallelTransState
@ PARALLEL_TRANS_UNKNOWN
@ PARALLEL_TRANS_STARTED
@ PARALLEL_TRANS_FINISHED
#define isParallelApplyWorker(worker)
void set_stream_options(WalRcvStreamOptions *options, char *slotname, XLogRecPtr *origin_startpos)
Definition: worker.c:4338
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 pa_set_xact_state(ParallelApplyWorkerShared *wshared, ParallelTransState xact_state)
void stream_cleanup_files(Oid subid, TransactionId xid)
Definition: worker.c:4205
void pa_unlock_stream(TransactionId xid, LOCKMODE lockmode)
PGDLLIMPORT ErrorContextCallback * apply_error_context_stack
Definition: worker.c:288
PGDLLIMPORT bool in_remote_transaction
Definition: worker.c:303
void logicalrep_worker_wakeup_ptr(LogicalRepWorker *worker)
Definition: launcher.c:696
PGDLLIMPORT MemoryContext ApplyMessageContext
Definition: worker.c:290
void invalidate_syncing_table_states(Datum arg, int cacheid, uint32 hashvalue)
Definition: tablesync.c:281
static bool am_parallel_apply_worker(void)
PGDLLIMPORT LogicalRepWorker * MyLogicalRepWorker
Definition: launcher.c:54
struct ParallelApplyWorkerShared ParallelApplyWorkerShared
void logicalrep_worker_attach(int slot)
Definition: launcher.c:707
ParallelApplyWorkerInfo * pa_find_worker(TransactionId xid)
void stream_stop_internal(TransactionId xid)
Definition: worker.c:1603
void start_apply(XLogRecPtr origin_startpos)
Definition: worker.c:4425
void pa_stream_abort(LogicalRepStreamAbortData *abort_data)
struct ParallelApplyWorkerInfo ParallelApplyWorkerInfo
void pa_lock_stream(TransactionId xid, LOCKMODE lockmode)
void apply_dispatch(StringInfo s)
Definition: worker.c:3272
void pa_set_fileset_state(ParallelApplyWorkerShared *wshared, PartialFileSetState fileset_state)
void pa_reset_subtrans(void)
void logicalrep_pa_worker_stop(ParallelApplyWorkerInfo *winfo)
Definition: launcher.c:633
List * logicalrep_workers_find(Oid subid, bool only_running)
Definition: launcher.c:275
void DisableSubscriptionAndExit(void)
Definition: worker.c:4705
void process_syncing_tables(XLogRecPtr current_lsn)
Definition: tablesync.c:667
void pa_lock_transaction(TransactionId xid, LOCKMODE lockmode)
void ReplicationOriginNameForLogicalRep(Oid suboid, Oid relid, char *originname, Size szoriginname)
Definition: worker.c:428
void pa_detach_all_error_mq(void)
PGDLLIMPORT struct WalReceiverConn * LogRepWorkerWalRcvConn
Definition: worker.c:296
PGDLLIMPORT bool InitializingApplyWorker
Definition: worker.c:318
void stream_start_internal(TransactionId xid, bool first_segment)
Definition: worker.c:1429
void pa_start_subtrans(TransactionId current_xid, TransactionId top_xid)
void pa_switch_to_partial_serialize(ParallelApplyWorkerInfo *winfo, bool stream_locked)
void logicalrep_worker_wakeup(Oid subid, Oid relid)
Definition: launcher.c:676
void logicalrep_worker_stop(Oid subid, Oid relid)
Definition: launcher.c:609
void set_apply_error_context_origin(char *originname)
Definition: worker.c:5035
LogicalRepWorkerType
@ WORKERTYPE_TABLESYNC
@ WORKERTYPE_UNKNOWN
@ WORKERTYPE_PARALLEL_APPLY
@ WORKERTYPE_APPLY
struct LogicalRepWorker LogicalRepWorker
void pa_xact_finish(ParallelApplyWorkerInfo *winfo, XLogRecPtr remote_lsn)
PartialFileSetState
@ FS_EMPTY
@ FS_SERIALIZE_DONE
@ FS_READY
@ FS_SERIALIZE_IN_PROGRESS
#define isTablesyncWorker(worker)
void SetupApplyOrSyncWorker(int worker_slot)
Definition: worker.c:4644
static bool am_tablesync_worker(void)
static bool am_leader_apply_worker(void)
PGDLLIMPORT Subscription * MySubscription
Definition: worker.c:298
void apply_error_callback(void *arg)
Definition: worker.c:4893
void store_flush_position(XLogRecPtr remote_lsn, XLogRecPtr local_lsn)
Definition: worker.c:3436
int logicalrep_sync_worker_count(Oid subid)
Definition: launcher.c:848
void maybe_reread_subscription(void)
Definition: worker.c:3862
void InitializeLogRepWorker(void)
Definition: worker.c:4561
bool pa_send_data(ParallelApplyWorkerInfo *winfo, Size nbytes, const void *data)
void pa_allocate_worker(TransactionId xid)
PGDLLIMPORT ParallelApplyWorkerShared * MyParallelShared
void apply_spooled_messages(FileSet *stream_fileset, TransactionId xid, XLogRecPtr lsn)
Definition: worker.c:2001
void UpdateTwoPhaseState(Oid suboid, char new_state)
Definition: tablesync.c:1756
void pa_set_stream_apply_worker(ParallelApplyWorkerInfo *winfo)
void pa_unlock_transaction(TransactionId xid, LOCKMODE lockmode)
void pa_decr_and_wait_stream_block(void)
PGDLLIMPORT MemoryContext ApplyContext
Definition: worker.c:291
uint64 XLogRecPtr
Definition: xlogdefs.h:21