C client memory usage grows

From: "Patrick L(dot) Nolan" <pln(at)cosmic(dot)stanford(dot)edu>
To: pgsql-interfaces(at)postgresql(dot)org
Subject: C client memory usage grows
Date: 2002-07-15 20:33:40
Message-ID: agvbj4$2tmk$1@news.hub.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-interfaces

I'm writing a C program that uses libpq to read a big table.
First I tried a dumb query like "SELECT * FROM mytable".
It ran out of memory after fetching about 9 million rows.

Tom Lane suggested that I should use a cursor to fetch
data in more manageable chunks. I have tried that, and it
doesn't really seem to cure the problem. My program's
memory usage grows steadily, no matter how many rows
I FETCH at a time.

The relevant portion of my program looks sort of like
this:
res = PQexec(conn, "BEGIN WORK");
res = PQexec(conn, "DECLARE mycur BINARY CURSOR FOR SELECT * FROM mytable");
while (1) {
res = PQexec(conn, "FETCH 8192 FROM mycur");
nrows = PQntuples(res);
if (nrows <= 0) break;
for (i=0; i< nrow; i++) {
/* Extract data from row */
}
}
res = PQexec(conn, "COMMIT");

I have experimented with other values of the number of rows in
the FETCH command, and it doesn't seem to make much difference
in speed or memory usage. The size of the client grows from
4 MB to 72 MB over about a minute. On a sufficiently large
table it will continue to grow until it dies.

I don't do any mallocs at all in my code, so it's libpq that
uses all the memory.

It acts as if each FETCH operation opens a whole new set of
buffers, ignoring the ones that were used before. I suppose
you might need that for reverse fetching and such, but it
works like a memory leak in my application. Is there some way
around this?

Details: This is postgres 7.1 on Red Hat Linux 7.1.

--
* Patrick L. Nolan *
* W. W. Hansen Experimental Physics Laboratory (HEPL) *
* Stanford University *

Responses

Browse pgsql-interfaces by date

  From Date Subject
Next Message Douglas Trainor 2002-07-15 20:48:40 Re: C client memory usage grows
Previous Message Iavor Raytchev 2002-07-14 18:28:22 pgaccess - development effort required