Re: Postgres (selection of thesis topic)

From: Scott Marlowe <smarlowe(at)g2switchworks(dot)com>
To: Alexander Staubo <alex(at)purefiction(dot)net>
Cc: Harpreet Dhaliwal <harpreet(dot)dhaliwal01(at)gmail(dot)com>, pgsql general <pgsql-general(at)postgresql(dot)org>
Subject: Re: Postgres (selection of thesis topic)
Date: 2007-05-02 15:28:42
Message-ID: 1178119721.2953.2.camel@state.g2switchworks.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On Wed, 2007-05-02 at 08:00, Alexander Staubo wrote:
> On 5/2/07, Harpreet Dhaliwal <harpreet(dot)dhaliwal01(at)gmail(dot)com> wrote:
> > I'm kind of new to postgresql and the project that I'm working on currently
> > deals with parsing emails, storing parsed components in postgresql DB and
> > fire triggers
> > on certain inserts that opens socket connection with a unix tools server,
>
> Are you sure it is a good idea to do this processing synchronously?
> What happens if there is a network problem? It sounds like an
> inefficient and inflexible design.
>
> > I have done alot of homework on this and could think of something like "bulk
> > of data storage in email parsing and how vacuuming it would increase the
> > performance" because i think this vacuum DB concept is not there in other
> > RDBMS.
>
> SQLite also requires vacuuming, as does other databases based on
> MVCC-like designs, although some (eg., Oracle with its redo logs,
> iirc) do their housekeeping behind the scenes.

We're running Oracle 9 here, and it's even worse than vacuuming. Once a
table grows, it stays grown until you rebuild it (you use the move
command, you just don't move it), and if it's filled up it's tablespace,
you have to extend it to get room to do that. On top of that, you can't
move a partitioned table.

I'd say Oracle9 is about 10 times worse than PostgreSQL (any version)
for the amount of manual maintenance it takes to keep it happy.

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Martin Gainty 2007-05-02 15:52:25 Re: Postgres (selection of thesis topic)
Previous Message Alvaro Herrera 2007-05-02 15:03:12 Re: PostgreSql replication and load balancing ( is Slony-I a solution?)