PostgreSQL11preview-平行計算增強彙總
標籤
PostgreSQL , 並行 , 增強 , 11
背景
PostgreSQL 11 平行計算能力的增強。
E.1.3.1.2. Parallel Queries
-
Allow btree indexes to be built in parallel (Peter Geoghegan, Rushabh Lathia, Heikki Linnakangas)
支援並行排序,支援並行建立索引(並行寫索引檔案)。
《PostgreSQL 11 preview – 並行排序、並行索引 (效能線性暴增) 單例項100億TOP-K僅40秒》
-
Allow hash joins to be performed in parallel using a shared hash table (Thomas Munro)
HASH JOIN支援共享雜湊表了。原來是每個parallel worker程式一份雜湊表副本。
-
Allow UNION to run each SELECT in parallel if the individual SELECTs cannot be parallelized (Amit Khandekar, Robert Haas, Amul Sul)
當各個UNION ALL內的子句無法支援並行時,PostgreSQL 11會選擇union的各個子句並行。
query1 union query2 union query3; 當query1,query2,query3 這些QUERY本身無法並行執行時。 PostgreSQL 11, 選擇讓 query1,query2,query3 同時執行。 老版本, 無法並行。
《PostgreSQL 11 preview – Parallel Append(包括 union all分割槽查詢) (多表平行計算) sharding架構平行計算核心功能之一》
-
Allow partition scans to more efficiently use parallel workers (Amit Khandekar, Robert Haas, Amul Sul)
同上,支援paralle append掃描多個子分割槽。
-
Allow LIMIT to be passed to parallel workers (Robert Haas, Tom Lane)
This allows workers to reduce returned results and use targeted index scans.
允許LIMIT子句下層到各個paralle worker程式。加速帶LIMIT的並行查詢。
-
Allow single-evaluation queries, e.g. WHERE clause aggregate queries, and functions in the target list to be parallelized (Amit Kapila, Robert Haas)
允許”單次評估的QUERY”並行執行,例如”where子句中的聚合子句”,”select目標中的函式”。
-
Add server option parallel_leader_participation to control if the leader executes subplans (Thomas Munro)
The default is enabled, meaning the leader will execute subplans.
Allows the leader process to execute the query plan under Gather and Gather Merge nodes instead of waiting for worker processes. The default is on. Setting this value to off reduces the likelihood that workers will become blocked because the leader is not reading tuples fast enough, but requires the leader process to wait for worker processes to start up before the first tuples can be produced. The degree to which the leader can help or hinder performance depends on the plan type, number of workers and query duration.
允許parallel leader 程式在gather或gather merge節點主動接收worker程式產生的資料,而不是等待。
-
Allow parallelization of commands CREATE TABLE .. AS, SELECT INTO, and CREATE MATERIALIZED VIEW (Haribabu Kommi)
允許CREATE TABLE .. AS, SELECT INTO, and CREATE MATERIALIZED VIEW這幾類SQL並行執行。
-
Improve performance of sequential scans with many parallel workers (David Rowley)
並行全表掃描效能增強。
-
Add reporting of parallel worker sort activity to EXPLAIN (Robert Haas, Tom Lane)
explain增加輸出詳情,包括parallel worker節點排序的統計資訊。
相關文章
- PostgreSQL11preview-索引增強彙總SQLView索引
- PostgreSQL11preview-分割槽表增強彙總SQLView
- PostgreSQL11preview-優化器增強彙總SQLView優化
- 平行計算π值
- Oracle平行計算Oracle
- 平行計算cuda
- GPU:平行計算利器GPU
- 隱私計算資料彙總
- 淺談.NET下的多執行緒和平行計算(十四)平行計算前言執行緒
- 平行計算與Neon簡介
- java8平行計算Java
- 雲端計算分散式平行計算:系統架構分散式架構
- pandas小記:pandas計算工具-彙總統計
- 增強邊緣計算的安全性
- 大文字平行計算實現方式
- OpenCV使用ParallelLoopBody進行平行計算OpenCVParallelOOP
- springboot~CompletableFuture平行計算Spring Boot
- 計算機開放電子書彙總計算機
- PostgreSQL11preview-ParallelAppend(多表平行計算)sharding架構平行計算核心功能之一SQLViewParallelAPP架構
- 瞭解Flow -- elixir的平行計算庫
- 引文——平行計算的學習之殤
- 多核平行計算時代的來臨
- 請問,平行計算和資料庫資料庫
- 後端請求中的非同步計算與平行計算後端非同步
- 黃仁勳:序列計算過時平行計算是未來
- 結對專案-增強型科學計算器
- [930]python平行計算框架pathos模組Python框架
- 【1】Embarrassingly Parallel(易平行計算問題)Parallel
- 大資料平行計算利器之MPI/OpenMP大資料
- 推薦文章:多執行緒平行計算執行緒
- JDK7的平行計算功能升級JDK
- HPC高效能運算知識: 異構平行計算
- 完數的OpenMP並行程式設計-平行計算並行行程程式設計
- 完數的MPI並行程式設計-平行計算並行行程程式設計
- 計算機視覺--CV技術指南文章彙總計算機視覺
- 雲端計算 常見問題案例彙總情況
- Java通過Fork/Join來優化平行計算Java優化
- 在“平行計算”中增加了幾篇文章