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
"Maximal size (Mb) of transaction after which transaction is written to the disk",
2861
+
"Maximal size of transaction after which transaction is written to the disk",
2862
2862
NULL,
2863
2863
&MtmTransSpillThreshold,
2864
-
100, /* 100Mb */
2865
-
0,
2866
-
MaxAllocSize/MB,
2867
-
PGC_BACKEND,
2864
+
100*1024, /* 100Mb */
2868
2865
0,
2866
+
MaxAllocSize/GUC_UNIT_KB,
2867
+
PGC_SIGHUP,
2868
+
GUC_UNIT_KB,
2869
2869
NULL,
2870
2870
NULL,
2871
2871
NULL
@@ -2892,11 +2892,11 @@ _PG_init(void)
2892
2892
"When wal-sender almost catch-up WAL current position we need to stop 'Achilles tortile competition' and "
2893
2893
"temporary stop commit of new transactions until node will be completely repared",
2894
2894
&MtmMinRecoveryLag,
2895
-
100000,
2896
-
1,
2897
-
INT_MAX,
2898
-
PGC_BACKEND,
2895
+
10*1024, /* 10 MB */
2899
2896
0,
2897
+
INT_MAX,
2898
+
PGC_SIGHUP,
2899
+
GUC_UNIT_KB,
2900
2900
NULL,
2901
2901
NULL,
2902
2902
NULL
@@ -2908,11 +2908,11 @@ _PG_init(void)
2908
2908
"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 "
2909
2909
"using basebackup or similar tool. Zero value of parameter disable dropping slot.",
0 commit comments