File tree 3 files changed +4
-3
lines changed
3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ USER postgres
31
31
ENV CFLAGS -O0
32
32
WORKDIR /pg
33
33
34
- ENV REBUILD 4
34
+ ENV REBUILD 5
35
35
36
36
RUN cd /pg && \
37
37
git clone https://github.com/postgrespro/postgres_cluster.git --depth 1 && \
Original file line number Diff line number Diff line change @@ -144,6 +144,7 @@ static BackgroundWorker MtmRecevier = {
144
144
145
145
void MtmArbiterInitialize (void )
146
146
{
147
+ elog (LOG , "Register background workers" );
147
148
RegisterBackgroundWorker (& MtmSender );
148
149
RegisterBackgroundWorker (& MtmRecevier );
149
150
}
@@ -659,7 +660,7 @@ static void MtmTransSender(Datum arg)
659
660
int i ;
660
661
661
662
MtmBuffer * txBuffer = (MtmBuffer * )palloc0 (sizeof (MtmBuffer )* nNodes );
662
-
663
+ elog ( LOG , "Start arbiter sender %d" , MyProcPid );
663
664
InitializeTimeouts ();
664
665
665
666
signal (SIGINT , SetStop );
Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ if [ "$1" = 'postgres' ]; then
69
69
max_prepared_transactions = 100
70
70
synchronous_commit = off
71
71
wal_level = logical
72
- max_worker_processes = 15
72
+ max_worker_processes = 30
73
73
max_replication_slots = 10
74
74
max_wal_senders = 10
75
75
shared_preload_libraries = 'raftable,multimaster'
You can’t perform that action at this time.
0 commit comments