Re: memory leak under heavy load?

From: hubert depesz lubaczewski <depesz(at)gmail(dot)com>
To: PostgreSQL General <pgsql-general(at)postgresql(dot)org>
Subject: Re: memory leak under heavy load?
Date: 2005-11-29 17:46:06
Message-ID: 9e4684ce0511290946i40caa957h887f42f1290f1165@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On 11/29/05, hubert depesz lubaczewski <depesz(at)gmail(dot)com> wrote:
>
> i think i've encountered a bug in postgresql 8.1.
>

now i'm nearly positive it's a bug.

i created database in this way:
CREATE DATABASE leak;
\c leak
CREATE TABLE users (id serial PRIMARY KEY, username TEXT NOT NULL DEFAULT
'', password TEXT);
then made a list of "usernames": from "aaaa" to "czzz" with probability 97%
- 3% are missing.
and then i COPY'ied this list into users.

then:
CREATE UNIQUE INDEX xxx on users (username);
vacuum verbose analyze;

after all of this i run this script:
#!/usr/bin/perl
use strict;
use DBI;

my $dbh = DBI->connect("dbi:Pg:dbname=leak", "pgdba", "", {"AutoCommit" =>
0,
"RaiseError" => 0, "PrintError" => 0}) or die "cannot connect\n";

for (1..1000) {
my $i = 0;
my $q = "zzz";
while (1) {
$dbh->rollback();
$dbh->do("INSERT INTO users (username) VALUES ('$q')");
$dbh->commit();
$q++;
last if $q eq 'fzzz';
$i++;
if (0 == $i % 1000) {
system("ps uxf");
}
}
print "one iteration done\n";
<>;
}
$dbh->disconnect();

technically - i think that after first "iteration" memory usage should not
inreate. but it does.
it does in small amounts, but still does.
can anybody test/confirm the problem?

depesz

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Scott Marlowe 2005-11-29 17:56:47 Re: Errors upgrading from 7.3 to 8.1
Previous Message Brandon E Hofmann 2005-11-29 17:12:58 Question