pgsql: Enable parallel query by default.

From: Robert Haas <rhaas(at)postgresql(dot)org>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Enable parallel query by default.
Date: 2016-04-26 12:36:38
Message-ID: E1av2EI-0001PW-5a@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Enable parallel query by default.

Change max_parallel_degree default from 0 to 2. It is possible that
this is not a good idea, or that we should go with 1 worker rather
than 2, but we won't find out without trying it. Along the way,
reword the documentation for max_parallel_degree a little bit to
hopefully make it more clear.

Discussion: 20160420174631(dot)3qjjhpwsvvx5bau5(at)alap3(dot)anarazel(dot)de

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/77cd477c4ba885cfa1ba67beaa82e06f2e182b85

Modified Files
--------------
doc/src/sgml/config.sgml | 12 ++++++++----
src/backend/optimizer/path/costsize.c | 2 +-
src/backend/utils/misc/guc.c | 2 +-
src/backend/utils/misc/postgresql.conf.sample | 2 +-
4 files changed, 11 insertions(+), 7 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2016-04-26 15:24:22 pgsql: Yet more portability hacking for degree-based trig functions.
Previous Message Dean Rasheed 2016-04-26 10:59:58 Re: [COMMITTERS] pgsql: Add trigonometric functions that work in degrees.