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);
808
808
x->status=TRANSACTION_STATUS_ABORTED;
@@ -1694,7 +1694,7 @@ _PG_init(void)
1694
1694
"Timeout in milliseconds of receiving heartbeat messages",
1695
1695
"If no heartbeat message is received from node within this period, it assumed to be dead",
1696
1696
&MtmHeartbeatRecvTimeout,
1697
-
2000,
1697
+
100000,
1698
1698
1,
1699
1699
INT_MAX,
1700
1700
PGC_BACKEND,
@@ -1753,7 +1753,7 @@ _PG_init(void)
1753
1753
"Minamal amount of time (milliseconds) to wait 2PC confirmation from all nodes",
1754
1754
"Timeout for 2PC is calculated as MAX(prepare_time*2pc_prepare_ratio/100,2pc_min_timeout)",
1755
1755
&Mtm2PCMinTimeout,
1756
-
100000, /* 100 seconds */
1756
+
10000, /* 100 seconds */
1757
1757
0,
1758
1758
INT_MAX,
1759
1759
PGC_BACKEND,
@@ -1814,8 +1814,8 @@ _PG_init(void)
1814
1814
DefineCustomIntVariable(
1815
1815
"multimaster.max_recovery_lag",
1816
1816
"Maximal lag of replication slot of failed node after which this slot is dropped to avoid transaction log overflow",
1817
-
"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 "
1818
-
"usimg basebackup or similar tool. Zero value of parameter disable droipping slot.",
1817
+
"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 "
1818
+
"using basebackup or similar tool. Zero value of parameter disable dropping slot.",
0 commit comments