Re: [HACKERS] Another nasty cache problem

From: "Oliver Elphick" <olly(at)lfix(dot)co(dot)uk>
To: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Cc: prlw1(at)cam(dot)ac(dot)uk, pgsql-hackers(at)postgreSQL(dot)org, olly(at)linda(dot)lfix(dot)co(dot)uk
Subject: Re: [HACKERS] Another nasty cache problem
Date: 2000-02-03 18:41:28
Message-ID: 200002031841.SAA22521@linda.lfix.co.uk
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Tom Lane wrote:
>There's a separate question about *why* such a simple query is chewing
>up so much memory. What query plan does EXPLAIN show for your test
>query?

I can show a similar problem.

>You said this was with current sources, right?

This is with current sources: I managed to kill the backend before
it had used up all swap. If left to run on 6.5.3 or CVS as of 2
weeks back it would kill the whole machine; I haven't let it get that
far today.

bray=# explain select * from pg_operator as a, pg_operator as b;
NOTICE: QUERY PLAN:

Nested Loop (cost=12604.88 rows=258064 width=162)
-> Seq Scan on pg_operator b (cost=24.76 rows=508 width=81)
-> Seq Scan on pg_operator a (cost=24.76 rows=508 width=81)

EXPLAIN

--
Oliver Elphick Oliver(dot)Elphick(at)lfix(dot)co(dot)uk
Isle of Wight http://www.lfix.co.uk/oliver
PGP key from public servers; key ID 32B8FAA1
========================================
"O come, let us worship and bow down; let us kneel
before the LORD our maker." Psalms 95:6

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Patrick Welche 2000-02-03 18:47:07 Re: [HACKERS] Another nasty cache problem
Previous Message Ross J. Reedstrom 2000-02-03 18:36:14 coming ColdFusion support for PostgreSQL