[COMMITTERS] pgsql: In standby mode, suppress repeated LOG messages about a corrupt

2010-04-16 Thread Heikki Linnakangas
Log Message:
---
In standby mode, suppress repeated LOG messages about a corrupt record,
which just indicates that we've reached the end of valid WAL found in
the standby.

Modified Files:
--
pgsql/src/backend/access/transam:
xlog.c (r1.396 -> r1.397)

(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/access/transam/xlog.c?r1=1.396&r2=1.397)

-- 
Sent via pgsql-committers mailing list (pgsql-committers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-committers


[COMMITTERS] pgsql: On Windows, syslogger runs in two threads.

2010-04-16 Thread Heikki Linnakangas
Log Message:
---
On Windows, syslogger runs in two threads. The main thread processes config
reload and rotation signals, and a helper thread reads messages from the
pipe and writes them to the log file. However, server code isn't generally
thread-safe, so if both try to do e.g palloc()/pfree() at the same time,
bad things will happen. To fix that, use a critical section (which is like
a mutex) to enforce that only one the threads are active at a time.

Modified Files:
--
pgsql/src/backend/postmaster:
syslogger.c (r1.56 -> r1.57)

(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/postmaster/syslogger.c?r1=1.56&r2=1.57)

-- 
Sent via pgsql-committers mailing list (pgsql-committers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-committers


[COMMITTERS] pgsql: On Windows, syslogger runs in two threads.

2010-04-16 Thread Heikki Linnakangas
Log Message:
---
On Windows, syslogger runs in two threads. The main thread processes config
reload and rotation signals, and a helper thread reads messages from the
pipe and writes them to the log file. However, server code isn't generally
thread-safe, so if both try to do e.g palloc()/pfree() at the same time,
bad things will happen. To fix that, use a critical section (which is like
a mutex) to enforce that only one the threads are active at a time.

Tags:

REL8_4_STABLE

Modified Files:
--
pgsql/src/backend/postmaster:
syslogger.c (r1.51.2.2 -> r1.51.2.3)

(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/postmaster/syslogger.c?r1=1.51.2.2&r2=1.51.2.3)

-- 
Sent via pgsql-committers mailing list (pgsql-committers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-committers


[COMMITTERS] pgsql: On Windows, syslogger runs in two threads.

2010-04-16 Thread Heikki Linnakangas
Log Message:
---
On Windows, syslogger runs in two threads. The main thread processes config
reload and rotation signals, and a helper thread reads messages from the
pipe and writes them to the log file. However, server code isn't generally
thread-safe, so if both try to do e.g palloc()/pfree() at the same time,
bad things will happen. To fix that, use a critical section (which is like
a mutex) to enforce that only one the threads are active at a time.

Tags:

REL8_3_STABLE

Modified Files:
--
pgsql/src/backend/postmaster:
syslogger.c (r1.44.2.3 -> r1.44.2.4)

(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/postmaster/syslogger.c?r1=1.44.2.3&r2=1.44.2.4)

-- 
Sent via pgsql-committers mailing list (pgsql-committers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-committers


[COMMITTERS] pgsql: On Windows, syslogger runs in two threads.

2010-04-16 Thread Heikki Linnakangas
Log Message:
---
On Windows, syslogger runs in two threads. The main thread processes config
reload and rotation signals, and a helper thread reads messages from the
pipe and writes them to the log file. However, server code isn't generally
thread-safe, so if both try to do e.g palloc()/pfree() at the same time,
bad things will happen. To fix that, use a critical section (which is like
a mutex) to enforce that only one the threads are active at a time.

Tags:

REL8_2_STABLE

Modified Files:
--
pgsql/src/backend/postmaster:
syslogger.c (r1.29.2.5 -> r1.29.2.6)

(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/postmaster/syslogger.c?r1=1.29.2.5&r2=1.29.2.6)

-- 
Sent via pgsql-committers mailing list (pgsql-committers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-committers


[COMMITTERS] pgsql: Provide better guidance for adjusting shared_buffers.

2010-04-16 Thread Robert Haas
Log Message:
---
Provide better guidance for adjusting shared_buffers.

Modified Files:
--
pgsql/doc/src/sgml:
config.sgml (r1.266 -> r1.267)

(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgml/config.sgml?r1=1.266&r2=1.267)

-- 
Sent via pgsql-committers mailing list (pgsql-committers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-committers


Re: [COMMITTERS] pgsql: Provide better guidance for adjusting shared_buffers.

2010-04-16 Thread David Fetter
On Fri, Apr 16, 2010 at 09:46:07PM +, Robert Haas wrote:
> Log Message:
> ---
> Provide better guidance for adjusting shared_buffers.
> 
> Modified Files:
> --
> pgsql/doc/src/sgml:
> config.sgml (r1.266 -> r1.267)
> 
> (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgml/config.sgml?r1=1.266&r2=1.267)

Good stuff!

Should it get back-patched?

Cheers,
David.
-- 
David Fetter  http://fetter.org/
Phone: +1 415 235 3778  AIM: dfetter666  Yahoo!: dfetter
Skype: davidfetter  XMPP: david.fet...@gmail.com
iCal: webcal://www.tripit.com/feed/ical/people/david74/tripit.ics

Remember to vote!
Consider donating to Postgres: http://www.postgresql.org/about/donate

-- 
Sent via pgsql-committers mailing list (pgsql-committers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-committers


Re: [COMMITTERS] pgsql: Provide better guidance for adjusting shared_buffers.

2010-04-16 Thread Robert Haas
On Fri, Apr 16, 2010 at 7:17 PM, David Fetter  wrote:
> On Fri, Apr 16, 2010 at 09:46:07PM +, Robert Haas wrote:
>> Log Message:
>> ---
>> Provide better guidance for adjusting shared_buffers.
>>
>> Modified Files:
>> --
>>     pgsql/doc/src/sgml:
>>         config.sgml (r1.266 -> r1.267)
>>         
>> (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgml/config.sgml?r1=1.266&r2=1.267)
>
> Good stuff!
>
> Should it get back-patched?

I was debating that...  as I wrote in my email to -hackers, I
considered back-patching it to 8.4 and maybe 8.3, but held off pending
feedback from others.  If the consensus is to go back, I am certainly
happy to do that.

...Robert

-- 
Sent via pgsql-committers mailing list (pgsql-committers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-committers


Re: [COMMITTERS] pgsql: Provide better guidance for adjusting shared_buffers.

2010-04-16 Thread Jaime Casanova
On Fri, Apr 16, 2010 at 6:22 PM, Robert Haas  wrote:
> On Fri, Apr 16, 2010 at 7:17 PM, David Fetter  wrote:
>> On Fri, Apr 16, 2010 at 09:46:07PM +, Robert Haas wrote:
>>> Log Message:
>>> ---
>>> Provide better guidance for adjusting shared_buffers.
>>>
>>> Modified Files:
>>> --
>>>     pgsql/doc/src/sgml:
>>>         config.sgml (r1.266 -> r1.267)
>>>         
>>> (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgml/config.sgml?r1=1.266&r2=1.267)
>>
>> Good stuff!
>>
>> Should it get back-patched?
>
> I was debating that...  as I wrote in my email to -hackers, I
> considered back-patching it to 8.4 and maybe 8.3, but held off pending
> feedback from others.  If the consensus is to go back, I am certainly
> happy to do that.
>

FWIW, +1


-- 
Atentamente,
Jaime Casanova
Soporte y capacitación de PostgreSQL
Asesoría y desarrollo de sistemas
Guayaquil - Ecuador
Cel. +59387171157

-- 
Sent via pgsql-committers mailing list (pgsql-committers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-committers