From 3eb31b872ffb53d3eedb1df8c9b63c12f471ca2d Mon Sep 17 00:00:00 2001 From: Nikhil Chandrappa Date: Tue, 3 Sep 2024 18:31:55 +0000 Subject: [PATCH] [#23777] yugabyted: update the gflags of pg parity to remove sized based fetching and add bitmap scans. Summary: Removed yb_fetch_row_limit=0, yb_fetch_size_limit=1MB and included yb_enable_bitmapscan=true. Jira: DB-12683 Test Plan: Manual Tests Reviewers: djiang Reviewed By: djiang Subscribers: yugabyted-dev Differential Revision: https://phorge.dev.yugabyte.com/D37748 --- bin/yugabyted | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/bin/yugabyted b/bin/yugabyted index 7244a25c2deb..3917ecdf7e27 100755 --- a/bin/yugabyted +++ b/bin/yugabyted @@ -384,9 +384,8 @@ PG_PARITY_FLAGS_DICT = { "ysql_pg_conf_csv": "yb_enable_base_scans_cost_model=true," "yb_enable_optimizer_statistics=true," "yb_bnl_batch_size=1024," - "yb_fetch_row_limit=0," - "yb_fetch_size_limit=1MB," - "yb_use_hash_splitting_by_default=false" + "yb_use_hash_splitting_by_default=false," + "yb_enable_bitmapscan=true" } # YugaWare configs. These have their own separate subdirectory to preserve our itest flow.