Follow-Up to A Silly Idea for Vertically-Oriented Databases

From: Avery Payne <apayne(at)pcfruit(dot)com>
To: pgsql-hackers(at)postgresql(dot)org
Subject: Follow-Up to A Silly Idea for Vertically-Oriented Databases
Date: 2007-09-07 21:58:03
Message-ID: 46E1C96B.8010901@pcfruit.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

In hindsight, I did miss quite a bit in my last post. Here's a summary
that might clear it up:

Add a single keyword that specifies that the storage format changes
slightly. The keyword should not affect SQL compliancy while still
extending functionality. It can be specified as either part of the
CREATE TABLE statement or part of the tablespace mechanism.

When a table is created with this setting, all columns in a record are
split vertically into individual, 1-column-wide tables, and each column
in the table is assigned an OIDs. Each OID corresponds to one of our
"1-wide" tables. An additional control column will be created that is
only visible to the database and the administrator. This column stores
a single logical indicating if the record is allocated or not. You
might even be able to create a special bitmap index that is hidden, and
just use existing bitmap functions in the index code. In essence, this
column helps keep all of the other columns in sync when dealing with rows.

When writing data to the table, each individual column will update, but
the engine invisibly wraps together all of the columns into a single
transaction. That is, each row insert is still atomic and behaves like
it normally would - either the insert succeeds or it doesn't. Because
the updates are handled by the engine as many separate tables, no
special changes are required, and existing storage mechanisms (TOAST)
continue to function as they always did. This could be written as a
super-function of sorts, one that would combine all of the smaller steps
together and use the existing mechanisms.

Updates are performed in the same manner, with each "column" being
rolled up into a single invisible mini-transaction for the given record.

Deletes are performed by marking not only the columns as deleted but
also the control column as having that row available for overwrite. I'm
simplifying quite a bit but I think the general idea is understood.
Yes, a delete will have significant overhead compared to an insert or
update but this is a known tradeoff that the administrator is willing to
make, so they can gain faster read speeds - ie. they want an
OLAP-oriented store, not an OLTP-oriented store.

The control column would be used to locate records that can be
overwritten quickly. When a record is deleted, the control column's
bitmap was adjusted to indicate that a free space was available. The
engine would then co-ordinate as it did above, but it can "cheat" -
instead of trying to figure things out for each table, the offset to
write to is already known, so the update proceeds as listed above, other
than each part of the little mini-transaction writes to the same
"offset" (ie. each column in the record will have the same "hole", so
when you go to write the record out, write it to the same "record
spot"). This is where the control column not only coordinates deletes
but also inserts that re-use space from deleted records.

Hopefully that makes it a little clearer.

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Hannu Krosing 2007-09-07 22:02:04 Re: [FEATURE REQUEST] Streaming Onlinebackup (Maybe OFFTOPIC)
Previous Message Robert Treat 2007-09-07 21:52:01 equivilant to contrib "tsearch" trigger function in 8.3