LCOV - code coverage report
Current view: top level - pageserver/src/bin - pageserver.rs (source / functions) Coverage Total Hit
Test: 322b88762cba8ea666f63cda880cccab6936bf37.info Lines: 8.5 % 577 49
Test Date: 2024-02-29 11:57:12 Functions: 6.2 % 64 4

            Line data    Source code
       1              : //! Main entry point for the Page Server executable.
       2              : 
       3              : use std::env::{var, VarError};
       4              : use std::sync::Arc;
       5              : use std::time::Duration;
       6              : use std::{env, ops::ControlFlow, str::FromStr};
       7              : 
       8              : use anyhow::{anyhow, Context};
       9              : use camino::Utf8Path;
      10              : use clap::{Arg, ArgAction, Command};
      11              : 
      12              : use metrics::launch_timestamp::{set_launch_timestamp_metric, LaunchTimestamp};
      13              : use pageserver::control_plane_client::ControlPlaneClient;
      14              : use pageserver::disk_usage_eviction_task::{self, launch_disk_usage_global_eviction_task};
      15              : use pageserver::metrics::{STARTUP_DURATION, STARTUP_IS_LOADING};
      16              : use pageserver::task_mgr::WALRECEIVER_RUNTIME;
      17              : use pageserver::tenant::{secondary, TenantSharedResources};
      18              : use remote_storage::GenericRemoteStorage;
      19              : use tokio::time::Instant;
      20              : use tracing::*;
      21              : 
      22              : use metrics::set_build_info_metric;
      23              : use pageserver::{
      24              :     config::{defaults::*, PageServerConf},
      25              :     context::{DownloadBehavior, RequestContext},
      26              :     deletion_queue::DeletionQueue,
      27              :     http, page_cache, page_service, task_mgr,
      28              :     task_mgr::TaskKind,
      29              :     task_mgr::{BACKGROUND_RUNTIME, COMPUTE_REQUEST_RUNTIME, MGMT_REQUEST_RUNTIME},
      30              :     tenant::mgr,
      31              :     virtual_file,
      32              : };
      33              : use postgres_backend::AuthType;
      34              : use utils::failpoint_support;
      35              : use utils::logging::TracingErrorLayerEnablement;
      36              : use utils::{
      37              :     auth::{JwtAuth, SwappableJwtAuth},
      38              :     logging, project_build_tag, project_git_version,
      39              :     sentry_init::init_sentry,
      40              :     tcp_listener,
      41              : };
      42              : 
      43              : project_git_version!(GIT_VERSION);
      44              : project_build_tag!(BUILD_TAG);
      45              : 
      46              : const PID_FILE_NAME: &str = "pageserver.pid";
      47              : 
      48              : const FEATURES: &[&str] = &[
      49              :     #[cfg(feature = "testing")]
      50              :     "testing",
      51              : ];
      52              : 
      53            2 : fn version() -> String {
      54            2 :     format!(
      55            2 :         "{GIT_VERSION} failpoints: {}, features: {:?}",
      56            2 :         fail::has_failpoints(),
      57            2 :         FEATURES,
      58            2 :     )
      59            2 : }
      60              : 
      61            0 : fn main() -> anyhow::Result<()> {
      62            0 :     let launch_ts = Box::leak(Box::new(LaunchTimestamp::generate()));
      63            0 : 
      64            0 :     let arg_matches = cli().get_matches();
      65            0 : 
      66            0 :     if arg_matches.get_flag("enabled-features") {
      67            0 :         println!("{{\"features\": {FEATURES:?} }}");
      68            0 :         return Ok(());
      69            0 :     }
      70            0 : 
      71            0 :     let workdir = arg_matches
      72            0 :         .get_one::<String>("workdir")
      73            0 :         .map(Utf8Path::new)
      74            0 :         .unwrap_or_else(|| Utf8Path::new(".neon"));
      75            0 :     let workdir = workdir
      76            0 :         .canonicalize_utf8()
      77            0 :         .with_context(|| format!("Error opening workdir '{workdir}'"))?;
      78              : 
      79            0 :     let cfg_file_path = workdir.join("pageserver.toml");
      80            0 : 
      81            0 :     // Set CWD to workdir for non-daemon modes
      82            0 :     env::set_current_dir(&workdir)
      83            0 :         .with_context(|| format!("Failed to set application's current dir to '{workdir}'"))?;
      84              : 
      85            0 :     let conf = match initialize_config(&cfg_file_path, arg_matches, &workdir)? {
      86            0 :         ControlFlow::Continue(conf) => conf,
      87              :         ControlFlow::Break(()) => {
      88            0 :             info!("Pageserver config init successful");
      89            0 :             return Ok(());
      90              :         }
      91              :     };
      92              : 
      93              :     // Initialize logging.
      94              :     //
      95              :     // It must be initialized before the custom panic hook is installed below.
      96              :     //
      97              :     // Regarding tracing_error enablement: at this time, we only use the
      98              :     // tracing_error crate to debug_assert that log spans contain tenant and timeline ids.
      99              :     // See `debug_assert_current_span_has_tenant_and_timeline_id` in the timeline module
     100            0 :     let tracing_error_layer_enablement = if cfg!(debug_assertions) {
     101            0 :         TracingErrorLayerEnablement::EnableWithRustLogFilter
     102              :     } else {
     103            0 :         TracingErrorLayerEnablement::Disabled
     104              :     };
     105            0 :     logging::init(
     106            0 :         conf.log_format,
     107            0 :         tracing_error_layer_enablement,
     108            0 :         logging::Output::Stdout,
     109            0 :     )?;
     110              : 
     111              :     // mind the order required here: 1. logging, 2. panic_hook, 3. sentry.
     112              :     // disarming this hook on pageserver, because we never tear down tracing.
     113            0 :     logging::replace_panic_hook_with_tracing_panic_hook().forget();
     114            0 : 
     115            0 :     // initialize sentry if SENTRY_DSN is provided
     116            0 :     let _sentry_guard = init_sentry(
     117            0 :         Some(GIT_VERSION.into()),
     118            0 :         &[("node_id", &conf.id.to_string())],
     119            0 :     );
     120            0 : 
     121            0 :     let tenants_path = conf.tenants_path();
     122            0 :     if !tenants_path.exists() {
     123            0 :         utils::crashsafe::create_dir_all(conf.tenants_path())
     124            0 :             .with_context(|| format!("Failed to create tenants root dir at '{tenants_path}'"))?;
     125            0 :     }
     126              : 
     127              :     // Initialize up failpoints support
     128            0 :     let scenario = failpoint_support::init();
     129            0 : 
     130            0 :     // Basic initialization of things that don't change after startup
     131            0 :     virtual_file::init(conf.max_file_descriptors, conf.virtual_file_io_engine);
     132            0 :     page_cache::init(conf.page_cache_size);
     133            0 : 
     134            0 :     start_pageserver(launch_ts, conf).context("Failed to start pageserver")?;
     135              : 
     136            0 :     scenario.teardown();
     137            0 :     Ok(())
     138            0 : }
     139              : 
     140            0 : fn initialize_config(
     141            0 :     cfg_file_path: &Utf8Path,
     142            0 :     arg_matches: clap::ArgMatches,
     143            0 :     workdir: &Utf8Path,
     144            0 : ) -> anyhow::Result<ControlFlow<(), &'static PageServerConf>> {
     145            0 :     let init = arg_matches.get_flag("init");
     146            0 :     let update_config = init || arg_matches.get_flag("update-config");
     147              : 
     148            0 :     let (mut toml, config_file_exists) = if cfg_file_path.is_file() {
     149            0 :         if init {
     150            0 :             anyhow::bail!(
     151            0 :                 "Config file '{cfg_file_path}' already exists, cannot init it, use --update-config to update it",
     152            0 :             );
     153            0 :         }
     154              :         // Supplement the CLI arguments with the config file
     155            0 :         let cfg_file_contents = std::fs::read_to_string(cfg_file_path)
     156            0 :             .with_context(|| format!("Failed to read pageserver config at '{cfg_file_path}'"))?;
     157              :         (
     158            0 :             cfg_file_contents
     159            0 :                 .parse::<toml_edit::Document>()
     160            0 :                 .with_context(|| {
     161            0 :                     format!("Failed to parse '{cfg_file_path}' as pageserver config")
     162            0 :                 })?,
     163              :             true,
     164              :         )
     165            0 :     } else if cfg_file_path.exists() {
     166            0 :         anyhow::bail!("Config file '{cfg_file_path}' exists but is not a regular file");
     167              :     } else {
     168              :         // We're initializing the tenant, so there's no config file yet
     169              :         (
     170            0 :             DEFAULT_CONFIG_FILE
     171            0 :                 .parse::<toml_edit::Document>()
     172            0 :                 .context("could not parse built-in config file")?,
     173              :             false,
     174              :         )
     175              :     };
     176              : 
     177            0 :     if let Some(values) = arg_matches.get_many::<String>("config-override") {
     178            0 :         for option_line in values {
     179            0 :             let doc = toml_edit::Document::from_str(option_line).with_context(|| {
     180            0 :                 format!("Option '{option_line}' could not be parsed as a toml document")
     181            0 :             })?;
     182              : 
     183            0 :             for (key, item) in doc.iter() {
     184            0 :                 if config_file_exists && update_config && key == "id" && toml.contains_key(key) {
     185            0 :                     anyhow::bail!("Pageserver config file exists at '{cfg_file_path}' and has node id already, it cannot be overridden");
     186            0 :                 }
     187            0 :                 toml.insert(key, item.clone());
     188              :             }
     189              :         }
     190            0 :     }
     191              : 
     192            0 :     debug!("Resulting toml: {toml}");
     193            0 :     let conf = PageServerConf::parse_and_validate(&toml, workdir)
     194            0 :         .context("Failed to parse pageserver configuration")?;
     195              : 
     196            0 :     if update_config {
     197            0 :         info!("Writing pageserver config to '{cfg_file_path}'");
     198              : 
     199            0 :         std::fs::write(cfg_file_path, toml.to_string())
     200            0 :             .with_context(|| format!("Failed to write pageserver config to '{cfg_file_path}'"))?;
     201            0 :         info!("Config successfully written to '{cfg_file_path}'")
     202            0 :     }
     203              : 
     204            0 :     Ok(if init {
     205            0 :         ControlFlow::Break(())
     206              :     } else {
     207            0 :         ControlFlow::Continue(Box::leak(Box::new(conf)))
     208              :     })
     209            0 : }
     210              : 
     211              : struct WaitForPhaseResult<F: std::future::Future + Unpin> {
     212              :     timeout_remaining: Duration,
     213              :     skipped: Option<F>,
     214              : }
     215              : 
     216              : /// During startup, we apply a timeout to our waits for readiness, to avoid
     217              : /// stalling the whole service if one Tenant experiences some problem.  Each
     218              : /// phase may consume some of the timeout: this function returns the updated
     219              : /// timeout for use in the next call.
     220            0 : async fn wait_for_phase<F>(phase: &str, mut fut: F, timeout: Duration) -> WaitForPhaseResult<F>
     221            0 : where
     222            0 :     F: std::future::Future + Unpin,
     223            0 : {
     224            0 :     let initial_t = Instant::now();
     225            0 :     let skipped = match tokio::time::timeout(timeout, &mut fut).await {
     226            0 :         Ok(_) => None,
     227              :         Err(_) => {
     228            0 :             tracing::info!(
     229            0 :                 timeout_millis = timeout.as_millis(),
     230            0 :                 %phase,
     231            0 :                 "Startup phase timed out, proceeding anyway"
     232            0 :             );
     233            0 :             Some(fut)
     234              :         }
     235              :     };
     236              : 
     237            0 :     WaitForPhaseResult {
     238            0 :         timeout_remaining: timeout
     239            0 :             .checked_sub(Instant::now().duration_since(initial_t))
     240            0 :             .unwrap_or(Duration::ZERO),
     241            0 :         skipped,
     242            0 :     }
     243            0 : }
     244              : 
     245            0 : fn startup_checkpoint(started_at: Instant, phase: &str, human_phase: &str) {
     246            0 :     let elapsed = started_at.elapsed();
     247            0 :     let secs = elapsed.as_secs_f64();
     248            0 :     STARTUP_DURATION.with_label_values(&[phase]).set(secs);
     249            0 : 
     250            0 :     info!(
     251            0 :         elapsed_ms = elapsed.as_millis(),
     252            0 :         "{human_phase} ({secs:.3}s since start)"
     253            0 :     )
     254            0 : }
     255              : 
     256            0 : fn start_pageserver(
     257            0 :     launch_ts: &'static LaunchTimestamp,
     258            0 :     conf: &'static PageServerConf,
     259            0 : ) -> anyhow::Result<()> {
     260            0 :     // Monotonic time for later calculating startup duration
     261            0 :     let started_startup_at = Instant::now();
     262            0 : 
     263            0 :     // Print version and launch timestamp to the log,
     264            0 :     // and expose them as prometheus metrics.
     265            0 :     // A changed version string indicates changed software.
     266            0 :     // A changed launch timestamp indicates a pageserver restart.
     267            0 :     info!(
     268            0 :         "version: {} launch_timestamp: {} build_tag: {}",
     269            0 :         version(),
     270            0 :         launch_ts.to_string(),
     271            0 :         BUILD_TAG,
     272            0 :     );
     273            0 :     set_build_info_metric(GIT_VERSION, BUILD_TAG);
     274            0 :     set_launch_timestamp_metric(launch_ts);
     275            0 :     #[cfg(target_os = "linux")]
     276            0 :     metrics::register_internal(Box::new(metrics::more_process_metrics::Collector::new())).unwrap();
     277            0 :     metrics::register_internal(Box::new(
     278            0 :         pageserver::metrics::tokio_epoll_uring::Collector::new(),
     279            0 :     ))
     280            0 :     .unwrap();
     281            0 :     pageserver::preinitialize_metrics();
     282            0 : 
     283            0 :     // If any failpoints were set from FAILPOINTS environment variable,
     284            0 :     // print them to the log for debugging purposes
     285            0 :     let failpoints = fail::list();
     286            0 :     if !failpoints.is_empty() {
     287            0 :         info!(
     288            0 :             "started with failpoints: {}",
     289            0 :             failpoints
     290            0 :                 .iter()
     291            0 :                 .map(|(name, actions)| format!("{name}={actions}"))
     292            0 :                 .collect::<Vec<String>>()
     293            0 :                 .join(";")
     294            0 :         )
     295            0 :     }
     296              : 
     297              :     // Create and lock PID file. This ensures that there cannot be more than one
     298              :     // pageserver process running at the same time.
     299            0 :     let lock_file_path = conf.workdir.join(PID_FILE_NAME);
     300            0 :     let lock_file =
     301            0 :         utils::pid_file::claim_for_current_process(&lock_file_path).context("claim pid file")?;
     302            0 :     info!("Claimed pid file at {lock_file_path:?}");
     303              : 
     304              :     // Ensure that the lock file is held even if the main thread of the process panics.
     305              :     // We need to release the lock file only when the process exits.
     306            0 :     std::mem::forget(lock_file);
     307            0 : 
     308            0 :     // Bind the HTTP and libpq ports early, so that if they are in use by some other
     309            0 :     // process, we error out early.
     310            0 :     let http_addr = &conf.listen_http_addr;
     311            0 :     info!("Starting pageserver http handler on {http_addr}");
     312            0 :     let http_listener = tcp_listener::bind(http_addr)?;
     313              : 
     314            0 :     let pg_addr = &conf.listen_pg_addr;
     315            0 :     info!("Starting pageserver pg protocol handler on {pg_addr}");
     316            0 :     let pageserver_listener = tcp_listener::bind(pg_addr)?;
     317              : 
     318              :     // Launch broker client
     319              :     // The storage_broker::connect call needs to happen inside a tokio runtime thread.
     320            0 :     let broker_client = WALRECEIVER_RUNTIME
     321            0 :         .block_on(async {
     322            0 :             // Note: we do not attempt connecting here (but validate endpoints sanity).
     323            0 :             storage_broker::connect(conf.broker_endpoint.clone(), conf.broker_keepalive_interval)
     324            0 :         })
     325            0 :         .with_context(|| {
     326            0 :             format!(
     327            0 :                 "create broker client for uri={:?} keepalive_interval={:?}",
     328            0 :                 &conf.broker_endpoint, conf.broker_keepalive_interval,
     329            0 :             )
     330            0 :         })?;
     331              : 
     332              :     // Initialize authentication for incoming connections
     333              :     let http_auth;
     334              :     let pg_auth;
     335            0 :     if conf.http_auth_type == AuthType::NeonJWT || conf.pg_auth_type == AuthType::NeonJWT {
     336              :         // unwrap is ok because check is performed when creating config, so path is set and exists
     337            0 :         let key_path = conf.auth_validation_public_key_path.as_ref().unwrap();
     338            0 :         info!("Loading public key(s) for verifying JWT tokens from {key_path:?}");
     339              : 
     340            0 :         let jwt_auth = JwtAuth::from_key_path(key_path)?;
     341            0 :         let auth: Arc<SwappableJwtAuth> = Arc::new(SwappableJwtAuth::new(jwt_auth));
     342              : 
     343            0 :         http_auth = match &conf.http_auth_type {
     344            0 :             AuthType::Trust => None,
     345            0 :             AuthType::NeonJWT => Some(auth.clone()),
     346              :         };
     347            0 :         pg_auth = match &conf.pg_auth_type {
     348            0 :             AuthType::Trust => None,
     349            0 :             AuthType::NeonJWT => Some(auth),
     350              :         };
     351            0 :     } else {
     352            0 :         http_auth = None;
     353            0 :         pg_auth = None;
     354            0 :     }
     355            0 :     info!("Using auth for http API: {:#?}", conf.http_auth_type);
     356            0 :     info!("Using auth for pg connections: {:#?}", conf.pg_auth_type);
     357              : 
     358            0 :     match var("NEON_AUTH_TOKEN") {
     359            0 :         Ok(v) => {
     360            0 :             info!("Loaded JWT token for authentication with Safekeeper");
     361            0 :             pageserver::config::SAFEKEEPER_AUTH_TOKEN
     362            0 :                 .set(Arc::new(v))
     363            0 :                 .map_err(|_| anyhow!("Could not initialize SAFEKEEPER_AUTH_TOKEN"))?;
     364              :         }
     365              :         Err(VarError::NotPresent) => {
     366            0 :             info!("No JWT token for authentication with Safekeeper detected");
     367              :         }
     368            0 :         Err(e) => {
     369            0 :             return Err(e).with_context(|| {
     370            0 :                 "Failed to either load to detect non-present NEON_AUTH_TOKEN environment variable"
     371            0 :             })
     372              :         }
     373              :     };
     374              : 
     375              :     // Top-level cancellation token for the process
     376            0 :     let shutdown_pageserver = tokio_util::sync::CancellationToken::new();
     377              : 
     378              :     // Set up remote storage client
     379            0 :     let remote_storage = create_remote_storage_client(conf)?;
     380              : 
     381              :     // Set up deletion queue
     382            0 :     let (deletion_queue, deletion_workers) = DeletionQueue::new(
     383            0 :         remote_storage.clone(),
     384            0 :         ControlPlaneClient::new(conf, &shutdown_pageserver),
     385            0 :         conf,
     386            0 :     );
     387            0 :     if let Some(deletion_workers) = deletion_workers {
     388            0 :         deletion_workers.spawn_with(BACKGROUND_RUNTIME.handle());
     389            0 :     }
     390              : 
     391              :     // Up to this point no significant I/O has been done: this should have been fast.  Record
     392              :     // duration prior to starting I/O intensive phase of startup.
     393            0 :     startup_checkpoint(started_startup_at, "initial", "Starting loading tenants");
     394            0 :     STARTUP_IS_LOADING.set(1);
     395            0 : 
     396            0 :     // Startup staging or optimizing:
     397            0 :     //
     398            0 :     // We want to minimize downtime for `page_service` connections, and trying not to overload
     399            0 :     // BACKGROUND_RUNTIME by doing initial compactions and initial logical sizes at the same time.
     400            0 :     //
     401            0 :     // init_done_rx will notify when all initial load operations have completed.
     402            0 :     //
     403            0 :     // background_jobs_can_start (same name used to hold off background jobs from starting at
     404            0 :     // consumer side) will be dropped once we can start the background jobs. Currently it is behind
     405            0 :     // completing all initial logical size calculations (init_logical_size_done_rx) and a timeout
     406            0 :     // (background_task_maximum_delay).
     407            0 :     let (init_remote_done_tx, init_remote_done_rx) = utils::completion::channel();
     408            0 :     let (init_done_tx, init_done_rx) = utils::completion::channel();
     409            0 : 
     410            0 :     let (background_jobs_can_start, background_jobs_barrier) = utils::completion::channel();
     411            0 : 
     412            0 :     let order = pageserver::InitializationOrder {
     413            0 :         initial_tenant_load_remote: Some(init_done_tx),
     414            0 :         initial_tenant_load: Some(init_remote_done_tx),
     415            0 :         background_jobs_can_start: background_jobs_barrier.clone(),
     416            0 :     };
     417            0 : 
     418            0 :     // Scan the local 'tenants/' directory and start loading the tenants
     419            0 :     let deletion_queue_client = deletion_queue.new_client();
     420            0 :     let tenant_manager = BACKGROUND_RUNTIME.block_on(mgr::init_tenant_mgr(
     421            0 :         conf,
     422            0 :         TenantSharedResources {
     423            0 :             broker_client: broker_client.clone(),
     424            0 :             remote_storage: remote_storage.clone(),
     425            0 :             deletion_queue_client,
     426            0 :         },
     427            0 :         order,
     428            0 :         shutdown_pageserver.clone(),
     429            0 :     ))?;
     430            0 :     let tenant_manager = Arc::new(tenant_manager);
     431            0 : 
     432            0 :     BACKGROUND_RUNTIME.spawn({
     433            0 :         let shutdown_pageserver = shutdown_pageserver.clone();
     434            0 :         let drive_init = async move {
     435            0 :             // NOTE: unlike many futures in pageserver, this one is cancellation-safe
     436            0 :             let guard = scopeguard::guard_on_success((), |_| {
     437            0 :                 tracing::info!("Cancelled before initial load completed")
     438            0 :             });
     439            0 : 
     440            0 :             let timeout = conf.background_task_maximum_delay;
     441            0 : 
     442            0 :             let init_remote_done = std::pin::pin!(async {
     443            0 :                 init_remote_done_rx.wait().await;
     444            0 :                 startup_checkpoint(
     445            0 :                     started_startup_at,
     446            0 :                     "initial_tenant_load_remote",
     447            0 :                     "Remote part of initial load completed",
     448            0 :                 );
     449            0 :             });
     450              : 
     451              :             let WaitForPhaseResult {
     452            0 :                 timeout_remaining: timeout,
     453            0 :                 skipped: init_remote_skipped,
     454            0 :             } = wait_for_phase("initial_tenant_load_remote", init_remote_done, timeout).await;
     455              : 
     456            0 :             let init_load_done = std::pin::pin!(async {
     457            0 :                 init_done_rx.wait().await;
     458            0 :                 startup_checkpoint(
     459            0 :                     started_startup_at,
     460            0 :                     "initial_tenant_load",
     461            0 :                     "Initial load completed",
     462            0 :                 );
     463            0 :                 STARTUP_IS_LOADING.set(0);
     464            0 :             });
     465              : 
     466              :             let WaitForPhaseResult {
     467            0 :                 timeout_remaining: _timeout,
     468            0 :                 skipped: init_load_skipped,
     469            0 :             } = wait_for_phase("initial_tenant_load", init_load_done, timeout).await;
     470              : 
     471              :             // initial logical sizes can now start, as they were waiting on init_done_rx.
     472              : 
     473            0 :             scopeguard::ScopeGuard::into_inner(guard);
     474            0 : 
     475            0 :             // allow background jobs to start: we either completed prior stages, or they reached timeout
     476            0 :             // and were skipped.  It is important that we do not let them block background jobs indefinitely,
     477            0 :             // because things like consumption metrics for billing are blocked by this barrier.
     478            0 :             drop(background_jobs_can_start);
     479            0 :             startup_checkpoint(
     480            0 :                 started_startup_at,
     481            0 :                 "background_jobs_can_start",
     482            0 :                 "Starting background jobs",
     483            0 :             );
     484            0 : 
     485            0 :             // We are done. If we skipped any phases due to timeout, run them to completion here so that
     486            0 :             // they will eventually update their startup_checkpoint, and so that we do not declare the
     487            0 :             // 'complete' stage until all the other stages are really done.
     488            0 :             let guard = scopeguard::guard_on_success((), |_| {
     489            0 :                 tracing::info!("Cancelled before waiting for skipped phases done")
     490            0 :             });
     491            0 :             if let Some(f) = init_remote_skipped {
     492            0 :                 f.await;
     493            0 :             }
     494            0 :             if let Some(f) = init_load_skipped {
     495            0 :                 f.await;
     496            0 :             }
     497            0 :             scopeguard::ScopeGuard::into_inner(guard);
     498            0 : 
     499            0 :             startup_checkpoint(started_startup_at, "complete", "Startup complete");
     500            0 :         };
     501            0 : 
     502            0 :         async move {
     503            0 :             let mut drive_init = std::pin::pin!(drive_init);
     504            0 :             // just race these tasks
     505            0 :             tokio::select! {
     506            0 :                 _ = shutdown_pageserver.cancelled() => {},
     507            0 :                 _ = &mut drive_init => {},
     508            0 :             }
     509            0 :         }
     510            0 :     });
     511              : 
     512            0 :     let secondary_controller = if let Some(remote_storage) = &remote_storage {
     513            0 :         secondary::spawn_tasks(
     514            0 :             tenant_manager.clone(),
     515            0 :             remote_storage.clone(),
     516            0 :             background_jobs_barrier.clone(),
     517            0 :             shutdown_pageserver.clone(),
     518            0 :         )
     519              :     } else {
     520            0 :         secondary::null_controller()
     521              :     };
     522              : 
     523              :     // shared state between the disk-usage backed eviction background task and the http endpoint
     524              :     // that allows triggering disk-usage based eviction manually. note that the http endpoint
     525              :     // is still accessible even if background task is not configured as long as remote storage has
     526              :     // been configured.
     527            0 :     let disk_usage_eviction_state: Arc<disk_usage_eviction_task::State> = Arc::default();
     528              : 
     529            0 :     if let Some(remote_storage) = &remote_storage {
     530            0 :         launch_disk_usage_global_eviction_task(
     531            0 :             conf,
     532            0 :             remote_storage.clone(),
     533            0 :             disk_usage_eviction_state.clone(),
     534            0 :             tenant_manager.clone(),
     535            0 :             background_jobs_barrier.clone(),
     536            0 :         )?;
     537            0 :     }
     538              : 
     539              :     // Start up the service to handle HTTP mgmt API request. We created the
     540              :     // listener earlier already.
     541              :     {
     542            0 :         let _rt_guard = MGMT_REQUEST_RUNTIME.enter();
     543              : 
     544            0 :         let router_state = Arc::new(
     545            0 :             http::routes::State::new(
     546            0 :                 conf,
     547            0 :                 tenant_manager,
     548            0 :                 http_auth.clone(),
     549            0 :                 remote_storage.clone(),
     550            0 :                 broker_client.clone(),
     551            0 :                 disk_usage_eviction_state,
     552            0 :                 deletion_queue.new_client(),
     553            0 :                 secondary_controller,
     554            0 :             )
     555            0 :             .context("Failed to initialize router state")?,
     556              :         );
     557            0 :         let router = http::make_router(router_state, launch_ts, http_auth.clone())?
     558            0 :             .build()
     559            0 :             .map_err(|err| anyhow!(err))?;
     560            0 :         let service = utils::http::RouterService::new(router).unwrap();
     561            0 :         let server = hyper::Server::from_tcp(http_listener)?
     562            0 :             .serve(service)
     563            0 :             .with_graceful_shutdown(task_mgr::shutdown_watcher());
     564            0 : 
     565            0 :         task_mgr::spawn(
     566            0 :             MGMT_REQUEST_RUNTIME.handle(),
     567            0 :             TaskKind::HttpEndpointListener,
     568            0 :             None,
     569            0 :             None,
     570            0 :             "http endpoint listener",
     571            0 :             true,
     572            0 :             async {
     573            0 :                 server.await?;
     574            0 :                 Ok(())
     575            0 :             },
     576            0 :         );
     577              :     }
     578              : 
     579            0 :     if let Some(metric_collection_endpoint) = &conf.metric_collection_endpoint {
     580            0 :         let metrics_ctx = RequestContext::todo_child(
     581            0 :             TaskKind::MetricsCollection,
     582            0 :             // This task itself shouldn't download anything.
     583            0 :             // The actual size calculation does need downloads, and
     584            0 :             // creates a child context with the right DownloadBehavior.
     585            0 :             DownloadBehavior::Error,
     586            0 :         );
     587            0 : 
     588            0 :         let local_disk_storage = conf.workdir.join("last_consumption_metrics.json");
     589            0 : 
     590            0 :         task_mgr::spawn(
     591            0 :             crate::BACKGROUND_RUNTIME.handle(),
     592            0 :             TaskKind::MetricsCollection,
     593            0 :             None,
     594            0 :             None,
     595            0 :             "consumption metrics collection",
     596            0 :             true,
     597            0 :             async move {
     598            0 :                 // first wait until background jobs are cleared to launch.
     599            0 :                 //
     600            0 :                 // this is because we only process active tenants and timelines, and the
     601            0 :                 // Timeline::get_current_logical_size will spawn the logical size calculation,
     602            0 :                 // which will not be rate-limited.
     603            0 :                 let cancel = task_mgr::shutdown_token();
     604            0 : 
     605            0 :                 tokio::select! {
     606            0 :                     _ = cancel.cancelled() => { return Ok(()); },
     607            0 :                     _ = background_jobs_barrier.wait() => {}
     608            0 :                 };
     609              : 
     610            0 :                 pageserver::consumption_metrics::collect_metrics(
     611            0 :                     metric_collection_endpoint,
     612            0 :                     conf.metric_collection_interval,
     613            0 :                     conf.cached_metric_collection_interval,
     614            0 :                     conf.synthetic_size_calculation_interval,
     615            0 :                     conf.id,
     616            0 :                     local_disk_storage,
     617            0 :                     cancel,
     618            0 :                     metrics_ctx,
     619            0 :                 )
     620            0 :                 .instrument(info_span!("metrics_collection"))
     621            0 :                 .await?;
     622            0 :                 Ok(())
     623            0 :             },
     624            0 :         );
     625            0 :     }
     626              : 
     627              :     // Spawn a task to listen for libpq connections. It will spawn further tasks
     628              :     // for each connection. We created the listener earlier already.
     629            0 :     {
     630            0 :         let libpq_ctx = RequestContext::todo_child(
     631            0 :             TaskKind::LibpqEndpointListener,
     632            0 :             // listener task shouldn't need to download anything. (We will
     633            0 :             // create a separate sub-contexts for each connection, with their
     634            0 :             // own download behavior. This context is used only to listen and
     635            0 :             // accept connections.)
     636            0 :             DownloadBehavior::Error,
     637            0 :         );
     638            0 :         task_mgr::spawn(
     639            0 :             COMPUTE_REQUEST_RUNTIME.handle(),
     640            0 :             TaskKind::LibpqEndpointListener,
     641            0 :             None,
     642            0 :             None,
     643            0 :             "libpq endpoint listener",
     644            0 :             true,
     645            0 :             async move {
     646            0 :                 page_service::libpq_listener_main(
     647            0 :                     conf,
     648            0 :                     broker_client,
     649            0 :                     pg_auth,
     650            0 :                     pageserver_listener,
     651            0 :                     conf.pg_auth_type,
     652            0 :                     libpq_ctx,
     653            0 :                     task_mgr::shutdown_token(),
     654            0 :                 )
     655            0 :                 .await
     656            0 :             },
     657            0 :         );
     658            0 :     }
     659            0 : 
     660            0 :     let mut shutdown_pageserver = Some(shutdown_pageserver.drop_guard());
     661            0 : 
     662            0 :     // All started up! Now just sit and wait for shutdown signal.
     663            0 :     {
     664            0 :         use signal_hook::consts::*;
     665            0 :         let signal_handler = BACKGROUND_RUNTIME.spawn_blocking(move || {
     666            0 :             let mut signals =
     667            0 :                 signal_hook::iterator::Signals::new([SIGINT, SIGTERM, SIGQUIT]).unwrap();
     668            0 :             return signals
     669            0 :                 .forever()
     670            0 :                 .next()
     671            0 :                 .expect("forever() never returns None unless explicitly closed");
     672            0 :         });
     673            0 :         let signal = BACKGROUND_RUNTIME
     674            0 :             .block_on(signal_handler)
     675            0 :             .expect("join error");
     676            0 :         match signal {
     677              :             SIGQUIT => {
     678            0 :                 info!("Got signal {signal}. Terminating in immediate shutdown mode",);
     679            0 :                 std::process::exit(111);
     680              :             }
     681              :             SIGINT | SIGTERM => {
     682            0 :                 info!("Got signal {signal}. Terminating gracefully in fast shutdown mode",);
     683              : 
     684              :                 // This cancels the `shutdown_pageserver` cancellation tree.
     685              :                 // Right now that tree doesn't reach very far, and `task_mgr` is used instead.
     686              :                 // The plan is to change that over time.
     687            0 :                 shutdown_pageserver.take();
     688            0 :                 let bg_remote_storage = remote_storage.clone();
     689            0 :                 let bg_deletion_queue = deletion_queue.clone();
     690            0 :                 BACKGROUND_RUNTIME.block_on(pageserver::shutdown_pageserver(
     691            0 :                     bg_remote_storage.map(|_| bg_deletion_queue),
     692            0 :                     0,
     693            0 :                 ));
     694            0 :                 unreachable!()
     695              :             }
     696            0 :             _ => unreachable!(),
     697              :         }
     698              :     }
     699            0 : }
     700              : 
     701            0 : fn create_remote_storage_client(
     702            0 :     conf: &'static PageServerConf,
     703            0 : ) -> anyhow::Result<Option<GenericRemoteStorage>> {
     704            0 :     let config = if let Some(config) = &conf.remote_storage_config {
     705            0 :         config
     706              :     } else {
     707            0 :         tracing::warn!("no remote storage configured, this is a deprecated configuration");
     708            0 :         return Ok(None);
     709              :     };
     710              : 
     711              :     // Create the client
     712            0 :     let mut remote_storage = GenericRemoteStorage::from_config(config)?;
     713              : 
     714              :     // If `test_remote_failures` is non-zero, wrap the client with a
     715              :     // wrapper that simulates failures.
     716            0 :     if conf.test_remote_failures > 0 {
     717            0 :         if !cfg!(feature = "testing") {
     718            0 :             anyhow::bail!("test_remote_failures option is not available because pageserver was compiled without the 'testing' feature");
     719            0 :         }
     720            0 :         info!(
     721            0 :             "Simulating remote failures for first {} attempts of each op",
     722            0 :             conf.test_remote_failures
     723            0 :         );
     724            0 :         remote_storage =
     725            0 :             GenericRemoteStorage::unreliable_wrapper(remote_storage, conf.test_remote_failures);
     726            0 :     }
     727              : 
     728            0 :     Ok(Some(remote_storage))
     729            0 : }
     730              : 
     731            2 : fn cli() -> Command {
     732            2 :     Command::new("Neon page server")
     733            2 :         .about("Materializes WAL stream to pages and serves them to the postgres")
     734            2 :         .version(version())
     735            2 :         .arg(
     736            2 :             Arg::new("init")
     737            2 :                 .long("init")
     738            2 :                 .action(ArgAction::SetTrue)
     739            2 :                 .help("Initialize pageserver with all given config overrides"),
     740            2 :         )
     741            2 :         .arg(
     742            2 :             Arg::new("workdir")
     743            2 :                 .short('D')
     744            2 :                 .long("workdir")
     745            2 :                 .help("Working directory for the pageserver"),
     746            2 :         )
     747            2 :         // See `settings.md` for more details on the extra configuration patameters pageserver can process
     748            2 :         .arg(
     749            2 :             Arg::new("config-override")
     750            2 :                 .short('c')
     751            2 :                 .num_args(1)
     752            2 :                 .action(ArgAction::Append)
     753            2 :                 .help("Additional configuration overrides of the ones from the toml config file (or new ones to add there). \
     754            2 :                 Any option has to be a valid toml document, example: `-c=\"foo='hey'\"` `-c=\"foo={value=1}\"`"),
     755            2 :         )
     756            2 :         .arg(
     757            2 :             Arg::new("update-config")
     758            2 :                 .long("update-config")
     759            2 :                 .action(ArgAction::SetTrue)
     760            2 :                 .help("Update the config file when started"),
     761            2 :         )
     762            2 :         .arg(
     763            2 :             Arg::new("enabled-features")
     764            2 :                 .long("enabled-features")
     765            2 :                 .action(ArgAction::SetTrue)
     766            2 :                 .help("Show enabled compile time features"),
     767            2 :         )
     768            2 : }
     769              : 
     770            2 : #[test]
     771            2 : fn verify_cli() {
     772            2 :     cli().debug_assert();
     773            2 : }
        

Generated by: LCOV version 2.1-beta