Re: [PATCHES] Fix database is ready race condition

2007-02-07 Thread Markus Schiltknecht
Tom Lane wrote: I've applied a modified form of this patch. The postmaster now says database system is ready to accept connections after it's finished reacting to the completion of the startup process. Thank you, that's just perfect for me. Markus ---(end of

[PATCHES] Fix database is ready race condition

2007-02-03 Thread Markus Schiltknecht
Hi, is there a good reason to print the database system is ready message in StartupXLOG() in xact.c? It has a) nothing to do with xlog and b) opens a small race condition: the message gets printed, while it still take some CPU cycles until the postmaster really gets the SIGCHLD signal and

Re: [pgsql-patches] Autovacuum launcher patch

2007-01-29 Thread Markus Schiltknecht
@@ +/*- + * + * imsg.c + *internal messages from process to process sent via shared memory. + * + * + * Copyright (c) 2006, Markus Schiltknecht [EMAIL PROTECTED] + * + *- + */ + +#include unistd.h +#include signal.h

Re: [PATCHES] replication docs: split single vs. multi-master

2006-11-16 Thread Markus Schiltknecht
Hello Bruce, Bruce Momjian wrote: Actually the patch moves down data paritioning. I am confused. Uh.. yeah, sorry, that's what I meant. I thought a long time about this. I have always liked splitting the solutions up into single and multi-master, but in doing this documentation section, I

Re: [PATCHES] replication docs: split single vs. multi-master

2006-11-16 Thread Markus Schiltknecht
Bruce Momjian wrote: I am now attaching the additional text I added based on your comments. I have also changed the markup so all the solutions appear on the same web page. I think seeing it all together might give us new ideas for improvement. Good, it's definitely better to have it all on

[PATCHES] replication docs: split single vs. multi-master

2006-11-15 Thread Markus Schiltknecht
Hi, as promised on -docs, here comes my proposal on how to improve the replication documentation. The patches are split as follows and have to be applied in order: replication_doku_1.diff: Smallest possible one-word change to warm-up... replication_doku_2.diff: Moves down Clustering

Re: [PATCHES] Replication Documentation

2006-08-02 Thread Markus Schiltknecht
Hello, Peter Eisentraut wrote: 1. post information on pgsql-general 1.a. solicit comments 2. put information page on web site 3. link from documentation to web site I don't remember such a clear agreement either. I'm glad Chris has written something. And posting it to -docs seems a much

Re: [PATCHES] Support Parallel Query Execution in Executor

2006-04-08 Thread Markus Schiltknecht
+0200 *** *** 0 --- 1,277 + /*- + * + * imsg.c + *internal messages from process to process sent via shared memory. + * + * + * Copyright (c) 2006, Markus Schiltknecht [EMAIL PROTECTED