Re: MVCC performance issue - Mailing list pgsql-performance

From Vitalii Tymchyshyn
Subject Re: MVCC performance issue
Date
Msg-id 4CDD62FF.4020009@gmail.com
Whole thread Raw
In response to MVCC performance issue  ("Kyriacos Kyriacou" <kyriacosk@prime-tel.com>)
List pgsql-performance
12.11.10 15:47, Kyriacos Kyriacou написав(ла):
> PROBLEM DECRIPTION
> ------------------
> As an example, consider updating the "live" balance
> of a customer for each phone call where the entire customer record has
> to be duplicated again and again upon each call just for modifying a
> numeric value!
>
Have you considered splitting customer record into two tables with
mostly read-only data and with data that is updated often? Such 1-1
relationship can make a huge difference to performance in your case. You
can even try to simulate old schema by using an updateable view.

Best regards, Vitalii Tymchyshyn

pgsql-performance by date:

Previous
From: Kenneth Marshall
Date:
Subject: Re: MVCC performance issue
Next
From: Pavel Stehule
Date:
Subject: Re: postmaster consuming /lots/ of memory with hash aggregate. why?