Search Postgresql Archives

Re: Parallel Aware

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Tue, Feb 27, 2018 at 1:15 AM, Marwan Almaymoni <marwan.mmm@xxxxxxxxx> wrote:
> Hi,
>
> I'm trying to run my query in parallel mode. I have setup my tables with "
> WITH(parallel_workers=2)" storage parameter and I've created indexes for
> needed attributes.
> I have also set:
> max_worker_processes = 100
> max_parallel_workers_per_gather = 2
> max_parallel_workers = 100
>
> However, when I uses EXPLAIN to check the query plan, all of the nodes are
> set to "Parallel Aware"=false. Am I missing something?
>
> Here is my tables and indexes:
> CREATE TABLE t1(id int PRIMARY KEY, name varchar(200))
> WITH(parallel_workers=2);
> CREATE TABLE t2(id int PRIMARY KEY, fid int, value varchar(200))
> WITH(parallel_workers=2);
> CREATE INDEX ind_t1_id ON t1 USING HASH (id);
> CREATE INDEX ind_t2_fid ON t2 USING HASH (fid);
>
Parallel index scans/bitmap heap scans are only supported for btree indexes.

> Here's the query I tested with EXPLAIN:
> SELECT * FROM t1 INNER JOIN t2 ON t1.id = t2.fid WHERE t1.id > 100;
>



-- 
Regards,
Rafia Sabih
EnterpriseDB: http://www.enterprisedb.com/




[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Postgresql Jobs]     [Postgresql Admin]     [Postgresql Performance]     [Linux Clusters]     [PHP Home]     [PHP on Windows]     [Kernel Newbies]     [PHP Classes]     [PHP Books]     [PHP Databases]     [Postgresql & PHP]     [Yosemite]

  Powered by Linux