Re: can't handle large number of INSERT/UPDATEs

Поиск
Список
Период
Сортировка
От Anjan Dave
Тема Re: can't handle large number of INSERT/UPDATEs
Дата
Msg-id 4BAFBB6B9CC46F41B2AD7D9F4BBAF78501B2751F@vt-pe2550-001.vantage.vantage.com
обсуждение исходный текст
Ответ на can't handle large number of INSERT/UPDATEs  ("Anjan Dave" <adave@vantage.com>)
Список pgsql-performance
Andrew/Josh,

Josh also suggested to check for any FK/referential integrity checks,
but I am told that we don't have any foreign key constraints.

Thanks,
anjan

-----Original Message-----
From: Andrew McMillan [mailto:andrew@catalyst.net.nz]
Sent: Tuesday, October 26, 2004 4:51 PM
To: Anjan Dave
Cc: pgsql-performance@postgresql.org
Subject: Re: [PERFORM] can't handle large number of INSERT/UPDATEs

On Mon, 2004-10-25 at 16:53 -0400, Anjan Dave wrote:
> Hi,
>
>
>
> I am dealing with an app here that uses pg to handle a few thousand
> concurrent web users. It seems that under heavy load, the INSERT and
> UPDATE statements to one or two specific tables keep queuing up, to
> the count of 150+ (one table has about 432K rows, other has about
> 2.6Million rows), resulting in 'wait's for other queries, and then
> everything piles up, with the load average shooting up to 10+.

Hi,

We saw a similar problem here that was related to the locking that can
happen against referred tables for referential integrity.

In our case we had referred tables with very few rows (i.e. < 10) which
caused the insert and update on the large tables to be effectively
serialised due to the high contention on the referred tables.

We changed our app to implement those referential integrity checks
differently and performance was hugely boosted.

Regards,
                    Andrew.
------------------------------------------------------------------------
-
Andrew @ Catalyst .Net .NZ  Ltd,  PO Box 11-053, Manners St,  Wellington
WEB: http://catalyst.net.nz/            PHYS: Level 2, 150-154 Willis St
DDI: +64(4)803-2201      MOB: +64(272)DEBIAN      OFFICE: +64(4)499-2267
                        Chicken Little was right.
------------------------------------------------------------------------
-



В списке pgsql-performance по дате отправления:

Предыдущее
От: Andrew McMillan
Дата:
Сообщение: Re: can't handle large number of INSERT/UPDATEs
Следующее
От: "Anjan Dave"
Дата:
Сообщение: Re: can't handle large number of INSERT/UPDATEs