哪個網(wǎng)站反盜版做的最好域名注冊網(wǎng)站查詢
文章目錄
- openGauss學習筆記-256 openGauss性能調(diào)優(yōu)-使用Plan Hint進行調(diào)優(yōu)-優(yōu)化器GUC參數(shù)的Hint
- 256.1 功能描述
- 256.2 語法格式
- 256.3 參數(shù)說明
openGauss學習筆記-256 openGauss性能調(diào)優(yōu)-使用Plan Hint進行調(diào)優(yōu)-優(yōu)化器GUC參數(shù)的Hint
256.1 功能描述
設置本次查詢執(zhí)行內(nèi)生效的查詢優(yōu)化相關(guān)GUC參數(shù)。hint的推薦使用場景可以參考各guc參數(shù)的說明,此處不作贅述。
256.2 語法格式
set(param value)
256.3 參數(shù)說明
-
param表示參數(shù)名。
-
value表示參數(shù)的取值。
-
目前支持使用Hint設置生效的參數(shù)有
-
布爾類:
enable_bitmapscan, enable_hashagg,enable_hashjoin, enable_indexscan,enable_indexonlyscan, enable_material,enable_mergejoin, enable_nestloop,enable_index_nestloop, enable_seqscan,enable_sort, enable_tidscan,partition_iterator_elimination,partition_page_estimation,enable_functional_dependency,var_eq_const_selectivity,enable_inner_unique_opt
-
整形類:
query_dop
-
浮點類:
cost_weight_index、default_limit_rows、seq_page_cost、random_page_cost、cpu_tuple_cost、cpu_index_tuple_cost、cpu_operator_cost、effective_cache_size
-
枚舉類型:
try_vector_engine_strategy
-
說明:
- 設置不在白名單中的參數(shù),參數(shù)取值不合法,或hint語法錯誤時,不會影響查詢執(zhí)行的正確性。使用explain(verbose on)執(zhí)行可以看到hint解析錯誤的報錯提示。
- GUC參數(shù)的hint只在最外層查詢生效——子查詢內(nèi)的GUC參數(shù)hint不生效。
- 視圖定義內(nèi)的GUC參數(shù)hint不生效。
- CREATE TABLE … AS … 查詢最外層的GUC參數(shù)hint可以生效。
👍 點贊,你的認可是我創(chuàng)作的動力!
?? 收藏,你的青睞是我努力的方向!
?? 評論,你的意見是我進步的財富!