Line data Source code
1 : use std::num::NonZeroU32;
2 : use std::path::PathBuf;
3 : use std::sync::Arc;
4 : use std::time::Duration;
5 :
6 : use anyhow::{Context, anyhow};
7 : use camino::Utf8PathBuf;
8 : use clap::Parser;
9 : use futures::future::OptionFuture;
10 : use http_utils::tls_certs::ReloadingCertificateResolver;
11 : use hyper0::Uri;
12 : use metrics::BuildInfo;
13 : use metrics::launch_timestamp::LaunchTimestamp;
14 : use reqwest::Certificate;
15 : use storage_controller::http::make_router;
16 : use storage_controller::metrics::preinitialize_metrics;
17 : use storage_controller::persistence::Persistence;
18 : use storage_controller::service::chaos_injector::ChaosInjector;
19 : use storage_controller::service::{
20 : Config, HEARTBEAT_INTERVAL_DEFAULT, LONG_RECONCILE_THRESHOLD_DEFAULT,
21 : MAX_OFFLINE_INTERVAL_DEFAULT, MAX_WARMING_UP_INTERVAL_DEFAULT,
22 : PRIORITY_RECONCILER_CONCURRENCY_DEFAULT, RECONCILER_CONCURRENCY_DEFAULT, Service,
23 : };
24 : use tokio::signal::unix::SignalKind;
25 : use tokio_util::sync::CancellationToken;
26 : use tracing::Instrument;
27 : use utils::auth::{JwtAuth, SwappableJwtAuth};
28 : use utils::logging::{self, LogFormat};
29 : use utils::sentry_init::init_sentry;
30 : use utils::{project_build_tag, project_git_version, tcp_listener};
31 :
32 : project_git_version!(GIT_VERSION);
33 : project_build_tag!(BUILD_TAG);
34 :
35 : #[global_allocator]
36 : static GLOBAL: tikv_jemallocator::Jemalloc = tikv_jemallocator::Jemalloc;
37 :
38 : /// Configure jemalloc to profile heap allocations by sampling stack traces every 2 MB (1 << 21).
39 : /// This adds roughly 3% overhead for allocations on average, which is acceptable considering
40 : /// performance-sensitive code will avoid allocations as far as possible anyway.
41 : #[allow(non_upper_case_globals)]
42 : #[unsafe(export_name = "malloc_conf")]
43 : pub static malloc_conf: &[u8] = b"prof:true,prof_active:true,lg_prof_sample:21\0";
44 :
45 : const DEFAULT_SSL_KEY_FILE: &str = "server.key";
46 : const DEFAULT_SSL_CERT_FILE: &str = "server.crt";
47 : const DEFAULT_SSL_CERT_RELOAD_PERIOD: &str = "60s";
48 :
49 : #[derive(Parser)]
50 : #[command(author, version, about, long_about = None)]
51 : #[command(arg_required_else_help(true))]
52 : #[clap(group(
53 : clap::ArgGroup::new("listen-addresses")
54 : .required(true)
55 : .multiple(true)
56 : .args(&["listen", "listen_https"]),
57 : ))]
58 : struct Cli {
59 : /// Host and port to listen HTTP on, like `127.0.0.1:1234`.
60 : /// At least one of ["listen", "listen_https"] should be specified.
61 : // TODO: Make this option dev-only when https is out everywhere.
62 : #[arg(short, long)]
63 : listen: Option<std::net::SocketAddr>,
64 : /// Host and port to listen HTTPS on, like `127.0.0.1:1234`.
65 : /// At least one of ["listen", "listen_https"] should be specified.
66 : #[arg(long)]
67 : listen_https: Option<std::net::SocketAddr>,
68 :
69 : /// Public key for JWT authentication of clients
70 : #[arg(long)]
71 : public_key: Option<String>,
72 :
73 : /// Token for authenticating this service with the pageservers it controls
74 : #[arg(long)]
75 : jwt_token: Option<String>,
76 :
77 : /// Token for authenticating this service with the safekeepers it controls
78 : #[arg(long)]
79 : safekeeper_jwt_token: Option<String>,
80 :
81 : /// Token for authenticating this service with the control plane, when calling
82 : /// the compute notification endpoint
83 : #[arg(long)]
84 : control_plane_jwt_token: Option<String>,
85 :
86 : #[arg(long)]
87 : peer_jwt_token: Option<String>,
88 :
89 : /// URL to control plane compute notification endpoint
90 : #[arg(long)]
91 : compute_hook_url: Option<String>,
92 :
93 : /// URL to control plane storage API prefix
94 : #[arg(long)]
95 : control_plane_url: Option<String>,
96 :
97 : /// URL to connect to postgres, like postgresql://localhost:1234/storage_controller
98 : #[arg(long)]
99 : database_url: Option<String>,
100 :
101 : /// Flag to enable dev mode, which permits running without auth
102 : #[arg(long, default_value = "false")]
103 0 : dev: bool,
104 :
105 : /// Grace period before marking unresponsive pageserver offline
106 : #[arg(long)]
107 : max_offline_interval: Option<humantime::Duration>,
108 :
109 : /// More tolerant grace period before marking unresponsive pagserver offline used
110 : /// around pageserver restarts
111 : #[arg(long)]
112 : max_warming_up_interval: Option<humantime::Duration>,
113 :
114 : /// Size threshold for automatically splitting shards (disabled by default)
115 : #[arg(long)]
116 : split_threshold: Option<u64>,
117 :
118 : /// Maximum number of shards during autosplits. 0 disables autosplits.
119 : // TODO: defaults to 8 for backwards compatibility, should default to 255.
120 : #[arg(long, default_value = "8")]
121 0 : max_split_shards: u8,
122 :
123 : /// Size threshold for initial shard splits of unsharded tenants. 0 disables initial splits.
124 : // TODO: defaults to 64 GB for backwards compatibility. Should default to None.
125 : #[arg(long, default_value = "68719476736")]
126 0 : initial_split_threshold: u64,
127 :
128 : /// Number of target shards for initial splits. 0 or 1 disables initial splits.
129 : // TODO: defaults to 8 for backwards compatibility. Should default to 2.
130 : #[arg(long, default_value = "8")]
131 0 : initial_split_shards: u8,
132 :
133 : /// Maximum number of normal-priority reconcilers that may run in parallel
134 : #[arg(long)]
135 : reconciler_concurrency: Option<usize>,
136 :
137 : /// Maximum number of high-priority reconcilers that may run in parallel
138 : #[arg(long)]
139 : priority_reconciler_concurrency: Option<usize>,
140 :
141 : /// Tenant API rate limit, as requests per second per tenant.
142 : #[arg(long, default_value = "10")]
143 0 : tenant_rate_limit: NonZeroU32,
144 :
145 : /// How long to wait for the initial database connection to be available.
146 : #[arg(long, default_value = "5s")]
147 0 : db_connect_timeout: humantime::Duration,
148 :
149 : #[arg(long, default_value = "false")]
150 0 : start_as_candidate: bool,
151 :
152 : // TODO: make this mandatory once the helm chart gets updated
153 : #[arg(long)]
154 : address_for_peers: Option<Uri>,
155 :
156 : /// `neon_local` sets this to the path of the neon_local repo dir.
157 : /// Only relevant for testing.
158 : // TODO: make `cfg(feature = "testing")`
159 : #[arg(long)]
160 : neon_local_repo_dir: Option<PathBuf>,
161 :
162 : /// Chaos testing: exercise tenant migrations
163 : #[arg(long)]
164 : chaos_interval: Option<humantime::Duration>,
165 :
166 : /// Chaos testing: exercise an immediate exit
167 : #[arg(long)]
168 : chaos_exit_crontab: Option<cron::Schedule>,
169 :
170 : /// Maximum acceptable lag for the secondary location while draining
171 : /// a pageserver
172 : #[arg(long)]
173 : max_secondary_lag_bytes: Option<u64>,
174 :
175 : /// Period with which to send heartbeats to registered nodes
176 : #[arg(long)]
177 : heartbeat_interval: Option<humantime::Duration>,
178 :
179 : #[arg(long)]
180 : long_reconcile_threshold: Option<humantime::Duration>,
181 :
182 : /// Flag to use https for requests to pageserver API.
183 : #[arg(long, default_value = "false")]
184 0 : use_https_pageserver_api: bool,
185 :
186 : // Whether to put timelines onto safekeepers
187 : #[arg(long, default_value = "false")]
188 0 : timelines_onto_safekeepers: bool,
189 :
190 : /// Flag to use https for requests to safekeeper API.
191 : #[arg(long, default_value = "false")]
192 0 : use_https_safekeeper_api: bool,
193 :
194 : /// Path to a file with certificate's private key for https API.
195 : #[arg(long, default_value = DEFAULT_SSL_KEY_FILE)]
196 0 : ssl_key_file: Utf8PathBuf,
197 : /// Path to a file with a X509 certificate for https API.
198 : #[arg(long, default_value = DEFAULT_SSL_CERT_FILE)]
199 0 : ssl_cert_file: Utf8PathBuf,
200 : /// Period to reload certificate and private key from files.
201 : #[arg(long, default_value = DEFAULT_SSL_CERT_RELOAD_PERIOD)]
202 0 : ssl_cert_reload_period: humantime::Duration,
203 : /// Trusted root CA certificate to use in https APIs.
204 : #[arg(long)]
205 : ssl_ca_file: Option<PathBuf>,
206 : }
207 :
208 : enum StrictMode {
209 : /// In strict mode, we will require that all secrets are loaded, i.e. security features
210 : /// may not be implicitly turned off by omitting secrets in the environment.
211 : Strict,
212 : /// In dev mode, secrets are optional, and omitting a particular secret will implicitly
213 : /// disable the auth related to it (e.g. no pageserver jwt key -> send unauthenticated
214 : /// requests, no public key -> don't authenticate incoming requests).
215 : Dev,
216 : }
217 :
218 : impl Default for StrictMode {
219 0 : fn default() -> Self {
220 0 : Self::Strict
221 0 : }
222 : }
223 :
224 : /// Secrets may either be provided on the command line (for testing), or loaded from AWS SecretManager: this
225 : /// type encapsulates the logic to decide which and do the loading.
226 : struct Secrets {
227 : database_url: String,
228 : public_key: Option<JwtAuth>,
229 : pageserver_jwt_token: Option<String>,
230 : safekeeper_jwt_token: Option<String>,
231 : control_plane_jwt_token: Option<String>,
232 : peer_jwt_token: Option<String>,
233 : }
234 :
235 : impl Secrets {
236 : const DATABASE_URL_ENV: &'static str = "DATABASE_URL";
237 : const PAGESERVER_JWT_TOKEN_ENV: &'static str = "PAGESERVER_JWT_TOKEN";
238 : const SAFEKEEPER_JWT_TOKEN_ENV: &'static str = "SAFEKEEPER_JWT_TOKEN";
239 : const CONTROL_PLANE_JWT_TOKEN_ENV: &'static str = "CONTROL_PLANE_JWT_TOKEN";
240 : const PEER_JWT_TOKEN_ENV: &'static str = "PEER_JWT_TOKEN";
241 : const PUBLIC_KEY_ENV: &'static str = "PUBLIC_KEY";
242 :
243 : /// Load secrets from, in order of preference:
244 : /// - CLI args if database URL is provided on the CLI
245 : /// - Environment variables if DATABASE_URL is set.
246 0 : async fn load(args: &Cli) -> anyhow::Result<Self> {
247 0 : let Some(database_url) = Self::load_secret(&args.database_url, Self::DATABASE_URL_ENV)
248 : else {
249 0 : anyhow::bail!(
250 0 : "Database URL is not set (set `--database-url`, or `DATABASE_URL` environment)"
251 0 : )
252 : };
253 :
254 0 : let public_key = match Self::load_secret(&args.public_key, Self::PUBLIC_KEY_ENV) {
255 0 : Some(v) => Some(JwtAuth::from_key(v).context("Loading public key")?),
256 0 : None => None,
257 : };
258 :
259 0 : let this = Self {
260 0 : database_url,
261 0 : public_key,
262 0 : pageserver_jwt_token: Self::load_secret(
263 0 : &args.jwt_token,
264 0 : Self::PAGESERVER_JWT_TOKEN_ENV,
265 0 : ),
266 0 : safekeeper_jwt_token: Self::load_secret(
267 0 : &args.safekeeper_jwt_token,
268 0 : Self::SAFEKEEPER_JWT_TOKEN_ENV,
269 0 : ),
270 0 : control_plane_jwt_token: Self::load_secret(
271 0 : &args.control_plane_jwt_token,
272 0 : Self::CONTROL_PLANE_JWT_TOKEN_ENV,
273 0 : ),
274 0 : peer_jwt_token: Self::load_secret(&args.peer_jwt_token, Self::PEER_JWT_TOKEN_ENV),
275 0 : };
276 0 :
277 0 : Ok(this)
278 0 : }
279 :
280 0 : fn load_secret(cli: &Option<String>, env_name: &str) -> Option<String> {
281 0 : if let Some(v) = cli {
282 0 : Some(v.clone())
283 0 : } else if let Ok(v) = std::env::var(env_name) {
284 0 : Some(v)
285 : } else {
286 0 : None
287 : }
288 0 : }
289 : }
290 :
291 0 : fn main() -> anyhow::Result<()> {
292 0 : logging::init(
293 0 : LogFormat::Plain,
294 0 : logging::TracingErrorLayerEnablement::Disabled,
295 0 : logging::Output::Stdout,
296 0 : )?;
297 :
298 : // log using tracing so we don't get confused output by default hook writing to stderr
299 0 : utils::logging::replace_panic_hook_with_tracing_panic_hook().forget();
300 0 :
301 0 : let _sentry_guard = init_sentry(Some(GIT_VERSION.into()), &[]);
302 0 :
303 0 : let hook = std::panic::take_hook();
304 0 : std::panic::set_hook(Box::new(move |info| {
305 0 : // let sentry send a message (and flush)
306 0 : // and trace the error
307 0 : hook(info);
308 0 :
309 0 : std::process::exit(1);
310 0 : }));
311 0 :
312 0 : tokio::runtime::Builder::new_current_thread()
313 0 : // We use spawn_blocking for database operations, so require approximately
314 0 : // as many blocking threads as we will open database connections.
315 0 : .max_blocking_threads(Persistence::MAX_CONNECTIONS as usize)
316 0 : .enable_all()
317 0 : .build()
318 0 : .unwrap()
319 0 : .block_on(async_main())
320 0 : }
321 :
322 0 : async fn async_main() -> anyhow::Result<()> {
323 0 : let launch_ts = Box::leak(Box::new(LaunchTimestamp::generate()));
324 0 :
325 0 : preinitialize_metrics();
326 0 :
327 0 : let args = Cli::parse();
328 0 : tracing::info!(
329 0 : "version: {}, launch_timestamp: {}, build_tag {}",
330 0 : GIT_VERSION,
331 0 : launch_ts.to_string(),
332 : BUILD_TAG,
333 : );
334 :
335 0 : let build_info = BuildInfo {
336 0 : revision: GIT_VERSION,
337 0 : build_tag: BUILD_TAG,
338 0 : };
339 :
340 0 : let strict_mode = if args.dev {
341 0 : StrictMode::Dev
342 : } else {
343 0 : StrictMode::Strict
344 : };
345 :
346 0 : let secrets = Secrets::load(&args).await?;
347 :
348 : // Validate required secrets and arguments are provided in strict mode
349 0 : match strict_mode {
350 : StrictMode::Strict
351 0 : if (secrets.public_key.is_none()
352 0 : || secrets.pageserver_jwt_token.is_none()
353 0 : || secrets.control_plane_jwt_token.is_none()
354 0 : || secrets.safekeeper_jwt_token.is_none()) =>
355 0 : {
356 0 : // Production systems should always have secrets configured: if public_key was not set
357 0 : // then we would implicitly disable auth.
358 0 : anyhow::bail!(
359 0 : "Insecure config! One or more secrets is not set. This is only permitted in `--dev` mode"
360 0 : );
361 : }
362 : StrictMode::Strict
363 0 : if args.compute_hook_url.is_none() && args.control_plane_url.is_none() =>
364 0 : {
365 0 : // Production systems should always have a control plane URL set, to prevent falling
366 0 : // back to trying to use neon_local.
367 0 : anyhow::bail!(
368 0 : "neither `--compute-hook-url` nor `--control-plane-url` are set: this is only permitted in `--dev` mode"
369 0 : );
370 : }
371 : StrictMode::Strict => {
372 0 : tracing::info!("Starting in strict mode: configuration is OK.")
373 : }
374 : StrictMode::Dev => {
375 0 : tracing::warn!("Starting in dev mode: this may be an insecure configuration.")
376 : }
377 : }
378 :
379 0 : let ssl_ca_cert = match args.ssl_ca_file.as_ref() {
380 0 : Some(ssl_ca_file) => {
381 0 : tracing::info!("Using ssl root CA file: {ssl_ca_file:?}");
382 0 : let buf = tokio::fs::read(ssl_ca_file).await?;
383 0 : Some(Certificate::from_pem(&buf)?)
384 : }
385 0 : None => None,
386 : };
387 :
388 0 : let config = Config {
389 0 : pageserver_jwt_token: secrets.pageserver_jwt_token,
390 0 : safekeeper_jwt_token: secrets.safekeeper_jwt_token,
391 0 : control_plane_jwt_token: secrets.control_plane_jwt_token,
392 0 : peer_jwt_token: secrets.peer_jwt_token,
393 0 : compute_hook_url: args.compute_hook_url,
394 0 : control_plane_url: args.control_plane_url,
395 0 : max_offline_interval: args
396 0 : .max_offline_interval
397 0 : .map(humantime::Duration::into)
398 0 : .unwrap_or(MAX_OFFLINE_INTERVAL_DEFAULT),
399 0 : max_warming_up_interval: args
400 0 : .max_warming_up_interval
401 0 : .map(humantime::Duration::into)
402 0 : .unwrap_or(MAX_WARMING_UP_INTERVAL_DEFAULT),
403 0 : reconciler_concurrency: args
404 0 : .reconciler_concurrency
405 0 : .unwrap_or(RECONCILER_CONCURRENCY_DEFAULT),
406 0 : priority_reconciler_concurrency: args
407 0 : .priority_reconciler_concurrency
408 0 : .unwrap_or(PRIORITY_RECONCILER_CONCURRENCY_DEFAULT),
409 0 : tenant_rate_limit: args.tenant_rate_limit,
410 0 : split_threshold: args.split_threshold,
411 0 : max_split_shards: args.max_split_shards,
412 0 : initial_split_threshold: Some(args.initial_split_threshold),
413 0 : initial_split_shards: args.initial_split_shards,
414 0 : neon_local_repo_dir: args.neon_local_repo_dir,
415 0 : max_secondary_lag_bytes: args.max_secondary_lag_bytes,
416 0 : heartbeat_interval: args
417 0 : .heartbeat_interval
418 0 : .map(humantime::Duration::into)
419 0 : .unwrap_or(HEARTBEAT_INTERVAL_DEFAULT),
420 0 : long_reconcile_threshold: args
421 0 : .long_reconcile_threshold
422 0 : .map(humantime::Duration::into)
423 0 : .unwrap_or(LONG_RECONCILE_THRESHOLD_DEFAULT),
424 0 : address_for_peers: args.address_for_peers,
425 0 : start_as_candidate: args.start_as_candidate,
426 0 : use_https_pageserver_api: args.use_https_pageserver_api,
427 0 : use_https_safekeeper_api: args.use_https_safekeeper_api,
428 0 : ssl_ca_cert,
429 0 : timelines_onto_safekeepers: args.timelines_onto_safekeepers,
430 0 : };
431 0 :
432 0 : // Validate that we can connect to the database
433 0 : Persistence::await_connection(&secrets.database_url, args.db_connect_timeout.into()).await?;
434 :
435 0 : let persistence = Arc::new(Persistence::new(secrets.database_url).await);
436 :
437 0 : let service = Service::spawn(config, persistence.clone()).await?;
438 :
439 0 : let auth = secrets
440 0 : .public_key
441 0 : .map(|jwt_auth| Arc::new(SwappableJwtAuth::new(jwt_auth)));
442 0 : let router = make_router(service.clone(), auth, build_info)
443 0 : .build()
444 0 : .map_err(|err| anyhow!(err))?;
445 0 : let http_service =
446 0 : Arc::new(http_utils::RequestServiceBuilder::new(router).map_err(|err| anyhow!(err))?);
447 :
448 0 : let api_shutdown = CancellationToken::new();
449 :
450 : // Start HTTP server
451 0 : let http_server_task: OptionFuture<_> = match args.listen {
452 0 : Some(http_addr) => {
453 0 : let http_listener = tcp_listener::bind(http_addr)?;
454 0 : let http_server =
455 0 : http_utils::server::Server::new(Arc::clone(&http_service), http_listener, None)?;
456 :
457 0 : tracing::info!("Serving HTTP on {}", http_addr);
458 0 : Some(tokio::task::spawn(http_server.serve(api_shutdown.clone())))
459 : }
460 0 : None => None,
461 : }
462 0 : .into();
463 :
464 : // Start HTTPS server
465 0 : let https_server_task: OptionFuture<_> = match args.listen_https {
466 0 : Some(https_addr) => {
467 0 : let https_listener = tcp_listener::bind(https_addr)?;
468 :
469 0 : let resolver = ReloadingCertificateResolver::new(
470 0 : &args.ssl_key_file,
471 0 : &args.ssl_cert_file,
472 0 : *args.ssl_cert_reload_period,
473 0 : )
474 0 : .await?;
475 :
476 0 : let server_config = rustls::ServerConfig::builder()
477 0 : .with_no_client_auth()
478 0 : .with_cert_resolver(resolver);
479 0 :
480 0 : let tls_acceptor = tokio_rustls::TlsAcceptor::from(Arc::new(server_config));
481 0 : let https_server =
482 0 : http_utils::server::Server::new(http_service, https_listener, Some(tls_acceptor))?;
483 :
484 0 : tracing::info!("Serving HTTPS on {}", https_addr);
485 0 : Some(tokio::task::spawn(https_server.serve(api_shutdown.clone())))
486 : }
487 0 : None => None,
488 : }
489 0 : .into();
490 0 :
491 0 : let chaos_task = args.chaos_interval.map(|interval| {
492 0 : let service = service.clone();
493 0 : let cancel = CancellationToken::new();
494 0 : let cancel_bg = cancel.clone();
495 0 : let chaos_exit_crontab = args.chaos_exit_crontab;
496 0 : (
497 0 : tokio::task::spawn(
498 0 : async move {
499 0 : let mut chaos_injector =
500 0 : ChaosInjector::new(service, interval.into(), chaos_exit_crontab);
501 0 : chaos_injector.run(cancel_bg).await
502 0 : }
503 0 : .instrument(tracing::info_span!("chaos_injector")),
504 : ),
505 0 : cancel,
506 0 : )
507 0 : });
508 :
509 : // Wait until we receive a signal
510 0 : let mut sigint = tokio::signal::unix::signal(SignalKind::interrupt())?;
511 0 : let mut sigquit = tokio::signal::unix::signal(SignalKind::quit())?;
512 0 : let mut sigterm = tokio::signal::unix::signal(SignalKind::terminate())?;
513 0 : tokio::pin!(http_server_task, https_server_task);
514 0 : tokio::select! {
515 0 : _ = sigint.recv() => {},
516 0 : _ = sigterm.recv() => {},
517 0 : _ = sigquit.recv() => {},
518 0 : Some(err) = &mut http_server_task => {
519 0 : panic!("HTTP server task failed: {err:#?}");
520 : }
521 0 : Some(err) = &mut https_server_task => {
522 0 : panic!("HTTPS server task failed: {err:#?}");
523 : }
524 : }
525 0 : tracing::info!("Terminating on signal");
526 :
527 : // Stop HTTP and HTTPS servers first, so that we don't have to service requests
528 : // while shutting down Service.
529 0 : api_shutdown.cancel();
530 0 :
531 0 : // If the deadline is exceeded, we will fall through and shut down the service anyway,
532 0 : // any request handlers in flight will experience cancellation & their clients will
533 0 : // see a torn connection.
534 0 : let deadline = tokio::time::Instant::now() + Duration::from_secs(5);
535 0 :
536 0 : match tokio::time::timeout_at(deadline, http_server_task).await {
537 0 : Ok(Some(Ok(_))) => tracing::info!("Joined HTTP server task"),
538 0 : Ok(Some(Err(e))) => tracing::error!("Error joining HTTP server task: {e}"),
539 0 : Ok(None) => {} // HTTP is disabled.
540 0 : Err(_) => tracing::warn!("Timed out joining HTTP server task"),
541 : }
542 :
543 0 : match tokio::time::timeout_at(deadline, https_server_task).await {
544 0 : Ok(Some(Ok(_))) => tracing::info!("Joined HTTPS server task"),
545 0 : Ok(Some(Err(e))) => tracing::error!("Error joining HTTPS server task: {e}"),
546 0 : Ok(None) => {} // HTTPS is disabled.
547 0 : Err(_) => tracing::warn!("Timed out joining HTTPS server task"),
548 : }
549 :
550 : // If we were injecting chaos, stop that so that we're not calling into Service while it shuts down
551 0 : if let Some((chaos_jh, chaos_cancel)) = chaos_task {
552 0 : chaos_cancel.cancel();
553 0 : chaos_jh.await.ok();
554 0 : }
555 :
556 0 : service.shutdown().await;
557 0 : tracing::info!("Service shutdown complete");
558 :
559 0 : std::process::exit(0);
560 0 : }
|