Re: [HACKERS] A couple of questions...

Поиск
Список
Период
Сортировка
От Thomas G. Lockhart
Тема Re: [HACKERS] A couple of questions...
Дата
Msg-id 363D4E16.B4AEC0BD@alumni.caltech.edu
обсуждение исходный текст
Ответ на A couple of questions...  (Nick Bastin <nbastin@rbbsystems.com>)
Ответы Re: [HACKERS] A couple of questions...
Список pgsql-hackers
> 1)  How much data can postgres handle?  If I'm restricted by maximum
> file size in the OS, can I segment the data file, and if so, how many times?

I vaguely recall that Postgres has support for segmented files, but that
it has not been reported to have been tested recently. You probably
can't count on it working, but try testing and see.

> 2)  Can I store the indexes for the database on a separate drive from
> the data itself?  This is useful so that I can place the indexes on a
> solid state disk for fast searching, and leave the data on traditional 
> medium.

Officially, no. If you have a fairly static database, you can create the
index, and then move it to another disk and create a soft link to it.
The Postgres server doesn't know about this directly, but can probably
be fooled.

> 3) Is there a maximum number of records per table?  i.e., if I can
> segment the data file, can I still only have 2 gigs of data per table?

Don't know. Sorry.
                   - Tom


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

Предыдущее
От: The Hermit Hacker
Дата:
Сообщение: Re: [HACKERS] v6.4-BETA3 problems with FreeBSD
Следующее
От: Karl Auer
Дата:
Сообщение: Re: [HACKERS] Why is libcurses added to build by configure?