summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVitalii Gridnev <[email protected]>2025-09-22 14:34:22 -0700
committerGitHub <[email protected]>2025-09-22 14:34:22 -0700
commit3d642f89324844569653a360831bbf0bcf9ff767 (patch)
treef94e2a903be076578aeb7150beb1d2edaa174ff7
parent197bba23f8141236b6a6ecbb4231d97835d9cd7a (diff)
Provide specific workaround (#25490)
-rw-r--r--ydb/tests/library/harness/kikimr_config.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/ydb/tests/library/harness/kikimr_config.py b/ydb/tests/library/harness/kikimr_config.py
index de8fecad5a5..2b660c23c55 100644
--- a/ydb/tests/library/harness/kikimr_config.py
+++ b/ydb/tests/library/harness/kikimr_config.py
@@ -298,6 +298,11 @@ class KikimrConfigGenerator(object):
if os.getenv('YDB_KQP_ENABLE_IMMEDIATE_EFFECTS', 'false').lower() == 'true':
self.yaml_config["table_service_config"]["enable_kqp_immediate_effects"] = True
+ # disable kqp pattern cache on darwin platform to avoid using llvm versions of computational
+ # nodes. These compute nodes are not properly tested and maintained on darwin platform.
+ if sys.platform == "darwin":
+ self.yaml_config["table_service_config"]["resource_manager"]["kqp_pattern_cache_compiled_capacity_bytes"] = 0
+
if os.getenv('PGWIRE_LISTENING_PORT', ''):
self.yaml_config["local_pg_wire_config"] = {}
self.yaml_config["local_pg_wire_config"]["listening_port"] = os.getenv('PGWIRE_LISTENING_PORT')