Re: Terrible Write Performance of a Stored Procedure

From: Brian Troutwine <goofyheadedpunk(at)gmail(dot)com>
To: Alan Hodgson <ahodgson(at)simkin(dot)ca>
Cc: pgsql-performance(at)postgresql(dot)org
Subject: Re: Terrible Write Performance of a Stored Procedure
Date: 2009-06-26 20:35:00
Message-ID: 971980cc0906261335m7dde5496n2557f54eea4e6d8b@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general pgsql-performance

> Indexes are good things. Try them. Particularly on the isbn field.

I'm not sure why amazon_items.isbn should be given an index.
item_details.isbn is used in a WHERE clause and is given an index
accordingly, but not amazon_items.isbn.

Brian

On Fri, Jun 26, 2009 at 12:40 PM, Alan Hodgson<ahodgson(at)simkin(dot)ca> wrote:
> On Friday 26 June 2009, Brian Troutwine <goofyheadedpunk(at)gmail(dot)com> wrote:
>>  CREATE TABLE amazon_items (
>>         asin         char(10) PRIMARY KEY,
>>         locale       varchar(10) NOT NULL DEFAULT 'US',
>>         currency_code char(3) DEFAULT 'USD',
>>         isbn         char(13),
>>         sales_rank   integer,
>>         offers       text,
>>         offer_pages  integer DEFAULT 10,
>>         offers_last_updated timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
>>         UNIQUE (asin, locale)
>>  );
>>
>
> Indexes are good things. Try them. Particularly on the isbn field.
>
> --
> Overshoot = http://www.theoildrum.com/files/evoltuion_timeline.JPG
>
> --
> Sent via pgsql-performance mailing list (pgsql-performance(at)postgresql(dot)org)
> To make changes to your subscription:
> http://www.postgresql.org/mailpref/pgsql-performance
>

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Brian Troutwine 2009-06-26 20:36:54 Re: Terrible Write Performance of a Stored Procedure
Previous Message Dimitri Fontaine 2009-06-26 20:14:56 Re: Replication

Browse pgsql-performance by date

  From Date Subject
Next Message Brian Troutwine 2009-06-26 20:36:54 Re: Terrible Write Performance of a Stored Procedure
Previous Message Merlin Moncure 2009-06-26 19:48:46 Re: Terrible Write Performance of a Stored Procedure