mirror of https://github.com/citusdata/citus.git
Add use_citus_managed_tables to arbitrary configs
(cherry picked from commit 4e93afd1f78854e1aaab63690c441b0b0598a82c)
(cherry picked from commit 0295fe2f5b
)
(cherry picked from commit 878510725fab9cb6870b4504e0b1f055d7bbc68d)
pull/5572/head
parent
a62901396b
commit
8b9402540f
|
@ -161,6 +161,7 @@ class CitusDefaultClusterConfig(CitusBaseClusterConfig):
|
||||||
new_settings = {
|
new_settings = {
|
||||||
"client_min_messages": "WARNING",
|
"client_min_messages": "WARNING",
|
||||||
"citus.sort_returning": True,
|
"citus.sort_returning": True,
|
||||||
|
"citus.use_citus_managed_tables": True,
|
||||||
}
|
}
|
||||||
self.settings.update(new_settings)
|
self.settings.update(new_settings)
|
||||||
self.add_coordinator_to_metadata = True
|
self.add_coordinator_to_metadata = True
|
||||||
|
@ -291,6 +292,7 @@ class CitusUnusualQuerySettingsConfig(CitusMXBaseClusterConfig):
|
||||||
def __init__(self, arguments):
|
def __init__(self, arguments):
|
||||||
super().__init__(arguments)
|
super().__init__(arguments)
|
||||||
self.new_settings = {
|
self.new_settings = {
|
||||||
|
"citus.use_citus_managed_tables": False,
|
||||||
"citus.task_assignment_policy": "first-replica",
|
"citus.task_assignment_policy": "first-replica",
|
||||||
"citus.enable_fast_path_router_planner": False,
|
"citus.enable_fast_path_router_planner": False,
|
||||||
"citus.enable_local_execution": False,
|
"citus.enable_local_execution": False,
|
||||||
|
|
Loading…
Reference in New Issue