mz_adapter/coord/
catalog_serving.rs1use mz_expr::CollectionPlan;
22use mz_repr::GlobalId;
23use mz_sql::catalog::SessionCatalog;
24use mz_sql::plan::{
25 ExplainPlanPlan, ExplainTimestampPlan, Explainee, ExplaineeStatement, Plan, SubscribeFrom,
26 SubscribePlan,
27};
28use smallvec::SmallVec;
29
30use crate::AdapterError;
31use crate::catalog::ConnCatalog;
32use crate::coord::TargetCluster;
33use crate::notice::AdapterNotice;
34use crate::session::Session;
35use mz_catalog::builtin::MZ_CATALOG_SERVER_CLUSTER;
36
37pub fn auto_run_on_catalog_server<'a, 's, 'p>(
40 catalog: &'a ConnCatalog<'a>,
41 session: &'s Session,
42 plan: &'p Plan,
43) -> TargetCluster {
44 let inspect_subscribe = |plan: &SubscribePlan| {
45 (
46 plan.from.depends_on(),
47 match &plan.from {
48 SubscribeFrom::Id(_) => false,
49 SubscribeFrom::Query { expr, desc: _ } => expr.could_run_expensive_function(),
50 },
51 )
52 };
53
54 let (depends_on, could_run_expensive_function) = match plan {
55 Plan::Select(plan) => (
56 plan.source.depends_on(),
57 plan.source.could_run_expensive_function(),
58 ),
59 Plan::ShowColumns(plan) => (
60 plan.select_plan.source.depends_on(),
61 plan.select_plan.source.could_run_expensive_function(),
62 ),
63 Plan::Subscribe(plan) => inspect_subscribe(plan),
64 Plan::ExplainPlan(ExplainPlanPlan {
65 explainee: Explainee::Statement(ExplaineeStatement::Select { plan, .. }),
66 ..
67 }) => (
68 plan.source.depends_on(),
69 plan.source.could_run_expensive_function(),
70 ),
71 Plan::ExplainPlan(ExplainPlanPlan {
72 explainee: Explainee::Statement(ExplaineeStatement::Subscribe { plan, .. }),
73 ..
74 }) => inspect_subscribe(plan),
75 Plan::ExplainTimestamp(ExplainTimestampPlan { raw_plan, .. }) => (
76 raw_plan.depends_on(),
77 raw_plan.could_run_expensive_function(),
78 ),
79 Plan::CreateConnection(_)
80 | Plan::CreateDatabase(_)
81 | Plan::CreateSchema(_)
82 | Plan::CreateRole(_)
83 | Plan::CreateNetworkPolicy(_)
84 | Plan::CreateCluster(_)
85 | Plan::CreateClusterReplica(_)
86 | Plan::CreateSource(_)
87 | Plan::CreateSources(_)
88 | Plan::CreateSecret(_)
89 | Plan::CreateSink(_)
90 | Plan::CreateTable(_)
91 | Plan::CreateView(_)
92 | Plan::CreateMaterializedView(_)
93 | Plan::CreateIndex(_)
94 | Plan::CreateMetricSink(_)
95 | Plan::CreateType(_)
96 | Plan::Comment(_)
97 | Plan::DiscardTemp
98 | Plan::DiscardAll
99 | Plan::DropObjects(_)
100 | Plan::DropOwned(_)
101 | Plan::EmptyQuery
102 | Plan::ShowAllVariables
103 | Plan::ShowCreate(_)
104 | Plan::ShowVariable(_)
105 | Plan::InspectShard(_)
106 | Plan::SetVariable(_)
107 | Plan::ResetVariable(_)
108 | Plan::SetTransaction(_)
109 | Plan::StartTransaction(_)
110 | Plan::CommitTransaction(_)
111 | Plan::AbortTransaction(_)
112 | Plan::CopyFrom(_)
113 | Plan::CopyTo(_)
114 | Plan::ExplainPlan(ExplainPlanPlan {
115 explainee:
116 Explainee::Statement(
117 ExplaineeStatement::CreateView { .. }
120 | ExplaineeStatement::CreateMaterializedView { .. }
121 | ExplaineeStatement::CreateIndex { .. },
122 ),
123 ..
124 })
125 | Plan::ExplainPlan(ExplainPlanPlan { explainee: _, .. })
126 | Plan::ExplainPushdown(_)
127 | Plan::ExplainSinkSchema(_)
128 | Plan::Insert(_)
129 | Plan::AlterNetworkPolicy(_)
130 | Plan::AlterNoop(_)
131 | Plan::AlterClusterRename(_)
132 | Plan::AlterClusterSwap(_)
133 | Plan::AlterClusterReplicaRename(_)
134 | Plan::AlterCluster(_)
135 | Plan::AlterConnection(_)
136 | Plan::AlterSource(_)
137 | Plan::AlterSetCluster(_)
138 | Plan::AlterItemRename(_)
139 | Plan::AlterRetainHistory(_)
140 | Plan::AlterSourceTimestampInterval(_)
141 | Plan::AlterSchemaRename(_)
142 | Plan::AlterSchemaSwap(_)
143 | Plan::AlterSecret(_)
144 | Plan::AlterSink(_)
145 | Plan::AlterSystemSet(_)
146 | Plan::AlterSystemReset(_)
147 | Plan::AlterSystemResetAll(_)
148 | Plan::AlterRole(_)
149 | Plan::AlterOwner(_)
150 | Plan::AlterTableAddColumn(_)
151 | Plan::AlterMaterializedViewApplyReplacement(_)
152 | Plan::Declare(_)
153 | Plan::Fetch(_)
154 | Plan::Close(_)
155 | Plan::ReadThenWrite(_)
156 | Plan::Prepare(_)
157 | Plan::Execute(_)
158 | Plan::Deallocate(_)
159 | Plan::Raise(_)
160 | Plan::GrantRole(_)
161 | Plan::RevokeRole(_)
162 | Plan::GrantPrivileges(_)
163 | Plan::RevokePrivileges(_)
164 | Plan::AlterDefaultPrivileges(_)
165 | Plan::ReassignOwned(_)
166 | Plan::ValidateConnection(_)
167 | Plan::SideEffectingFunc(_) => return TargetCluster::Active,
168 };
169
170 if !session.vars().auto_route_catalog_queries() {
172 return TargetCluster::Active;
173 }
174
175 if session.vars().cluster_replica().is_some() {
177 return TargetCluster::Active;
178 }
179
180 let mut depends_on = depends_on
182 .into_iter()
183 .map(|gid| catalog.resolve_item_id(&gid))
184 .peekable();
185 let has_dependencies = depends_on.peek().is_some();
186
187 let valid_dependencies = depends_on.all(|id| {
190 let entry = catalog.state().get_entry(&id);
191 let schema = entry.name().qualifiers.schema_spec;
192
193 let system_only = catalog.state().is_system_schema_specifier(schema);
194 let non_replica = catalog.state().introspection_dependencies(id).is_empty();
195
196 system_only && non_replica
197 });
198
199 if (has_dependencies && valid_dependencies)
200 || (!has_dependencies && !could_run_expensive_function)
201 {
202 let intros_cluster = catalog
203 .state()
204 .resolve_builtin_cluster(&MZ_CATALOG_SERVER_CLUSTER);
205 tracing::debug!("Running on '{}' cluster", MZ_CATALOG_SERVER_CLUSTER.name);
206
207 if intros_cluster.name != session.vars().cluster() {
209 session.add_notice(AdapterNotice::AutoRunOnCatalogServerCluster);
210 }
211 TargetCluster::CatalogServer
212 } else {
213 TargetCluster::Active
214 }
215}
216
217pub fn check_cluster_restrictions(
220 cluster: &str,
221 catalog: &impl SessionCatalog,
222 plan: &Plan,
223) -> Result<(), AdapterError> {
224 if cluster != MZ_CATALOG_SERVER_CLUSTER.name {
226 return Ok(());
227 }
228
229 let depends_on: Box<dyn Iterator<Item = GlobalId>> = match plan {
237 Plan::ReadThenWrite(plan) => Box::new(plan.selection.depends_on().into_iter()),
238 Plan::Insert(plan) => Box::new(plan.values.depends_on().into_iter()),
245 Plan::Subscribe(plan) => match plan.from {
246 SubscribeFrom::Id(id) => Box::new(std::iter::once(id)),
247 SubscribeFrom::Query { ref expr, .. } => Box::new(expr.depends_on().into_iter()),
248 },
249 Plan::Select(plan) => Box::new(plan.source.depends_on().into_iter()),
250 Plan::CopyTo(plan) => Box::new(plan.select_plan.source.depends_on().into_iter()),
254 _ => return Ok(()),
255 };
256
257 let unallowed_dependents: SmallVec<[String; 2]> = depends_on
263 .filter_map(|id| {
264 let item = catalog.get_item_by_global_id(&id);
265 let schema_spec = item.name().qualifiers.schema_spec;
266
267 if !catalog.is_system_schema_specifier(schema_spec) {
268 let full_name = catalog.resolve_full_name(item.name());
269 Some(full_name.to_string())
270 } else {
271 None
272 }
273 })
274 .collect();
275
276 if !unallowed_dependents.is_empty() {
278 Err(AdapterError::UnallowedOnCluster {
279 depends_on: unallowed_dependents,
280 cluster: MZ_CATALOG_SERVER_CLUSTER.name.to_string(),
281 })
282 } else {
283 Ok(())
284 }
285}