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

Поиск
Список
Период
Сортировка
От Rod Taylor
Тема Re: can't handle large number of INSERT/UPDATEs
Дата
Msg-id 1098739153.8557.333.camel@home
обсуждение исходный текст
Ответ на can't handle large number of INSERT/UPDATEs  ("Anjan Dave" <adave@vantage.com>)
Список pgsql-performance
On Mon, 2004-10-25 at 16:53, 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

This isn't an index issue, it's a locking issue. Sounds like you have a
bunch of inserts and updates hitting the same rows over and over again.

Eliminate that contention point, and you will have solved your problem.

Free free to describe the processes involved, and we can help you do
that.



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

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