indexes and big tables

From: Robert Vojta <vojta(at)ipex(dot)cz>
To: PostgreSQL Hackers <pgsql-hackers(at)postgresql(dot)org>
Subject: indexes and big tables
Date: 2001-07-27 10:13:37
Message-ID: 20010727121337.D4908@ipex.cz
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Hi,
I'm fighting with problem with indexes. I read documentation about
performance tips, about internal logic functions which are making decision
if to use or not use indexes, etc. and I'm still failed. I'm not SQL
guru and I don't know what to do now. My tables and indexes looks like
...

CREATE TABLE counters (
line VARCHAR(64) NOT NULL,
counterfrom INT8 NOT NULL,
counterto INT8 NOT NULL,
counterstamp TIMESTAMP NOT NULL,
stamp TIMESTAMP NOT NULL DEFAULT 'now');

CREATE INDEX counters_line_stamp ON counters (line, counterstamp);

I have several other tables too with names static_counters_(hour|day|month).
Why? It's only for fast sumarization, so ...

in counters - 5min counters for last hour, rows are moved into static_counters
after hour sumarization in counters_hour table

in counters_hour - last day hour sums, rows are moved into static_counters_
hour table after day sumarization in counters_day

in counters_day - last month days sums, rows are moved into static_counters_
days table after month sumarization in counters_month

I'm inserting about 300 rows into counters table in 5min period (fetching
info from routers). Sumarization is doing everyhour with some internal logic
and decision are made by hour info. There are about 3 milions rows in
static_counters table and they are only for last month. It means, that when
next month begins, we moved this old data into tables counters_YYYY_MM, etc.
I'm running VACUUM ANALYZE two times a day. Everything works fine, but I'm drawing graphs from static_counters and counters tables. For first graph I
need about 33 hour old data and for second graph I need about a week old data.
I know, now there is a more data than I need in this table, but if I create a
table with needed values only, there is no indexes used too. Select for graphs
looks like ...

netacc=> EXPLAIN (SELECT SUM(counterfrom) AS from, SUM(counterto) AS to,
floor((985098900 - date_part('epoch', counterstamp)) / 300) AS sequence
FROM counters WHERE line='absolonll' AND date_part('epoch', counterstamp)
> 984978900 GROUP BY sequence, line) UNION (SELECT SUM(counterfrom) AS
from, SUM(counterto) AS to, floor((985098900 - date_part('epoch',
counterstamp)) / 300) AS sequence FROM static_counters WHERE
line='absolonll' AND date_part('epoch', counterstamp) > 984978900 GROUP BY
sequence, line); NOTICE: QUERY PLAN:

Unique (cost=67518.73..67525.44 rows=89 width=36)
-> Sort (cost=67518.73..67518.73 rows=895 width=36)
-> Append (cost=1860.01..67474.87 rows=895 width=36)
-> Aggregate (cost=1860.01..1870.90 rows=109 width=36)
-> Group (cost=1860.01..1865.46 rows=1089 width=36)
-> Sort (cost=1860.01..1860.01 rows=1089
width=36)
-> Seq Scan on counters
(cost=0.00..1805.10 rows=1089 width=36)
-> Aggregate (cost=65525.38..65603.97 rows=786 width=36)
-> Group (cost=65525.38..65564.67 rows=7858
width=36)
-> Sort (cost=65525.38..65525.38 rows=7858
width=36)
-> Seq Scan on static_counters
(cost=0.00..65016.95 rows=7858 width=36)

EXPLAIN
netacc=>

... Indexes are used when I have a few rows in table only :( Result of this
select is about ~105 rows in every way. Now, I don't know what to do, because
drawing of this two graphs is about 30 seconds and it's too much.
Please, how may I change my solution for fast graphs drawings? May I
split this table? Make table for each line? Upgrade HW?

I'm running PostgreSQL 7.0.3 now on RedHat 6.2 linux box. HW of this box
is Duron 700MHz, 384MB RAM, SCSI disk. May I upgrade PostgreSQL? May I
upgrade RAM, CPU? I don't know what to do now and any help will be very
appreciated.

Thank you very much,
king regards,
Robert Vojta

--
_
|-| __ Robert Vojta <vojta-at-ipex.cz> -= Oo.oO =-
|=| [Ll] IPEX, s.r.o.
"^" ====`o

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Zeugswetter Andreas SB 2001-07-27 11:19:54 AW: indexes and big tables
Previous Message Hiroshi Inoue 2001-07-27 10:05:59 Re: Slow Performance in PostgreSQL