Re: Column oriented pgsql

Поиск
Список
Период
Сортировка
Искать
От
John R Pierce
Тема
Re: Column oriented pgsql
Дата
в 22:26:20
Msg-id
4A04DB84.6060604@hogranch.com
Ответ на
Список
Дерево обсуждения
Column oriented pgsql Mag Gam <magawake@gmail.com>
Re: Column oriented pgsql John R Pierce <pierce@hogranch.com>
Re: Column oriented pgsql Joshua Tolley <eggyknap@gmail.com>
Re: Column oriented pgsql John R Pierce <pierce@hogranch.com>
Re: Column oriented pgsql Christophe <xof@thebuild.com>
Re: Column oriented pgsql Mag Gam <magawake@gmail.com>
Re: Column oriented pgsql "bfriedman.postgresql" <bfriedman.postgresql@gmail.com>
Joshua Tolley wrote:
> http://en.wikipedia.org/wiki/Column_oriented_database
> This has come up on the lists from time to time; the short answer is it's
> really hard.
>   

indeed.  among other issues is, just what order should those columns be 
stored in?  database tables have no implicit order, they are abstractly 
unordered sets of rows.  an index can impose an order but a given table 
can have multiple indexes, and a given query can sort on most any 
arbitrary thing it wants.   and, say you are storing the columns sorted 
by the primary key,  how do you do inserts or updates that change this 
order?

instead of one table with (key, v1, v2, v3) how about N tables, (k,v1), 
(k,v2), (k,v3)  ?   or at least, one extra table with just the value 
that you want columnar access to?






В списке pgsql-general по дате отправления
От: Mag Gam
Дата:
Сообщение: Re: Column oriented pgsql
От: bfriedman.postgresql
Дата:
Сообщение: Re: Column oriented pgsql
FAQ