Re: futex results with dbt-3

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: futex results with dbt-3
Дата
Msg-id 27697.1098225588@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: futex results with dbt-3  (Josh Berkus <josh@agliodbs.com>)
Список pgsql-performance
Josh Berkus <josh@agliodbs.com> writes:
>> The bigger problem here is that the SMP locking bottlenecks we are
>> currently seeing are *hardware* issues (AFAICT anyway).

> Well, initial results from Gavin/Neil's patch seem to indicate that, while
> futexes do not cure the CSStorm bug, they do lessen its effects in terms of
> real performance loss.

It would be reasonable to expect that futexes would have a somewhat more
efficient code path in the case where you have to block (mainly because
SysV semaphores have such a heavyweight API, much more complex than we
really need).  However, the code path that is killing us is the one
where you *don't* actually need to block.  If we had a proper fix for
the problem then the context swap storm itself would go away, and
whatever advantage you might be able to measure now for futexes likewise
would go away.

In other words, I'm not real excited about a wholesale replacement of
code in order to speed up a code path that I don't want to be taking
in the first place; especially not if that replacement puts a fence
between me and working on the code path that I do care about.

            regards, tom lane

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

Предыдущее
От: Josh Close
Дата:
Сообщение: how much mem to give postgres?
Следующее
От: Russell Smith
Дата:
Сообщение: Re: Select with qualified join condition / Batch inserts