Re: At what point does a big table start becoming too big?

Поиск
Список
Период
Сортировка
От Jasen Betts
Тема Re: At what point does a big table start becoming too big?
Дата
Msg-id k155no$8pd$2@reversiblemaps.ath.cx
обсуждение исходный текст
Ответ на At what point does a big table start becoming too big?  (Nick <nboutelier@gmail.com>)
Список pgsql-general
On 2012-08-22, Nick <nboutelier@gmail.com> wrote:
> I have a table with 40 million rows and haven't had any performance issues yet.
>
> Are there any rules of thumb as to when a table starts getting too big?

when you need to run a query that needs to fetch too many rows.

> For example, maybe if the index size is 6x the amount of ram,
> if the table is 10% of total disk space, etc?

If you only need one row at a time and you have the indices for it
no size is too big, the larger they are the more impressive
indices are. O(log(n)) beats O(n) more and more as n grows.

--
⚂⚃ 100% natural

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

Предыдущее
От: Anthony
Дата:
Сообщение: Re: Amazon High I/O instances
Следующее
От: "Gauthier, Dave"
Дата:
Сообщение: Re: Can column name aliases be supported?