Re: Adding new field to big table

From: Jeff Janes <jeff(dot)janes(at)gmail(dot)com>
To: acanada <acanada(at)cnio(dot)es>
Cc: postgres performance list <pgsql-performance(at)postgresql(dot)org>
Subject: Re: Adding new field to big table
Date: 2014-03-14 16:49:00
Message-ID: CAMkU=1ydsccdXs6jn52OyncWVoF+CqNemb84G62Rf=NBQvf0wg@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance

On Fri, Mar 14, 2014 at 4:30 AM, acanada <acanada(at)cnio(dot)es> wrote:

> Hello,
>
> I'm having time issues when adding new fields to a big table. I hope you
> can point me some hints to speed up the updates of a table with 124 million
> rows...
>
> This is what I do:
>
> First I create a tmp_table with the data that will be added to the big
> table:
>
> \d+ svm_confidence_id_tmp
> Table "public.svm_confidence_id_tmp"
> Column | Type | Modifiers | Storage | Stats target |
> Description
>
> ---------------+------------------+-----------+---------+--------------+-------------
> id | integer | not null | plain | |
> svmconfidence | double precision | | plain | |
> Indexes:
> "svm_confidence_id_tmp_pkey" PRIMARY KEY, btree (id)
>
>
>
....

> Then I update the svmConfidence field of the document table like this:
>
> update document as d set "svmConfidence" = st.svmconfidence from
> svm_confidence_id_tmp as st where st.id = d.id;
>
> But it takes too much time.
> Is there something to take into account? Any hints?
> Should I do it in a different way?
>

If your concern is how much time it has the rows locked for, you can break
it into a series of shorter transactions:

with t as (delete from svm_confidence_id_tmp where id in (select id from
svm_confidence_id_tmp limit 10000) returning * )
update document as d set "svmConfidence" = t.svmconfidence from t where t.id
=d.id;

Cheers,

Jeff

In response to

Responses

Browse pgsql-performance by date

  From Date Subject
Next Message acanada 2014-03-14 17:06:10 Re: Adding new field to big table
Previous Message acanada 2014-03-14 11:30:03 Adding new field to big table