You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thank you for this project! While using the example in PostgreSQL Columnar Store for Analytic Workloads i wanted to compare the query to using cstore_fdw and without and I noticed that the query was not utilizing parallelization for the following query:
EXPLAIN SELECT
width_bucket(length(product_title), 1, 50, 5) title_length_bucket,
round(avg(review_rating), 2) AS review_average,
count(*)
FROM
customer_reviews_cstore
WHERE
product_group ='Book'GROUP BY
title_length_bucket
ORDER BY
title_length_bucket;
Thank you for this project! While using the example in PostgreSQL Columnar Store for Analytic Workloads i wanted to compare the query to using
cstore_fdw
and without and I noticed that the query was not utilizing parallelization for the following query:Here is the output:
For the same table without
cstore_fdw
I get the following output:Is there some setting that I have missed? I saw that foreign scans are marked as parallel safe in #198, is this supported in PostgreSQL 12?
The text was updated successfully, but these errors were encountered: