From: | Andy Colson <andy(at)squeakycode(dot)net> |
---|---|
To: | Alessandro Gagliardi <alessandro(at)path(dot)com> |
Cc: | Steve Crawford <scrawford(at)pinpointresearch(dot)com>, Thom Brown <thom(at)linux(dot)com>, pgsql-performance(at)postgresql(dot)org |
Subject: | Re: set autovacuum=off |
Date: | 2012-02-23 19:07:07 |
Message-ID: | 4F468E5B.2070009@squeakycode.net |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-performance |
On 2/23/2012 12:38 PM, Alessandro Gagliardi wrote:
> Does analyze increase the efficiency of inserts or just selects? (I
> assumed the latter.) Obviously, I will need to analyze sometimes, but
That depends on if you have triggers that are doing selects. But in
general you are correct, analyze wont help inserts.
checkpoint_segments can help insert speed, what do you have that set to?
Also how you insert can make things faster too. (insert vs prepared vs COPY)
Also, if you have too many indexes on a table that can cause things to
slow down.
Your IO layer needs to be fast too. Have you watched vmstat and iostat?
Have you read up on synchronous_commit?
-Andy
From | Date | Subject | |
---|---|---|---|
Next Message | Steve Crawford | 2012-02-23 19:26:55 | Re: set autovacuum=off |
Previous Message | Tom Lane | 2012-02-23 19:04:34 | Re: Very long deletion time on a 200 GB database |