File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ USER postgres
3131ENV CFLAGS -O0
3232WORKDIR /pg
3333
34- ENV REBUILD 4
34+ ENV REBUILD 5
3535
3636RUN cd /pg && \
3737 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 = {
144144
145145void MtmArbiterInitialize (void )
146146{
147+ elog (LOG , "Register background workers" );
147148 RegisterBackgroundWorker (& MtmSender );
148149 RegisterBackgroundWorker (& MtmRecevier );
149150}
@@ -659,7 +660,7 @@ static void MtmTransSender(Datum arg)
659660 int i ;
660661
661662 MtmBuffer * txBuffer = (MtmBuffer * )palloc0 (sizeof (MtmBuffer )* nNodes );
662-
663+ elog ( LOG , "Start arbiter sender %d" , MyProcPid );
663664 InitializeTimeouts ();
664665
665666 signal (SIGINT , SetStop );
Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ if [ "$1" = 'postgres' ]; then
6969 max_prepared_transactions = 100
7070 synchronous_commit = off
7171 wal_level = logical
72- max_worker_processes = 15
72+ max_worker_processes = 30
7373 max_replication_slots = 10
7474 max_wal_senders = 10
7575 shared_preload_libraries = 'raftable,multimaster'
You can’t perform that action at this time.
0 commit comments