Re: pg_restore hangs on materialized view [SEC=UNCLASSIFIED]

From: rohan(dot)parkes(at)dpc(dot)vic(dot)gov(dot)au
To: pgsql-novice(at)lists(dot)postgresql(dot)org
Subject: Re: pg_restore hangs on materialized view [SEC=UNCLASSIFIED]
Date: 2018-06-24 23:34:41
Message-ID: OFD884CE85.F777EE78-ONCA2582B6.00811160-CA2582B6.0081872B@private.vic.gov.au
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-novice

Having done some more investigation on this, it appears that the problem
is simply that the materialized views are two expensive computationally to
be run on a laptop. We build them on a server with 16GB of RAM, but the
problem occurred when developers wanted a local copy of the database on
their laptops with only 8GB or less. This wasn't immediately apparent as
the views are fairly simple.

Thanks to everyone for their responses.

Rohan Parkes

From: Ed Behn <ed(at)behn(dot)us>
To: Laurenz Albe <laurenz(dot)albe(at)cybertec(dot)at>,
Cc: Rohan Parkes/DPC(at)DPC, pgsql-novice(at)lists(dot)postgresql(dot)org
Date: 23/06/2018 12:09 AM
Subject: Re: pg_restore hangs on materialized view
[SEC=UNCLASSIFIED]

Is it possible that the reason the view is taking so long to build that
there is one or more relevant indexes in one of the source tables that
hasn't been built? That could slow down the creation of the view.

You could try commenting out the code that creates the view, using that to
create the rest of the DB and then add the view.

On Fri, Jun 22, 2018 at 4:47 AM, Laurenz Albe <laurenz(dot)albe(at)cybertec(dot)at>
wrote:
rohan(dot)parkes(at)dpc(dot)vic(dot)gov(dot)au wrote:
> I have made a backup of a database using the pgAdmin backup command.
Attempting to
> restore it to a different server using the pgAdmin restore command
results in the
> process hanging.
>
> I tried using the pg_restore utility in order to get a better output of
the restore process.
> The restore gets to a particular materialized view and then just hangs.
There's no kind
> of error message, so I don't know what is causing the problem. I have
checked the view
> on the original server and it seems fine.
>
> At the moment all I can think to do is to try to exclude the
materialized views from
> the dump file and recreate them manually.

Can you tell us the definition of the materialized view and the objects
its
query is using? Odds are that it is just taking a long time to build.
Is it defined on a foreign table or something similar?

Yours,
Laurenz Albe
Yours
--
Cybertec | https://www.cybertec-postgresql.com

> Please consider the environment before printing this email

Please consider the environment before wasting precious electrons.

----------------------------------------------------------------------
Please consider the environment before printing this email
Notice: This email and any attachments may be confidential and may contain
copyright or privileged material. You must not copy, disclose, distribute, store
or otherwise use this material without permission. Any personal information in
this email must be handled in accordance with the Privacy and Data Protection Act
2014 (Vic) and applicable laws. If you are not the intended recipient, please
notify the sender immediately and destroy all copies of this email and any
attachments. Unless otherwise stated, this email and any attachment do not
represent government policy or constitute official government correspondence. The
State does not accept liability in connection with computer viruses, data
corruption, delay, interruption, unauthorised access or use.

In response to

Browse pgsql-novice by date

  From Date Subject
Next Message Dara Unglaube 2018-06-29 12:41:00 Data stored as scientific notation, unable to convert to numeric
Previous Message Ed Behn 2018-06-22 14:09:10 Re: pg_restore hangs on materialized view [SEC=UNCLASSIFIED]