Re: Mount Point /datastorage is 93 percent full

From: Julien Rouhaud <rjuju123(at)gmail(dot)com>
To: Satyamnaidu Gokeda <satyamnaidu215(at)gmail(dot)com>
Cc: pgsql-admin(at)lists(dot)postgresql(dot)org
Subject: Re: Mount Point /datastorage is 93 percent full
Date: 2022-08-03 09:10:57
Message-ID: 20220803091057.vxzprd63y3m6ktx2@jrouhaud
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin

Hi,

On Wed, Aug 03, 2022 at 02:32:05PM +0530, Satyamnaidu Gokeda wrote:
>
> We are getting following error while running this query. As checked

You probably forgot to copy the query here.

> org.jkiss.dbeaver.model.sql.DBSQLException: SQL Error [53400]: ERROR:
> temporary file size exceeds temp_file_limit (52428800kB)

This error is raised because the query used more than temp_file_limit (see
https://www.postgresql.org/docs/current/runtime-config-resource.html#RUNTIME-CONFIG-RESOURCE-DISK)
Your options are to raise that parameter (and maybe increase the
underlying disk given the message subject) or find a way to consume less disk
in temporary files. It's hard to know without knowing the query and the
underlying data, but maybe rewriting the query or splitting it into multiple
queries over a temporary table would work.

In response to

Responses

Browse pgsql-admin by date

  From Date Subject
Next Message James Pang (chaolpan) 2022-08-03 09:23:17 pgbackrest archive.info got deleted unexpected
Previous Message Satyamnaidu Gokeda 2022-08-03 09:02:05 Mount Point /datastorage is 93 percent full