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