Re: Can postgresql plan a query using multiple CPU cores?

From: Pavel Stehule <pavel(dot)stehule(at)gmail(dot)com>
To: Clemens Eisserer <linuxhippy(at)gmail(dot)com>
Cc: "pgsql-performance(at)postgresql(dot)org" <pgsql-performance(at)postgresql(dot)org>
Subject: Re: Can postgresql plan a query using multiple CPU cores?
Date: 2017-05-23 04:41:36
Message-ID: CAFj8pRDj7xHV908VMF4hmwczrwtbjEeeYyAzLhT28hO9me7OtA@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance

Hi

2017-05-22 22:21 GMT+02:00 Clemens Eisserer <linuxhippy(at)gmail(dot)com>:

> Hi,
>
> I have a letancy-sensitive legacy application, where the time consumed
> by query planning was always causing some headaches.
> Currently it is running on postgresql-8.4 - will postgresql-10 support
> generating plans using multiple CPU cores to reduce the time required
> to generate a single plan?
>

no. PostgreSQL 9.6 and higher uses more CPU only for execution.

For planner speed are important GUC parameters join_collapse_limit,
from_collapse_limit and show geqo_threshold.

You can try to decrease geqo_threshold - with low geqo_threshold you can
increase join_collapse_limit and from_collapse_limit

Regards

Pavel

>
> Thank you in advance and best regards, Clemens
>
>
> --
> Sent via pgsql-performance mailing list (pgsql-performance(at)postgresql(dot)org)
> To make changes to your subscription:
> http://www.postgresql.org/mailpref/pgsql-performance
>

In response to

Browse pgsql-performance by date

  From Date Subject
Next Message Gunnar "Nick" Bluth 2017-05-23 11:03:37 Re: select subquery versus join subquery
Previous Message Mark Kirkwood 2017-05-22 22:37:52 Re: Can postgresql plan a query using multiple CPU cores?