Re: : Tracking Full Table Scans

From: Venkat Balaji <venkat(dot)balaji(at)verse(dot)in>
To: Kevin Grittner <Kevin(dot)Grittner(at)wicourts(dot)gov>
Cc: PGSQL Performance <pgsql-performance(at)postgresql(dot)org>
Subject: Re: : Tracking Full Table Scans
Date: 2011-09-27 16:42:03
Message-ID: CAFrxt0g=5P4Dkc+KLet+DMwW-vDtPTJVBejbK9CJhGzD35O0tQ@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance

I would like to know the difference between "n_tup_upd" and "n_tup_hot_upd".

Thanks
VB

On Tue, Sep 27, 2011 at 9:56 PM, Venkat Balaji <venkat(dot)balaji(at)verse(dot)in>wrote:

> Thanks a lot Kevin !!
>
> Yes. I intended to track full table scans first to ensure that only small
> tables or tables with very less pages are (as you said) getting scanned
> full.
>
> I am yet to identify slow running queries. Will surely hit back with them
> in future.
>
> Thanks
> VB
>
>
>
> On Tue, Sep 27, 2011 at 8:02 PM, Kevin Grittner <
> Kevin(dot)Grittner(at)wicourts(dot)gov> wrote:
>
>> Venkat Balaji <venkat(dot)balaji(at)verse(dot)in> wrote:
>>
>> > I am preparing a plan to track the tables undergoing Full Table
>> > Scans for most number of times.
>> >
>> > If i track seq_scan from the pg_stat_user_tables, will that help
>> > (considering the latest analyzed ones) ?
>>
>> Well, yeah; but be careful not to assume that a sequential scan is
>> always a bad thing. Here's our top ten tables for sequential scans
>> in a database which is performing quite well:
>>
>> cc=> select seq_scan, n_live_tup, relname
>> cc-> from pg_stat_user_tables
>> cc-> order by seq_scan desc
>> cc-> limit 10;
>> seq_scan | n_live_tup | relname
>> ----------+------------+--------------------
>> 81264339 | 20 | MaintCode
>> 16840299 | 3 | DbTranImageStatus
>> 14905181 | 18 | ControlFeature
>> 11908114 | 10 | AgingBoundary
>> 8789288 | 22 | CtofcTypeCode
>> 7786110 | 6 | PrefCounty
>> 6303959 | 9 | ProtOrderHistEvent
>> 5835430 | 1 | ControlRecord
>> 5466806 | 1 | ControlAccounting
>> 5202028 | 12 | ProtEventOrderType
>> (10 rows)
>>
>> You'll notice that they are all very small tables. In all cases the
>> entire heap fits in one page, so any form of indexed scan would at
>> least double the number of pages visited, and slow things down.
>>
>> If you have queries which are not performing to expectations, your
>> best bet might be to pick one of them and post it here, following
>> the advice on this page:
>>
>> http://wiki.postgresql.org/wiki/SlowQueryQuestions
>>
>> -Kevin
>>
>
>

In response to

Responses

Browse pgsql-performance by date

  From Date Subject
Next Message Kevin Grittner 2011-09-27 17:15:43 Re: : Tracking Full Table Scans
Previous Message Venkat Balaji 2011-09-27 16:35:42 PostgreSQL-9.0 Monitoring System to improve performance