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