Skip to main content

mz_environmentd/
lib.rs

1// Copyright Materialize, Inc. and contributors. All rights reserved.
2//
3// Use of this software is governed by the Business Source License
4// included in the LICENSE file.
5//
6// As of the Change Date specified in that file, in accordance with
7// the Business Source License, use of this software will be governed
8// by the Apache License, Version 2.0.
9
10#![recursion_limit = "256"]
11
12//! A SQL stream processor built on top of [timely dataflow] and
13//! [differential dataflow].
14//!
15//! [differential dataflow]: ../differential_dataflow/index.html
16//! [timely dataflow]: ../timely/index.html
17
18use ::http::HeaderValue;
19use std::collections::{BTreeMap, BTreeSet};
20use std::panic::AssertUnwindSafe;
21use std::path::PathBuf;
22use std::pin::Pin;
23use std::sync::{Arc, LazyLock, Mutex};
24use std::time::{Duration, Instant};
25use std::{env, io};
26
27use anyhow::{Context, anyhow};
28use derivative::Derivative;
29use futures::FutureExt;
30use ipnet::IpNet;
31use mz_adapter::config::{
32    SystemParameterSyncClientConfig, SystemParameterSyncConfig, system_parameter_sync,
33};
34use mz_adapter::webhook::WebhookConcurrencyLimiter;
35use mz_adapter::{AdapterError, Client as AdapterClient, load_remote_system_parameters};
36use mz_adapter_types::bootstrap_builtin_cluster_config::BootstrapBuiltinClusterConfig;
37use mz_adapter_types::dyncfgs::{
38    ENABLE_0DT_DEPLOYMENT_PANIC_AFTER_TIMEOUT, WITH_0DT_DEPLOYMENT_DDL_CHECK_INTERVAL,
39    WITH_0DT_DEPLOYMENT_MAX_WAIT,
40};
41use mz_auth::password::Password;
42use mz_authenticator::GenericOidcAuthenticator;
43use mz_build_info::{BuildInfo, build_info};
44use mz_catalog::config::ClusterReplicaSizeMap;
45use mz_catalog::durable::BootstrapArgs;
46use mz_cloud_resources::CloudResourceController;
47use mz_controller::ControllerConfig;
48use mz_dyncfg::ConfigSet;
49use mz_frontegg_auth::Authenticator as FronteggAuthenticator;
50use mz_license_keys::ValidatedLicenseKey;
51use mz_ore::future::OreFutureExt;
52use mz_ore::metrics::MetricsRegistry;
53use mz_ore::now::NowFn;
54use mz_ore::tracing::TracingHandle;
55use mz_ore::url::SensitiveUrl;
56use mz_ore::{instrument, task};
57use mz_persist_client::cache::PersistClientCache;
58use mz_persist_client::usage::StorageUsageClient;
59use mz_pgwire::MetricsConfig;
60use mz_pgwire_common::ConnectionCounter;
61use mz_repr::strconv;
62use mz_secrets::SecretsController;
63use mz_server_core::listeners::v26_32_0::ListenersConfig;
64use mz_server_core::listeners::{HttpListenerConfig, ListenerConfig, SqlListenerConfig};
65use mz_server_core::{
66    ConnectionStream, ListenerHandle, ReloadTrigger, ReloadingSslContext, ServeConfig,
67    TlsCertConfig, TlsMode,
68};
69use mz_sql::catalog::EnvironmentId;
70use mz_sql::session::vars::{Value, VarInput};
71use tokio::sync::oneshot;
72use tower_http::cors::AllowOrigin;
73use tracing::{Instrument, info, info_span};
74
75use crate::deployment::preflight::{PreflightInput, PreflightOutput};
76use crate::deployment::state::DeploymentState;
77use crate::http::{HttpConfig, HttpServer, InternalRouteConfig};
78
79pub use crate::http::{SqlResponse, WebSocketAuth, WebSocketResponse};
80
81mod deployment;
82pub mod environmentd;
83pub mod http;
84mod telemetry;
85#[cfg(feature = "test")]
86pub mod test_util;
87
88pub const BUILD_INFO: BuildInfo = build_info!();
89
90/// Configuration for an `environmentd` server.
91#[derive(Derivative)]
92#[derivative(Debug)]
93pub struct Config {
94    // === Special modes. ===
95    /// Whether to permit usage of unsafe features. This is never meant to run
96    /// in production.
97    pub unsafe_mode: bool,
98    /// Whether the environmentd is running on a local dev machine. This is
99    /// never meant to run in production or CI.
100    pub all_features: bool,
101
102    // === Connection options. ===
103    /// TLS encryption and authentication configuration.
104    pub tls: Option<TlsCertConfig>,
105    /// Trigger to attempt to reload TLS certififcates.
106    #[derivative(Debug = "ignore")]
107    pub tls_reload_certs: ReloadTrigger,
108    /// Password of the mz_system user.
109    pub external_login_password_mz_system: Option<Password>,
110    /// Frontegg JWT authenticator.
111    pub frontegg: Option<FronteggAuthenticator>,
112    /// Frontegg workspace URL advertised in MCP OAuth discovery.
113    pub frontegg_oauth_issuer_url: Option<String>,
114    /// Origins for which cross-origin resource sharing (CORS) for HTTP requests
115    /// is permitted.
116    pub cors_allowed_origin: AllowOrigin,
117    /// Raw list of allowed CORS origins. Retained alongside `cors_allowed_origin`
118    /// (which is the computed predicate) so that endpoints like MCP can perform
119    /// server-side Origin validation to defend against DNS rebinding attacks
120    /// (where same-origin requests bypass CORS enforcement).
121    pub cors_allowed_origin_list: Vec<HeaderValue>,
122    /// Public IP addresses which the cloud environment has configured for
123    /// egress.
124    pub egress_addresses: Vec<IpNet>,
125    /// The external host name to connect to the HTTP server of this
126    /// environment.
127    ///
128    /// Presently used to render webhook URLs for end users in notices and the
129    /// system catalog. Not used to establish connections directly.
130    pub http_host_name: Option<String>,
131    /// The URL of the Materialize console to proxy from the /internal-console
132    /// endpoint on the internal HTTP server.
133    pub internal_console_redirect_url: Option<String>,
134
135    // === Controller options. ===
136    /// Storage and compute controller configuration.
137    pub controller: ControllerConfig,
138    /// Secrets controller configuration.
139    pub secrets_controller: Arc<dyn SecretsController>,
140    /// VpcEndpoint controller configuration.
141    pub cloud_resource_controller: Option<Arc<dyn CloudResourceController>>,
142    /// The process-wide live system dyncfg set.
143    pub system_dyncfgs: Arc<ConfigSet>,
144
145    // === Storage options. ===
146    /// The interval at which to collect storage usage information.
147    pub storage_usage_collection_interval: Duration,
148    /// How long to retain storage usage records for.
149    pub storage_usage_retention_period: Option<Duration>,
150
151    // === Adapter options. ===
152    /// Catalog configuration.
153    pub catalog_config: CatalogConfig,
154    /// Availability zones in which storage and compute resources may be
155    /// deployed.
156    pub availability_zones: Vec<String>,
157    /// A map from size name to resource allocations for cluster replicas.
158    pub cluster_replica_sizes: ClusterReplicaSizeMap,
159    /// The PostgreSQL URL for the Postgres-backed timestamp oracle.
160    pub timestamp_oracle_url: Option<SensitiveUrl>,
161    /// An API key for Segment. Enables export of audit events to Segment.
162    pub segment_api_key: Option<String>,
163    /// Whether the Segment client is being used on the client side
164    /// (rather than the server side).
165    pub segment_client_side: bool,
166    /// Only create a dummy segment client, only to get more testing coverage.
167    pub test_only_dummy_segment_client: bool,
168    /// An SDK key for LaunchDarkly. Enables system parameter synchronization
169    /// with LaunchDarkly.
170    pub launchdarkly_sdk_key: Option<String>,
171    /// Overrides the LaunchDarkly service endpoints with a single base URL, as
172    /// for a relay proxy or a mock server in tests.
173    pub launchdarkly_base_uri: Option<String>,
174    /// An invertible map from system parameter names to LaunchDarkly feature
175    /// keys to use when propagating values from the latter to the former.
176    pub launchdarkly_key_map: BTreeMap<String, String>,
177    /// The duration at which the system parameter synchronization times out during startup.
178    pub config_sync_timeout: Duration,
179    /// The interval in seconds at which to synchronize system parameter values.
180    pub config_sync_loop_interval: Option<Duration>,
181    /// The path for file based config sync
182    pub config_sync_file_path: Option<PathBuf>,
183
184    // === Bootstrap options. ===
185    /// The cloud ID of this environment.
186    pub environment_id: EnvironmentId,
187    /// What role, if any, should be initially created with elevated privileges.
188    pub bootstrap_role: Option<String>,
189    /// The size of the default cluster replica if bootstrapping.
190    pub bootstrap_default_cluster_replica_size: String,
191    /// The default number of replicas if bootstrapping.
192    pub bootstrap_default_cluster_replication_factor: u32,
193    /// The config of the builtin system cluster replicas if bootstrapping.
194    pub bootstrap_builtin_system_cluster_config: BootstrapBuiltinClusterConfig,
195    /// The config of the builtin catalog server cluster replicas if bootstrapping.
196    pub bootstrap_builtin_catalog_server_cluster_config: BootstrapBuiltinClusterConfig,
197    /// The config of the builtin probe cluster replicas if bootstrapping.
198    pub bootstrap_builtin_probe_cluster_config: BootstrapBuiltinClusterConfig,
199    /// The config of the builtin support cluster replicas if bootstrapping.
200    pub bootstrap_builtin_support_cluster_config: BootstrapBuiltinClusterConfig,
201    /// The config of the builtin analytics cluster replicas if bootstrapping.
202    pub bootstrap_builtin_analytics_cluster_config: BootstrapBuiltinClusterConfig,
203    /// Values to set for system parameters, if those system parameters have not
204    /// already been set by the system user.
205    pub system_parameter_defaults: BTreeMap<String, String>,
206    /// Helm chart version
207    pub helm_chart_version: Option<String>,
208    /// Configuration managed by license keys
209    pub license_key: ValidatedLicenseKey,
210
211    // === AWS options. ===
212    /// The AWS account ID, which will be used to generate ARNs for
213    /// Materialize-controlled AWS resources.
214    pub aws_account_id: Option<String>,
215    /// Supported AWS PrivateLink availability zone ids.
216    pub aws_privatelink_availability_zones: Option<Vec<String>>,
217
218    // === Observability options. ===
219    /// The metrics registry to use.
220    pub metrics_registry: MetricsRegistry,
221    /// Handle to tracing.
222    pub tracing_handle: TracingHandle,
223
224    // === Testing options. ===
225    /// A now generation function for mocking time.
226    pub now: NowFn,
227    /// If `Some`, force running builtin schema migration using the specified
228    /// migration mechanism ("evolution" or "replacement").
229    pub force_builtin_schema_migration: Option<String>,
230}
231
232/// Configuration for the Catalog.
233#[derive(Debug, Clone)]
234pub struct CatalogConfig {
235    /// A process-global cache of (blob_uri, consensus_uri) -> PersistClient.
236    pub persist_clients: Arc<PersistClientCache>,
237    /// Persist catalog metrics.
238    pub metrics: Arc<mz_catalog::durable::Metrics>,
239}
240
241pub struct Listener<C> {
242    pub handle: ListenerHandle,
243    connection_stream: Pin<Box<dyn ConnectionStream>>,
244    config: C,
245}
246impl<C> Listener<C>
247where
248    C: ListenerConfig,
249{
250    /// Initializes network listeners for a later call to `serve` at the
251    /// specified addresses.
252    ///
253    /// Splitting this function out from `serve` has two benefits:
254    ///
255    ///   * It initializes network listeners as early as possible, so that the OS
256    ///     will queue incoming connections while the server is booting.
257    ///
258    ///   * It allows the caller to communicate with the server via the internal
259    ///     HTTP port while it is booting.
260    ///
261    async fn bind(config: C) -> Result<Self, io::Error> {
262        let (handle, connection_stream) = mz_server_core::listen(&config.addr()).await?;
263        Ok(Self {
264            handle,
265            connection_stream,
266            config,
267        })
268    }
269}
270
271impl Listener<SqlListenerConfig> {
272    #[instrument(name = "environmentd::serve_sql")]
273    pub async fn serve_sql(
274        self,
275        name: String,
276        active_connection_counter: ConnectionCounter,
277        tls_reloading_context: Option<ReloadingSslContext>,
278        frontegg: Option<FronteggAuthenticator>,
279        adapter_client: AdapterClient,
280        oidc: GenericOidcAuthenticator,
281        metrics: MetricsConfig,
282        helm_chart_version: Option<String>,
283    ) -> ListenerHandle {
284        let label = leak_listener_name(&name);
285        let tls = tls_reloading_context.map(|context| mz_server_core::ReloadingTlsConfig {
286            context,
287            mode: if self.config.enable_tls {
288                TlsMode::Require
289            } else {
290                TlsMode::Allow
291            },
292        });
293
294        task::spawn(|| format!("{}_sql_server", label), {
295            let sql_server = mz_pgwire::Server::new(mz_pgwire::Config {
296                label,
297                tls,
298                adapter_client,
299                authenticator_kind: self.config.authenticator_kind,
300                frontegg,
301                oidc,
302                metrics,
303                active_connection_counter,
304                helm_chart_version,
305                allowed_roles: self.config.allowed_roles,
306            });
307            mz_server_core::serve(ServeConfig {
308                conns: self.connection_stream,
309                server: sql_server,
310                // `environmentd` does not currently need to dynamically
311                // configure graceful termination behavior.
312                dyncfg: None,
313            })
314        });
315        self.handle
316    }
317}
318
319impl Listener<HttpListenerConfig> {
320    #[instrument(name = "environmentd::serve_http")]
321    pub async fn serve_http(self, config: HttpConfig) -> ListenerHandle {
322        let task_name = format!("{}_http_server", config.source);
323        task::spawn(|| task_name, {
324            let http_server = HttpServer::new(config);
325            mz_server_core::serve(ServeConfig {
326                conns: self.connection_stream,
327                server: http_server,
328                // `environmentd` does not currently need to dynamically
329                // configure graceful termination behavior.
330                dyncfg: None,
331            })
332        });
333        self.handle
334    }
335}
336
337/// The `&'static str` listener names handed to the metrics layers, kept so that
338/// a process which serves repeatedly reuses one allocation per name.
339static LISTENER_NAMES: LazyLock<Mutex<BTreeSet<&'static str>>> =
340    LazyLock::new(|| Mutex::new(BTreeSet::new()));
341
342/// Returns a `&'static str` for `name`, leaking it on first use.
343///
344/// The metrics layer a listener is wired into wants a `'static` label. Leaking
345/// is how it gets one, but an unconditional leak both grows with every restart
346/// in a process that serves more than once, such as `sqllogictest`, and reads
347/// to LeakSanitizer as a genuine leak that fails the process at exit. Holding
348/// the leaked strs in a static solves both: one allocation per distinct name,
349/// still reachable at exit.
350fn leak_listener_name(name: &str) -> &'static str {
351    let mut names = LISTENER_NAMES.lock().expect("lock poisoned");
352    if let Some(name) = names.get(name) {
353        return name;
354    }
355    let name: &'static str = Box::leak(name.to_owned().into_boxed_str());
356    names.insert(name);
357    name
358}
359
360pub struct Listeners {
361    pub http: BTreeMap<String, Listener<HttpListenerConfig>>,
362    pub sql: BTreeMap<String, Listener<SqlListenerConfig>>,
363}
364
365impl Listeners {
366    pub async fn bind(config: ListenersConfig) -> Result<Self, io::Error> {
367        let mut sql = BTreeMap::new();
368        for (name, config) in config.sql {
369            sql.insert(name, Listener::bind(config).await?);
370        }
371
372        let mut http = BTreeMap::new();
373        for (name, config) in config.http {
374            http.insert(name, Listener::bind(config).await?);
375        }
376
377        Ok(Listeners { http, sql })
378    }
379
380    /// Starts an `environmentd` server.
381    ///
382    /// Returns a handle to the server once it is fully booted.
383    #[instrument(name = "environmentd::serve")]
384    pub async fn serve(self, config: Config) -> Result<Server, AdapterError> {
385        let serve_start = Instant::now();
386        info!("startup: envd serve: beginning");
387        info!("startup: envd serve: preamble beginning");
388
389        // Validate TLS configuration, if present.
390        let tls_reloading_context = match config.tls {
391            Some(tls_config) => Some(tls_config.reloading_context(config.tls_reload_certs)?),
392            None => None,
393        };
394
395        let active_connection_counter = ConnectionCounter::default();
396        let (deployment_state, deployment_state_handle) = DeploymentState::new();
397
398        // Launch HTTP servers.
399        //
400        // We start these servers before we've completed initialization so that
401        // metrics are accessible during initialization. Some HTTP
402        // endpoints require the adapter to be initialized; requests to those
403        // endpoints block until the adapter client is installed.
404        // One of these endpoints is /api/readyz,
405        // which assumes we're ready when the adapter client exists.
406        let webhook_concurrency_limit = WebhookConcurrencyLimiter::default();
407        let internal_route_config = Arc::new(InternalRouteConfig {
408            deployment_state_handle,
409            internal_console_redirect_url: config.internal_console_redirect_url,
410        });
411
412        let (authenticator_oidc_tx, authenticator_oidc_rx) = oneshot::channel();
413        let authenticator_oidc_rx = authenticator_oidc_rx.shared();
414        let (adapter_client_tx, adapter_client_rx) = oneshot::channel();
415        let adapter_client_rx = adapter_client_rx.shared();
416
417        let metrics_registry = config.metrics_registry.clone();
418        let metrics = http::Metrics::register_into(&metrics_registry, "mz_http");
419        let mcp_metrics = http::mcp_metrics::McpMetrics::register_into(&metrics_registry);
420        let oauth_metadata_metrics =
421            http::oauth_metadata::OauthMetadataMetrics::register_into(&metrics_registry);
422        let mut http_listener_handles = BTreeMap::new();
423        for (name, listener) in self.http {
424            let authenticator_kind = listener.config.authenticator_kind();
425            let source = leak_listener_name(&name);
426            let tls = if listener.config.enable_tls() {
427                tls_reloading_context.clone()
428            } else {
429                None
430            };
431            let http_config = HttpConfig {
432                adapter_client_rx: adapter_client_rx.clone(),
433                active_connection_counter: active_connection_counter.clone(),
434                helm_chart_version: config.helm_chart_version.clone(),
435                http_host_name: config.http_host_name.clone(),
436                frontegg_oauth_issuer_url: config.frontegg_oauth_issuer_url.clone(),
437                source,
438                tls,
439                authenticator_kind,
440                frontegg: config.frontegg.clone(),
441                oidc_rx: authenticator_oidc_rx.clone(),
442                allowed_origin: config.cors_allowed_origin.clone(),
443                allowed_origin_list: config.cors_allowed_origin_list.clone(),
444                concurrent_webhook_req: webhook_concurrency_limit.semaphore(),
445                dyncfgs: Arc::clone(&config.system_dyncfgs),
446                metrics: metrics.clone(),
447                metrics_registry: metrics_registry.clone(),
448                mcp_metrics: mcp_metrics.clone(),
449                oauth_metadata_metrics: oauth_metadata_metrics.clone(),
450                internal_route_config: Arc::clone(&internal_route_config),
451                routes_enabled: listener.config.routes,
452                replica_http_locator: Arc::clone(&config.controller.replica_http_locator),
453            };
454            http_listener_handles.insert(name.clone(), listener.serve_http(http_config).await);
455        }
456
457        info!(
458            "startup: envd serve: preamble complete in {:?}",
459            serve_start.elapsed()
460        );
461
462        let catalog_init_start = Instant::now();
463        info!("startup: envd serve: catalog init beginning");
464
465        // Get the current timestamp so we can record when we booted.
466        let boot_ts = (config.now)().into();
467
468        let persist_client = config
469            .catalog_config
470            .persist_clients
471            .open(config.controller.persist_location.clone())
472            .await
473            .context("opening persist client")?;
474        let mut openable_adapter_storage = mz_catalog::durable::persist_backed_catalog_state(
475            persist_client.clone(),
476            config.environment_id.organization_id(),
477            BUILD_INFO.semver_version(),
478            Some(config.controller.deploy_generation),
479            Arc::clone(&config.catalog_config.metrics),
480        )
481        .await?;
482
483        info!(
484            "startup: envd serve: catalog init complete in {:?}",
485            catalog_init_start.elapsed()
486        );
487
488        let system_param_sync_start = Instant::now();
489        info!("startup: envd serve: system parameter sync beginning");
490        // Initialize the system parameter frontend
491        let system_parameter_sync_config =
492            match (config.launchdarkly_sdk_key, config.config_sync_file_path) {
493                (None, None) => None,
494                (None, Some(f)) => {
495                    info!("Using config file path {:?}", f);
496                    Some(SystemParameterSyncConfig::new(
497                        config.environment_id.clone(),
498                        &BUILD_INFO,
499                        &config.metrics_registry,
500                        config.launchdarkly_key_map,
501                        SystemParameterSyncClientConfig::File { path: f },
502                    ))
503                }
504                (Some(key), None) => Some(SystemParameterSyncConfig::new(
505                    config.environment_id.clone(),
506                    &BUILD_INFO,
507                    &config.metrics_registry,
508                    config.launchdarkly_key_map,
509                    SystemParameterSyncClientConfig::LaunchDarkly {
510                        sdk_key: key,
511                        base_uri: config.launchdarkly_base_uri,
512                        now_fn: config.now.clone(),
513                    },
514                )),
515
516                (Some(_), Some(_)) => {
517                    panic!("Cannot configure both file and Launchdarkly based config syncing")
518                }
519            };
520
521        let remote_system_parameters = load_remote_system_parameters(
522            &mut openable_adapter_storage,
523            system_parameter_sync_config.clone(),
524            config.config_sync_timeout,
525        )
526        .await?;
527        info!(
528            "startup: envd serve: system parameter sync complete in {:?}",
529            system_param_sync_start.elapsed()
530        );
531
532        let preflight_checks_start = Instant::now();
533        info!("startup: envd serve: preflight checks beginning");
534
535        // Determine the maximum wait time when doing a 0dt deployment.
536        let with_0dt_deployment_max_wait = {
537            let cli_default = config
538                .system_parameter_defaults
539                .get(WITH_0DT_DEPLOYMENT_MAX_WAIT.name())
540                .map(|x| {
541                    Duration::parse(VarInput::Flat(x)).map_err(|err| {
542                        anyhow!(
543                            "failed to parse default for {}: {:?}",
544                            WITH_0DT_DEPLOYMENT_MAX_WAIT.name(),
545                            err
546                        )
547                    })
548                })
549                .transpose()?;
550            let compiled_default = WITH_0DT_DEPLOYMENT_MAX_WAIT.default().clone();
551            let ld = get_ld_value(
552                WITH_0DT_DEPLOYMENT_MAX_WAIT.name(),
553                &remote_system_parameters,
554                |x| {
555                    Duration::parse(VarInput::Flat(x)).map_err(|err| {
556                        format!(
557                            "failed to parse LD value {} for {}: {:?}",
558                            x,
559                            WITH_0DT_DEPLOYMENT_MAX_WAIT.name(),
560                            err
561                        )
562                    })
563                },
564            )?;
565            let catalog = openable_adapter_storage
566                .get_0dt_deployment_max_wait()
567                .await?;
568            let computed = ld.or(catalog).or(cli_default).unwrap_or(compiled_default);
569            info!(
570                ?computed,
571                ?ld,
572                ?catalog,
573                ?cli_default,
574                ?compiled_default,
575                "determined value for {} system parameter",
576                WITH_0DT_DEPLOYMENT_MAX_WAIT.name()
577            );
578            computed
579        };
580        // Determine the DDL check interval when doing a 0dt deployment.
581        let with_0dt_deployment_ddl_check_interval = {
582            let cli_default = config
583                .system_parameter_defaults
584                .get(WITH_0DT_DEPLOYMENT_DDL_CHECK_INTERVAL.name())
585                .map(|x| {
586                    Duration::parse(VarInput::Flat(x)).map_err(|err| {
587                        anyhow!(
588                            "failed to parse default for {}: {:?}",
589                            WITH_0DT_DEPLOYMENT_DDL_CHECK_INTERVAL.name(),
590                            err
591                        )
592                    })
593                })
594                .transpose()?;
595            let compiled_default = WITH_0DT_DEPLOYMENT_DDL_CHECK_INTERVAL.default().clone();
596            let ld = get_ld_value(
597                WITH_0DT_DEPLOYMENT_DDL_CHECK_INTERVAL.name(),
598                &remote_system_parameters,
599                |x| {
600                    Duration::parse(VarInput::Flat(x)).map_err(|err| {
601                        format!(
602                            "failed to parse LD value {} for {}: {:?}",
603                            x,
604                            WITH_0DT_DEPLOYMENT_DDL_CHECK_INTERVAL.name(),
605                            err
606                        )
607                    })
608                },
609            )?;
610            let catalog = openable_adapter_storage
611                .get_0dt_deployment_ddl_check_interval()
612                .await?;
613            let computed = ld.or(catalog).or(cli_default).unwrap_or(compiled_default);
614            info!(
615                ?computed,
616                ?ld,
617                ?catalog,
618                ?cli_default,
619                ?compiled_default,
620                "determined value for {} system parameter",
621                WITH_0DT_DEPLOYMENT_DDL_CHECK_INTERVAL.name()
622            );
623            computed
624        };
625
626        // Determine whether we should panic if we reach the maximum wait time
627        // without the preflight checks succeeding.
628        let enable_0dt_deployment_panic_after_timeout = {
629            let cli_default = config
630                .system_parameter_defaults
631                .get(ENABLE_0DT_DEPLOYMENT_PANIC_AFTER_TIMEOUT.name())
632                .map(|x| {
633                    strconv::parse_bool(x).map_err(|err| {
634                        anyhow!(
635                            "failed to parse default for {}: {}",
636                            ENABLE_0DT_DEPLOYMENT_PANIC_AFTER_TIMEOUT.name(),
637                            err
638                        )
639                    })
640                })
641                .transpose()?;
642            let compiled_default = ENABLE_0DT_DEPLOYMENT_PANIC_AFTER_TIMEOUT.default().clone();
643            let ld = get_ld_value(
644                "enable_0dt_deployment_panic_after_timeout",
645                &remote_system_parameters,
646                |x| strconv::parse_bool(x).map_err(|x| x.to_string()),
647            )?;
648            let catalog = openable_adapter_storage
649                .get_enable_0dt_deployment_panic_after_timeout()
650                .await?;
651            let computed = ld.or(catalog).or(cli_default).unwrap_or(compiled_default);
652            info!(
653                %computed,
654                ?ld,
655                ?catalog,
656                ?cli_default,
657                ?compiled_default,
658                "determined value for enable_0dt_deployment_panic_after_timeout system parameter",
659            );
660            computed
661        };
662
663        // Perform preflight checks.
664        //
665        // Preflight checks determine whether to boot in read-only mode or not.
666        let bootstrap_args = BootstrapArgs {
667            default_cluster_replica_size: config.bootstrap_default_cluster_replica_size.clone(),
668            default_cluster_replication_factor: config.bootstrap_default_cluster_replication_factor,
669            bootstrap_role: config.bootstrap_role.clone(),
670            cluster_replica_size_map: config.cluster_replica_sizes.clone(),
671        };
672        let preflight_config = PreflightInput {
673            boot_ts,
674            environment_id: config.environment_id.clone(),
675            persist_client,
676            deploy_generation: config.controller.deploy_generation,
677            deployment_state: deployment_state.clone(),
678            openable_adapter_storage,
679            catalog_metrics: Arc::clone(&config.catalog_config.metrics),
680            caught_up_max_wait: with_0dt_deployment_max_wait,
681            panic_after_timeout: enable_0dt_deployment_panic_after_timeout,
682            bootstrap_args,
683            ddl_check_interval: with_0dt_deployment_ddl_check_interval,
684        };
685        let PreflightOutput {
686            openable_adapter_storage,
687            read_only,
688            caught_up_trigger,
689        } = deployment::preflight::preflight_0dt(preflight_config).await?;
690
691        info!(
692            "startup: envd serve: preflight checks complete in {:?}",
693            preflight_checks_start.elapsed()
694        );
695
696        let catalog_open_start = Instant::now();
697        info!("startup: envd serve: durable catalog open beginning");
698
699        let bootstrap_args = BootstrapArgs {
700            default_cluster_replica_size: config.bootstrap_default_cluster_replica_size.clone(),
701            default_cluster_replication_factor: config.bootstrap_default_cluster_replication_factor,
702            bootstrap_role: config.bootstrap_role,
703            cluster_replica_size_map: config.cluster_replica_sizes.clone(),
704        };
705
706        // Load the adapter durable storage.
707        let adapter_storage = if read_only {
708            // TODO: behavior of migrations when booting in savepoint mode is
709            // not well defined.
710            let adapter_storage = openable_adapter_storage
711                .open_savepoint(boot_ts, &bootstrap_args)
712                .await?;
713            // In read-only mode, we intentionally do not call `set_is_leader`,
714            // because we are by definition not the leader if we are in
715            // read-only mode.
716
717            adapter_storage
718        } else {
719            let adapter_storage = openable_adapter_storage
720                .open(boot_ts, &bootstrap_args)
721                .await?;
722
723            // Once we have successfully opened the adapter storage in
724            // read/write mode, we can announce we are the leader, as we've
725            // fenced out all other environments using the adapter storage.
726            deployment_state.set_is_leader();
727
728            adapter_storage
729        };
730
731        // Enable Persist compaction if we're not in read only.
732        if !read_only {
733            config.controller.persist_clients.cfg().enable_compaction();
734        }
735
736        info!(
737            "startup: envd serve: durable catalog open complete in {:?}",
738            catalog_open_start.elapsed()
739        );
740
741        let coord_init_start = Instant::now();
742        info!("startup: envd serve: coordinator init beginning");
743
744        if !config
745            .cluster_replica_sizes
746            .0
747            .contains_key(&config.bootstrap_default_cluster_replica_size)
748        {
749            return Err(anyhow!("bootstrap default cluster replica size is unknown").into());
750        }
751        let envd_epoch = adapter_storage.epoch();
752
753        // Initialize storage usage client.
754        let storage_usage_client = StorageUsageClient::open(
755            config
756                .controller
757                .persist_clients
758                .open(config.controller.persist_location.clone())
759                .await
760                .context("opening storage usage client")?,
761        );
762
763        // Initialize adapter.
764        let license_key = config.license_key.clone();
765        let segment_client = config.segment_api_key.map(|api_key| {
766            mz_segment::Client::new(mz_segment::Config {
767                api_key,
768                client_side: config.segment_client_side,
769            })
770        });
771        let connection_limiter = active_connection_counter.clone();
772        let connection_limit_callback = Box::new(move |limit, superuser_reserved| {
773            connection_limiter.update_limit(limit);
774            connection_limiter.update_superuser_reserved(superuser_reserved);
775        });
776
777        let (adapter_handle, adapter_client) = mz_adapter::serve(mz_adapter::Config {
778            connection_context: config.controller.connection_context.clone(),
779            connection_limit_callback,
780            controller_config: config.controller,
781            controller_envd_epoch: envd_epoch,
782            storage: adapter_storage,
783            timestamp_oracle_url: config.timestamp_oracle_url,
784            unsafe_mode: config.unsafe_mode,
785            all_features: config.all_features,
786            build_info: &BUILD_INFO,
787            environment_id: config.environment_id.clone(),
788            metrics_registry: config.metrics_registry.clone(),
789            now: config.now,
790            secrets_controller: config.secrets_controller,
791            cloud_resource_controller: config.cloud_resource_controller,
792            cluster_replica_sizes: config.cluster_replica_sizes,
793            builtin_system_cluster_config: config.bootstrap_builtin_system_cluster_config,
794            builtin_catalog_server_cluster_config: config
795                .bootstrap_builtin_catalog_server_cluster_config,
796            builtin_probe_cluster_config: config.bootstrap_builtin_probe_cluster_config,
797            builtin_support_cluster_config: config.bootstrap_builtin_support_cluster_config,
798            builtin_analytics_cluster_config: config.bootstrap_builtin_analytics_cluster_config,
799            availability_zones: config.availability_zones,
800            system_parameter_defaults: config.system_parameter_defaults,
801            storage_usage_client,
802            storage_usage_collection_interval: config.storage_usage_collection_interval,
803            storage_usage_retention_period: config.storage_usage_retention_period,
804            segment_client: segment_client.clone(),
805            egress_addresses: config.egress_addresses,
806            remote_system_parameters,
807            aws_account_id: config.aws_account_id,
808            aws_privatelink_availability_zones: config.aws_privatelink_availability_zones,
809            webhook_concurrency_limit: webhook_concurrency_limit.clone(),
810            http_host_name: config.http_host_name,
811            tracing_handle: config.tracing_handle,
812            read_only_controllers: read_only,
813            caught_up_trigger,
814            helm_chart_version: config.helm_chart_version.clone(),
815            license_key: config.license_key,
816            external_login_password_mz_system: config.external_login_password_mz_system,
817            force_builtin_schema_migration: config.force_builtin_schema_migration,
818        })
819        .instrument(info_span!("adapter::serve"))
820        .await?;
821
822        // Initialize the OIDC authenticator, shared between the HTTP and SQL servers.
823        let oidc = GenericOidcAuthenticator::new(adapter_client.clone());
824
825        info!(
826            "startup: envd serve: coordinator init complete in {:?}",
827            coord_init_start.elapsed()
828        );
829
830        let serve_postamble_start = Instant::now();
831        info!("startup: envd serve: postamble beginning");
832
833        // Send adapter client and OIDC authenticator to the HTTP servers.
834        authenticator_oidc_tx
835            .send(oidc.clone())
836            .expect("rx known to be live");
837        adapter_client_tx
838            .send(adapter_client.clone())
839            .expect("internal HTTP server should not drop first");
840
841        let metrics = mz_pgwire::MetricsConfig::register_into(&config.metrics_registry);
842
843        // Launch SQL server.
844        let mut sql_listener_handles = BTreeMap::new();
845        for (name, listener) in self.sql {
846            sql_listener_handles.insert(
847                name.clone(),
848                listener
849                    .serve_sql(
850                        name,
851                        active_connection_counter.clone(),
852                        tls_reloading_context.clone(),
853                        config.frontegg.clone(),
854                        adapter_client.clone(),
855                        oidc.clone(),
856                        metrics.clone(),
857                        config.helm_chart_version.clone(),
858                    )
859                    .await,
860            );
861        }
862
863        // Start telemetry reporting loop.
864        if let Some(segment_client) = segment_client {
865            telemetry::start_reporting(telemetry::Config {
866                segment_client,
867                adapter_client: adapter_client.clone(),
868                environment_id: config.environment_id,
869                license_key: license_key.clone(),
870                helm_chart_version: config.helm_chart_version.clone(),
871                report_interval: Duration::from_secs(3600),
872            });
873        } else if config.test_only_dummy_segment_client {
874            // We only have access to a segment client in production but we
875            // still want to exercise the telemetry reporting code to a degree.
876            // So we create a dummy client and report telemetry into the void.
877            // This way we at least run the telemetry queries the way a
878            // production environment would.
879            tracing::debug!("starting telemetry reporting with a dummy segment client");
880            let segment_client = mz_segment::Client::new_dummy_client();
881            telemetry::start_reporting(telemetry::Config {
882                segment_client,
883                adapter_client: adapter_client.clone(),
884                environment_id: config.environment_id,
885                license_key: license_key.clone(),
886                helm_chart_version: config.helm_chart_version.clone(),
887                report_interval: Duration::from_secs(180),
888            });
889        }
890
891        // If system_parameter_sync_config and config_sync_loop_interval are present,
892        // start the system_parameter_sync loop.
893        if let Some(system_parameter_sync_config) = system_parameter_sync_config {
894            task::spawn(
895                || "system_parameter_sync",
896                AssertUnwindSafe(system_parameter_sync(
897                    system_parameter_sync_config,
898                    adapter_client.clone(),
899                    config.config_sync_loop_interval,
900                ))
901                .ore_catch_unwind(),
902            );
903        }
904
905        info!(
906            "startup: envd serve: postamble complete in {:?}",
907            serve_postamble_start.elapsed()
908        );
909        info!(
910            "startup: envd serve: complete in {:?}",
911            serve_start.elapsed()
912        );
913
914        Ok(Server {
915            sql_listener_handles,
916            http_listener_handles,
917            #[cfg(feature = "test")]
918            adapter_client,
919            _adapter_handle: adapter_handle,
920        })
921    }
922}
923
924fn get_ld_value<V>(
925    name: &str,
926    remote_system_parameters: &Option<BTreeMap<String, String>>,
927    parse: impl Fn(&str) -> Result<V, String>,
928) -> Result<Option<V>, anyhow::Error> {
929    remote_system_parameters
930        .as_ref()
931        .and_then(|params| params.get(name))
932        .map(|x| {
933            parse(x).map_err(|err| anyhow!("failed to parse remote value for {}: {}", name, err))
934        })
935        .transpose()
936}
937
938/// A running `environmentd` server.
939pub struct Server {
940    // Drop order matters for these fields.
941    pub sql_listener_handles: BTreeMap<String, ListenerHandle>,
942    pub http_listener_handles: BTreeMap<String, ListenerHandle>,
943    #[cfg(feature = "test")]
944    adapter_client: AdapterClient,
945    _adapter_handle: mz_adapter::Handle,
946}
947
948impl Server {
949    /// A client for the adapter, letting tests drive the adapter API directly.
950    #[cfg(feature = "test")]
951    pub fn adapter_client(&self) -> &AdapterClient {
952        &self.adapter_client
953    }
954}