You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
TransactionIdoldestXid; /* XID of oldest transaction visible by any active transaction (local or global) */
279
279
nodemask_tdisabledNodeMask; /* bitmask of disabled nodes */
280
-
nodemask_tstalledNodeMask; /* bitmask of stalled nodes (node with dropped relication slot which makes it not possible automatic recovery of such node) */
280
+
nodemask_tstalledNodeMask; /* bitmask of stalled nodes (node with dropped replication slot which makes it not possible automatic recovery of such node) */
281
281
nodemask_tstoppedNodeMask; /* Bitmask of stopped (permanently disabled nodes) */
282
282
nodemask_tpglogicalReceiverMask; /* bitmask of started pglogic receivers */
283
283
nodemask_tpglogicalSenderMask; /* bitmask of started pglogic senders */
284
284
nodemask_twalSenderLockerMask; /* Mask of WAL-senders IDs locking the cluster */
285
285
nodemask_tglobalLockerMask; /* Global cluster mask of locked nodes to perform caught-up (updated using heartbeats) */
286
286
nodemask_tnodeLockerMask; /* Mask of node IDs which WAL-senders are locking the cluster */
287
287
nodemask_treconnectMask; /* Mask of nodes connection to which has to be reestablished by sender */
288
-
intlastLockHolder; /* PID of process last obtaning the node lock */
288
+
intlastLockHolder; /* PID of process last obtaining the node lock */
289
289
boollocalTablesHashLoaded; /* Whether data from local_tables table is loaded in shared memory hash table */
290
290
boolpreparedTransactionsLoaded; /* GIDs of prepared transactions are loaded at startup */
291
291
intinject2PCError; /* Simulate error during 2PC commit at this node */
292
292
intnLiveNodes; /* Number of active nodes */
293
-
intnAllNodes; /* Total numbber of nodes */
294
-
intnReceivers; /* Number of initialized logical receivers (used to determine moment when intialization/recovery is completed) */
293
+
intnAllNodes; /* Total number of nodes */
294
+
intnReceivers; /* Number of initialized logical receivers (used to determine moment when initialization/recovery is completed) */
295
295
intnSenders; /* Number of started WAL senders (used to determine moment when recovery) */
296
296
intnLockers; /* Number of lockers */
297
-
intnActiveTransactions; /* Nunmber of active 2PC transactions */
297
+
intnActiveTransactions; /* Number of active 2PC transactions */
298
298
intnConfigChanges; /* Number of cluster configuration changes */
299
299
intrecoveryCount; /* Number of completed recoveries */
300
300
intdonorNodeId; /* Cluster node from which this node was populated */
301
301
int64timeShift; /* Local time correction */
302
-
csn_tcsn; /* Last obtained timestamp: used to provide unique acending CSNs based on system time */
302
+
csn_tcsn; /* Last obtained timestamp: used to provide unique ascending CSNs based on system time */
303
303
csn_tlastCsn; /* CSN of last committed transaction */
304
-
MtmTransState*votingTransactions; /* L1-list of replicated transactions sendings notifications to coordinator.
304
+
MtmTransState*votingTransactions; /* L1-list of replicated transactions notifications to coordinator.
305
305
This list is used to pass information to mtm-sender BGW */
306
306
MtmTransState*transListHead; /* L1 list of all finished transactions present in xid2state hash.
307
307
It is cleanup by MtmGetOldestXmin */
308
-
MtmTransState**transListTail; /* Tail of L1 list of all finished transactionds, used to append new elements.
308
+
MtmTransState**transListTail; /* Tail of L1 list of all finished transactions, used to append new elements.
309
309
This list is expected to be in CSN ascending order, by strict order may be violated */
310
310
MtmL2ListactiveTransList; /* List of active transactions */
311
-
ulong64transCount; /* Counter of transactions perfromed by this node */
311
+
ulong64transCount; /* Counter of transactions performed by this node */
312
312
ulong64gcCount; /* Number of global transactions performed since last GC */
313
313
MtmMessageQueue*sendQueue; /* Messages to be sent by arbiter sender */
0 commit comments