Re: Postgres Admin - Export Database

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: JinNet Picker <netpicker9(at)yahoo(dot)com>
Cc: pgsql-admin(at)postgresql(dot)org
Subject: Re: Postgres Admin - Export Database
Date: 2004-04-13 17:16:29
Message-ID: 24254.1081876589@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin

JinNet Picker <netpicker9(at)yahoo(dot)com> writes:
> "LOG: out of file descriptors: Too many open files;
> release and retry"
> Can anybody tell me what is this? And what i have to
> do clear this out??

You need to either increase your kernel's limit on the number of
simultaneously open files, or reduce Postgres' appetite for open files.
To do the latter, reduce max_files_per_process in postgresql.conf
(usually 50 to 100 should be an adequate setting that won't degrade
performance much). Doing the former depends on what platform you're on,
which you didn't say.

Although Postgres itself will usually survive well when the open-files
table is full, other applications on the system are likely to start
falling over :-(. So it's a real good idea to fix this one way or the
other.

regards, tom lane

In response to

Browse pgsql-admin by date

  From Date Subject
Next Message Bruce Momjian 2004-04-13 18:26:15 Re: log_min_cost_statement
Previous Message Greg Spiegelberg 2004-04-13 16:33:05 Re: Postgres Admin - Export Database