Re: Scaling concerns

Поиск
Список
Период
Сортировка
От tsuraan
Тема Re: Scaling concerns
Дата
Msg-id 84fb38e30612161003gded26aalfcd3aa0a5176c75c@mail.gmail.com
обсуждение исходный текст
Ответ на Re: Scaling concerns  ("Steinar H. Gunderson" <sgunderson@bigfoot.com>)
Список pgsql-performance
> Unqualified SELECT COUNT(*) FROM foo is one of the most expensive operations
> you can do on your system, since the visibility information has to be
> checked
> on disk for each row. Instead, try real queries on real data, and post here
> if some are too slow for you.

Ok, that's a bad example.  I'm learning :-)  Is insert ... select also
really expensive then?  I have a table loaded with message-id and path
information of currently-existing messages.  It has ~20 million rows.
Trying to do "INSERT INTO Messages(path, msgid) SELECT (path, msgid)
FROM tmpMessages" took a really long time before psql died with an
out-of-memory error.  Is there a more sane way to do a table copy, or
should I have just dropped all the indices from the Message table and
loaded into that?

Thanks!

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

Предыдущее
От: Michael Stone
Дата:
Сообщение: Re: New to PostgreSQL, performance considerations
Следующее
От: jamcito
Дата:
Сообщение: Re: partition text/varchar check problem -- solved