Re: Copy performance issues

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Copy performance issues
Дата
Msg-id 15118.1282171334@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Copy performance issues  (Saadat Anwar <sanwar@asu.edu>)
Ответы Re: Copy performance issues  (s anwar <sanwar@gmail.com>)
Список pgsql-performance
Saadat Anwar <sanwar@asu.edu> writes:
> I am having severe COPY performance issues after adding indices. What used
> to take a few minutes (without indices) now takes several hours (with
> indices). I've tried to tweak the database configuration (based on Postgres
> documentation and forums), but it hasn't helped as yet. Perhaps, I haven't
> increased the limits sufficiently. Dropping and recreating indices may not
> be an option due to a long time it takes to rebuild all indices.

I suspect your problem is basically that the index updates require a
working set larger than available RAM, so the machine spends all its
time shuffling index pages in and out.  Can you reorder the input so
that there's more locality of reference in the index values?

Also, my first reaction to that schema is to wonder whether the lat/lon
indexes are worth anything.  What sort of queries are you using them
for, and have you considered an rtree/gist index instead?

            regards, tom lane

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

Предыдущее
От: Saadat Anwar
Дата:
Сообщение: Copy performance issues
Следующее
От: Greg Smith
Дата:
Сообщение: Re: Copy performance issues