Re: Postgres insert performance and storage requirement compared to Oracle

From: Steve Singer <ssinger(at)ca(dot)afilias(dot)info>
To: Divakar Singh <dpsmails(at)yahoo(dot)com>
Cc: Merlin Moncure <mmoncure(at)gmail(dot)com>, Robert Haas <robertmhaas(at)gmail(dot)com>, Mladen Gogala <mladen(dot)gogala(at)vmsinfo(dot)com>, pgsql-performance(at)postgresql(dot)org
Subject: Re: Postgres insert performance and storage requirement compared to Oracle
Date: 2010-10-27 18:51:02
Message-ID: 4CC87496.9070703@ca.afilias.info
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers pgsql-performance

On 10-10-27 02:14 PM, Divakar Singh wrote:
> yes this is a very clearly visible problem.
> The difference b/w oracle and PG increases with more rows.
> when oracle takes 3 GB, PG takes around 6 GB.
> I only use varchar.
> I will try to use your tips on "smart table layout, toast compression".
> Assuming these suggested options do not have any performance penalty?
> Best Regards,
> Divakar

In between test runs are you cleaning out the tables with a "DELETE FROM
aaaaa" or are you using the TRUNCATE command? Or dropping the table and
recreating it.

If your just using DELETE it might be that disk space is still being
used by the old versions of the rows.

Also is postgresql using more space than oracle for storing the index
data or the main table data? and is any particular index larger on
postgresql compared to Oracle.

>
>
> ------------------------------------------------------------------------
> *From:* Merlin Moncure <mmoncure(at)gmail(dot)com>
> *To:* Divakar Singh <dpsmails(at)yahoo(dot)com>
> *Cc:* Robert Haas <robertmhaas(at)gmail(dot)com>; Mladen Gogala
> <mladen(dot)gogala(at)vmsinfo(dot)com>; pgsql-performance(at)postgresql(dot)org
> *Sent:* Wed, October 27, 2010 11:36:00 PM
> *Subject:* Re: [PERFORM] Postgres insert performance and storage
> requirement compared to Oracle
>
> On Tue, Oct 26, 2010 at 11:10 PM, Divakar Singh <dpsmails(at)yahoo(dot)com
> <mailto:dpsmails(at)yahoo(dot)com>> wrote:
> > Dear All,
> > Thanks for your inputs on the insert performance part.
> > Any suggestion on storage requirement?
> > VACUUM is certainly not an option, because this is something related to
> > maintenance AFTER insertion.
> > I am talking about the plain storage requirement w.r. to Oracle, which I
> > observed is twice of Oracle in case millions of rows are inserted.
> > Anybody who tried to analyze the average storage requirement of PG
> w.r. to
> > Oracle?
>
> There isn't much you can to about storage use other than avoid stupid
> things (like using char() vs varchar()), smart table layout, toast
> compression, etc. Are you sure this is a problem?
>
> merlin
>

In response to

Browse pgsql-hackers by date

  From Date Subject
Next Message Merlin Moncure 2010-10-27 18:51:23 Re: Postgres insert performance and storage requirement compared to Oracle
Previous Message Jesper Krogh 2010-10-27 18:42:19 Re: Postgres insert performance and storage requirement compared to Oracle

Browse pgsql-performance by date

  From Date Subject
Next Message Merlin Moncure 2010-10-27 18:51:23 Re: Postgres insert performance and storage requirement compared to Oracle
Previous Message Jesper Krogh 2010-10-27 18:42:19 Re: Postgres insert performance and storage requirement compared to Oracle