From: | Gregory Stark <stark(at)enterprisedb(dot)com> |
---|---|
To: | "Francisco Reyes" <lists(at)stringsutils(dot)com> |
Cc: | "PostgreSQL general" <pgsql-general(at)postgresql(dot)org> |
Subject: | Re: pg_restore out of memory |
Date: | 2007-06-15 08:49:31 |
Message-ID: | 87tzt9siuc.fsf@oxford.xeocode.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general |
"Francisco Reyes" <lists(at)stringsutils(dot)com> writes:
> There is no "ulimit -a" in cshell which is what I use.
> I guessed this may be a bash setting .. so tried that..
> The output of ulimit -a is:
The csh equivalent is just "limit".
> core file size (blocks, -c) unlimited
> data seg size (kbytes, -d) 524288
>
> Don't see any limit at 128MB, the size at which the program crashed.
You might try starting Postgres with
ulimit -d unliited
or
limit datasize unlimit
You're right that your limit is above 128M but the error just means it tried
to allocated 128M and failed, it may already have allocated 400M and been
trying to go over the 524M mark.
--
Gregory Stark
EnterpriseDB http://www.enterprisedb.com
From | Date | Subject | |
---|---|---|---|
Next Message | Alban Hertroys | 2007-06-15 08:49:44 | Re: Q: Tree traversal with SQL query? |
Previous Message | A. Kretschmer | 2007-06-15 08:32:38 | Re: "Constant" fields in a table |