Re: How to determine which indexes are not using or using seldom in database

From: Andreas Kostyrka <andreas(at)kostyrka(dot)org>
To: Denis Lishtovny <d(dot)lishtovny(at)chronopay(dot)com>
Cc: pgsql-performance(at)postgresql(dot)org
Subject: Re: How to determine which indexes are not using or using seldom in database
Date: 2007-04-02 07:45:21
Message-ID: 20070402074519.GC1382@andi-lap.la.revver.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance

* Denis Lishtovny <d(dot)lishtovny(at)chronopay(dot)com> [070402 09:20]:
> Hello All.
>
> I have a lot of tables and indexes in database. I must to determine which
> indexes are not using or using seldon in databese . I enabled all posible
> statistics in config but a can`t uderstand how to do this.
> Thanks.
>
> p.s for example i need this to reduce database size for increase backup
> and restore speed.
Indexes are not backuped, and you can increase restore speed by
temporarily dropping them. Current pg_dumps should be fine from this
aspect.

Discovering which tables are unused via the database suggests more of
a software eng. problem IMHO. And it is bound to be unprecise and
dangerous, tables might get read from:

*) triggers. That means some tables might be only consulted if user X
is doing something. Or we have full moon. Or the Chi of the DBA barked
3 times this day.

*) during application startup only (easy to solve by forcing all clients
to restart)

*) during a cron job (daily, weekly, monthly, bi-monthly)

*) only during human orginated processes.

Not a good thing to decide to drop tables just because nothing has
accessed them for half an hour. Or even a week.

Worse, some tables might have relationsships that are missing in the
database (foreign constraint forgotten, or some relationships that are
hard to express with SQL constraints).

OTOH, if you just try to get a feel what parts of the database is
active, you can start by enabling SQL statement logging, and analyze
some of that output.

Andreas

In response to

Responses

Browse pgsql-performance by date

  From Date Subject
Next Message Denis Lishtovny 2007-04-02 08:12:52 How to determine which indexes are not using or using seldom in database
Previous Message Dave Cramer 2007-04-02 00:26:35 Re: scalablility problem