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
elog(WARNING, "Transaction %d(%s) is aborted by watchdog", x->xid, x->gid);
807
807
x->status=TRANSACTION_STATUS_ABORTED;
@@ -1693,7 +1693,7 @@ _PG_init(void)
1693
1693
"Timeout in milliseconds of receiving heartbeat messages",
1694
1694
"If no heartbeat message is received from node within this period, it assumed to be dead",
1695
1695
&MtmHeartbeatRecvTimeout,
1696
-
2000,
1696
+
100000,
1697
1697
1,
1698
1698
INT_MAX,
1699
1699
PGC_BACKEND,
@@ -1752,7 +1752,7 @@ _PG_init(void)
1752
1752
"Minamal amount of time (milliseconds) to wait 2PC confirmation from all nodes",
1753
1753
"Timeout for 2PC is calculated as MAX(prepare_time*2pc_prepare_ratio/100,2pc_min_timeout)",
1754
1754
&Mtm2PCMinTimeout,
1755
-
100000, /* 100 seconds */
1755
+
10000, /* 100 seconds */
1756
1756
0,
1757
1757
INT_MAX,
1758
1758
PGC_BACKEND,
@@ -1813,8 +1813,8 @@ _PG_init(void)
1813
1813
DefineCustomIntVariable(
1814
1814
"multimaster.max_recovery_lag",
1815
1815
"Maximal lag of replication slot of failed node after which this slot is dropped to avoid transaction log overflow",
1816
-
"Dropping slog makes it not possible to recover node using logical replication mechanism, it will be ncessary to completely copy content of some other nodes "
1817
-
"usimg basebackup or similar tool. Zero value of parameter disable droipping slot.",
1816
+
"Dropping slot makes it not possible to recover node using logical replication mechanism, it will be ncessary to completely copy content of some other nodes "
1817
+
"using basebackup or similar tool. Zero value of parameter disable dropping slot.",
0 commit comments