mirror of
https://github.com/postgres/postgres.git
synced 2025-07-02 09:02:37 +03:00
Support parallel bitmap heap scans.
The index is scanned by a single process, but then all cooperating processes can iterate jointly over the resulting set of heap blocks. In the future, we might also want to support using a parallel bitmap index scan to set up for a parallel bitmap heap scan, but that's a job for another day. Dilip Kumar, with some corrections and cosmetic changes by me. The larger patch set of which this is a part has been reviewed and tested by (at least) Andres Freund, Amit Khandekar, Tushar Ahuja, Rafia Sabih, Haribabu Kommi, Thomas Munro, and me. Discussion: http://postgr.es/m/CAFiTN-uc4=0WxRGfCzs-xfkMYcSEWUC-Fon6thkJGjkh9i=13A@mail.gmail.com
This commit is contained in:
@ -2911,6 +2911,30 @@ remove_unused_subquery_outputs(Query *subquery, RelOptInfo *rel)
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* create_partial_bitmap_paths
|
||||
* Build partial bitmap heap path for the relation
|
||||
*/
|
||||
void
|
||||
create_partial_bitmap_paths(PlannerInfo *root, RelOptInfo *rel,
|
||||
Path *bitmapqual)
|
||||
{
|
||||
int parallel_workers;
|
||||
double pages_fetched;
|
||||
|
||||
/* Compute heap pages for bitmap heap scan */
|
||||
pages_fetched = compute_bitmap_pages(root, rel, bitmapqual, 1.0,
|
||||
NULL, NULL);
|
||||
|
||||
parallel_workers = compute_parallel_worker(rel, pages_fetched, 0);
|
||||
|
||||
if (parallel_workers <= 0)
|
||||
return;
|
||||
|
||||
add_partial_path(rel, (Path *) create_bitmap_heap_path(root, rel,
|
||||
bitmapqual, rel->lateral_relids, 1.0, parallel_workers));
|
||||
}
|
||||
|
||||
/*
|
||||
* Compute the number of parallel workers that should be used to scan a
|
||||
* relation. We compute the parallel workers based on the size of the heap to
|
||||
|
Reference in New Issue
Block a user