Line data Source code
1 : //
2 : // Main entry point for the safekeeper executable
3 : //
4 : use anyhow::{bail, Context, Result};
5 : use camino::{Utf8Path, Utf8PathBuf};
6 : use clap::{ArgAction, Parser};
7 : use futures::future::BoxFuture;
8 : use futures::stream::FuturesUnordered;
9 : use futures::{FutureExt, StreamExt};
10 : use remote_storage::RemoteStorageConfig;
11 : use sd_notify::NotifyState;
12 : use tokio::runtime::Handle;
13 : use tokio::signal::unix::{signal, SignalKind};
14 : use tokio::task::JoinError;
15 : use utils::logging::SecretString;
16 :
17 : use std::env::{var, VarError};
18 : use std::fs::{self, File};
19 : use std::io::{ErrorKind, Write};
20 : use std::str::FromStr;
21 : use std::sync::Arc;
22 : use std::time::{Duration, Instant};
23 : use storage_broker::Uri;
24 :
25 : use tracing::*;
26 : use utils::pid_file;
27 :
28 : use metrics::set_build_info_metric;
29 : use safekeeper::defaults::{
30 : DEFAULT_CONTROL_FILE_SAVE_INTERVAL, DEFAULT_EVICTION_MIN_RESIDENT, DEFAULT_HEARTBEAT_TIMEOUT,
31 : DEFAULT_HTTP_LISTEN_ADDR, DEFAULT_MAX_OFFLOADER_LAG_BYTES, DEFAULT_PARTIAL_BACKUP_CONCURRENCY,
32 : DEFAULT_PARTIAL_BACKUP_TIMEOUT, DEFAULT_PG_LISTEN_ADDR,
33 : };
34 : use safekeeper::http;
35 : use safekeeper::wal_service;
36 : use safekeeper::GlobalTimelines;
37 : use safekeeper::SafeKeeperConf;
38 : use safekeeper::{broker, WAL_SERVICE_RUNTIME};
39 : use safekeeper::{control_file, BROKER_RUNTIME};
40 : use safekeeper::{wal_backup, HTTP_RUNTIME};
41 : use storage_broker::DEFAULT_ENDPOINT;
42 : use utils::auth::{JwtAuth, Scope, SwappableJwtAuth};
43 : use utils::{
44 : id::NodeId,
45 : logging::{self, LogFormat},
46 : project_build_tag, project_git_version,
47 : sentry_init::init_sentry,
48 : tcp_listener,
49 : };
50 :
51 : #[global_allocator]
52 : static GLOBAL: tikv_jemallocator::Jemalloc = tikv_jemallocator::Jemalloc;
53 :
54 : /// Configure jemalloc to sample allocations for profiles every 1 MB (1 << 20).
55 : #[allow(non_upper_case_globals)]
56 : #[export_name = "malloc_conf"]
57 : pub static malloc_conf: &[u8] = b"prof:true,prof_active:true,lg_prof_sample:20\0";
58 :
59 : const PID_FILE_NAME: &str = "safekeeper.pid";
60 : const ID_FILE_NAME: &str = "safekeeper.id";
61 :
62 : project_git_version!(GIT_VERSION);
63 : project_build_tag!(BUILD_TAG);
64 :
65 : const FEATURES: &[&str] = &[
66 : #[cfg(feature = "testing")]
67 : "testing",
68 : ];
69 :
70 0 : fn version() -> String {
71 0 : format!(
72 0 : "{GIT_VERSION} failpoints: {}, features: {:?}",
73 0 : fail::has_failpoints(),
74 0 : FEATURES,
75 0 : )
76 0 : }
77 :
78 : const ABOUT: &str = r#"
79 : A fleet of safekeepers is responsible for reliably storing WAL received from
80 : compute, passing it through consensus (mitigating potential computes brain
81 : split), and serving the hardened part further downstream to pageserver(s).
82 : "#;
83 :
84 : #[derive(Parser)]
85 : #[command(name = "Neon safekeeper", version = GIT_VERSION, about = ABOUT, long_about = None)]
86 : struct Args {
87 : /// Path to the safekeeper data directory.
88 : #[arg(short = 'D', long, default_value = "./")]
89 0 : datadir: Utf8PathBuf,
90 : /// Safekeeper node id.
91 : #[arg(long)]
92 : id: Option<u64>,
93 : /// Initialize safekeeper with given id and exit.
94 : #[arg(long)]
95 0 : init: bool,
96 : /// Listen endpoint for receiving/sending WAL in the form host:port.
97 : #[arg(short, long, default_value = DEFAULT_PG_LISTEN_ADDR)]
98 0 : listen_pg: String,
99 : /// Listen endpoint for receiving/sending WAL in the form host:port allowing
100 : /// only tenant scoped auth tokens. Pointless if auth is disabled.
101 : #[arg(long, default_value = None, verbatim_doc_comment)]
102 : listen_pg_tenant_only: Option<String>,
103 : /// Listen http endpoint for management and metrics in the form host:port.
104 : #[arg(long, default_value = DEFAULT_HTTP_LISTEN_ADDR)]
105 0 : listen_http: String,
106 : /// Advertised endpoint for receiving/sending WAL in the form host:port. If not
107 : /// specified, listen_pg is used to advertise instead.
108 : #[arg(long, default_value = None)]
109 : advertise_pg: Option<String>,
110 : /// Availability zone of the safekeeper.
111 : #[arg(long)]
112 : availability_zone: Option<String>,
113 : /// Do not wait for changes to be written safely to disk. Unsafe.
114 : #[arg(short, long)]
115 0 : no_sync: bool,
116 : /// Dump control file at path specified by this argument and exit.
117 : #[arg(long)]
118 : dump_control_file: Option<Utf8PathBuf>,
119 : /// Broker endpoint for storage nodes coordination in the form
120 : /// http[s]://host:port. In case of https schema TLS is connection is
121 : /// established; plaintext otherwise.
122 : #[arg(long, default_value = DEFAULT_ENDPOINT, verbatim_doc_comment)]
123 0 : broker_endpoint: Uri,
124 : /// Broker keepalive interval.
125 : #[arg(long, value_parser= humantime::parse_duration, default_value = storage_broker::DEFAULT_KEEPALIVE_INTERVAL)]
126 0 : broker_keepalive_interval: Duration,
127 : /// Peer safekeeper is considered dead after not receiving heartbeats from
128 : /// it during this period passed as a human readable duration.
129 : #[arg(long, value_parser= humantime::parse_duration, default_value = DEFAULT_HEARTBEAT_TIMEOUT, verbatim_doc_comment)]
130 0 : heartbeat_timeout: Duration,
131 : /// Enable/disable peer recovery.
132 : #[arg(long, default_value = "false", action=ArgAction::Set)]
133 0 : peer_recovery: bool,
134 : /// Remote storage configuration for WAL backup (offloading to s3) as TOML
135 : /// inline table, e.g.
136 : /// {max_concurrent_syncs = 17, max_sync_errors = 13, bucket_name = "<BUCKETNAME>", bucket_region = "<REGION>", concurrency_limit = 119}
137 : /// Safekeeper offloads WAL to
138 : /// [prefix_in_bucket/]<tenant_id>/<timeline_id>/<segment_file>, mirroring
139 : /// structure on the file system.
140 : #[arg(long, value_parser = parse_remote_storage, verbatim_doc_comment)]
141 : remote_storage: Option<RemoteStorageConfig>,
142 : /// Safekeeper won't be elected for WAL offloading if it is lagging for more than this value in bytes
143 1 : #[arg(long, default_value_t = DEFAULT_MAX_OFFLOADER_LAG_BYTES)]
144 0 : max_offloader_lag: u64,
145 : /// Number of max parallel WAL segments to be offloaded to remote storage.
146 : #[arg(long, default_value = "5")]
147 0 : wal_backup_parallel_jobs: usize,
148 : /// Disable WAL backup to s3. When disabled, safekeeper removes WAL ignoring
149 : /// WAL backup horizon.
150 : #[arg(long)]
151 0 : disable_wal_backup: bool,
152 : /// If given, enables auth on incoming connections to WAL service endpoint
153 : /// (--listen-pg). Value specifies path to a .pem public key used for
154 : /// validations of JWT tokens. Empty string is allowed and means disabling
155 : /// auth.
156 : #[arg(long, verbatim_doc_comment, value_parser = opt_pathbuf_parser)]
157 : pg_auth_public_key_path: Option<Utf8PathBuf>,
158 : /// If given, enables auth on incoming connections to tenant only WAL
159 : /// service endpoint (--listen-pg-tenant-only). Value specifies path to a
160 : /// .pem public key used for validations of JWT tokens. Empty string is
161 : /// allowed and means disabling auth.
162 : #[arg(long, verbatim_doc_comment, value_parser = opt_pathbuf_parser)]
163 : pg_tenant_only_auth_public_key_path: Option<Utf8PathBuf>,
164 : /// If given, enables auth on incoming connections to http management
165 : /// service endpoint (--listen-http). Value specifies path to a .pem public
166 : /// key used for validations of JWT tokens. Empty string is allowed and
167 : /// means disabling auth.
168 : #[arg(long, verbatim_doc_comment, value_parser = opt_pathbuf_parser)]
169 : http_auth_public_key_path: Option<Utf8PathBuf>,
170 : /// Format for logging, either 'plain' or 'json'.
171 : #[arg(long, default_value = "plain")]
172 0 : log_format: String,
173 : /// Run everything in single threaded current thread runtime, might be
174 : /// useful for debugging.
175 : #[arg(long)]
176 0 : current_thread_runtime: bool,
177 : /// Keep horizon for walsenders, i.e. don't remove WAL segments that are
178 : /// still needed for existing replication connection.
179 : #[arg(long)]
180 0 : walsenders_keep_horizon: bool,
181 : /// Controls how long backup will wait until uploading the partial segment.
182 : #[arg(long, value_parser = humantime::parse_duration, default_value = DEFAULT_PARTIAL_BACKUP_TIMEOUT, verbatim_doc_comment)]
183 0 : partial_backup_timeout: Duration,
184 : /// Disable task to push messages to broker every second. Supposed to
185 : /// be used in tests.
186 : #[arg(long)]
187 0 : disable_periodic_broker_push: bool,
188 : /// Enable automatic switching to offloaded state.
189 : #[arg(long)]
190 0 : enable_offload: bool,
191 : /// Delete local WAL files after offloading. When disabled, they will be left on disk.
192 : #[arg(long)]
193 0 : delete_offloaded_wal: bool,
194 : /// Pending updates to control file will be automatically saved after this interval.
195 : #[arg(long, value_parser = humantime::parse_duration, default_value = DEFAULT_CONTROL_FILE_SAVE_INTERVAL)]
196 0 : control_file_save_interval: Duration,
197 : /// Number of allowed concurrent uploads of partial segments to remote storage.
198 : #[arg(long, default_value = DEFAULT_PARTIAL_BACKUP_CONCURRENCY)]
199 0 : partial_backup_concurrency: usize,
200 : /// How long a timeline must be resident before it is eligible for eviction.
201 : /// Usually, timeline eviction has to wait for `partial_backup_timeout` before being eligible for eviction,
202 : /// but if a timeline is un-evicted and then _not_ written to, it would immediately flap to evicting again,
203 : /// if it weren't for `eviction_min_resident` preventing that.
204 : ///
205 : /// Also defines interval for eviction retries.
206 : #[arg(long, value_parser = humantime::parse_duration, default_value = DEFAULT_EVICTION_MIN_RESIDENT)]
207 0 : eviction_min_resident: Duration,
208 : }
209 :
210 : // Like PathBufValueParser, but allows empty string.
211 0 : fn opt_pathbuf_parser(s: &str) -> Result<Utf8PathBuf, String> {
212 0 : Ok(Utf8PathBuf::from_str(s).unwrap())
213 0 : }
214 :
215 : #[tokio::main(flavor = "current_thread")]
216 0 : async fn main() -> anyhow::Result<()> {
217 0 : // We want to allow multiple occurences of the same arg (taking the last) so
218 0 : // that neon_local could generate command with defaults + overrides without
219 0 : // getting 'argument cannot be used multiple times' error. This seems to be
220 0 : // impossible with pure Derive API, so convert struct to Command, modify it,
221 0 : // parse arguments, and then fill the struct back.
222 0 : let cmd = <Args as clap::CommandFactory>::command()
223 0 : .args_override_self(true)
224 0 : .version(version());
225 0 : let mut matches = cmd.get_matches();
226 0 : let mut args = <Args as clap::FromArgMatches>::from_arg_matches_mut(&mut matches)?;
227 0 :
228 0 : // I failed to modify opt_pathbuf_parser to return Option<PathBuf> in
229 0 : // reasonable time, so turn empty string into option post factum.
230 0 : if let Some(pb) = &args.pg_auth_public_key_path {
231 0 : if pb.as_os_str().is_empty() {
232 0 : args.pg_auth_public_key_path = None;
233 0 : }
234 0 : }
235 0 : if let Some(pb) = &args.pg_tenant_only_auth_public_key_path {
236 0 : if pb.as_os_str().is_empty() {
237 0 : args.pg_tenant_only_auth_public_key_path = None;
238 0 : }
239 0 : }
240 0 : if let Some(pb) = &args.http_auth_public_key_path {
241 0 : if pb.as_os_str().is_empty() {
242 0 : args.http_auth_public_key_path = None;
243 0 : }
244 0 : }
245 0 :
246 0 : if let Some(addr) = args.dump_control_file {
247 0 : let state = control_file::FileStorage::load_control_file(addr)?;
248 0 : let json = serde_json::to_string(&state)?;
249 0 : print!("{json}");
250 0 : return Ok(());
251 0 : }
252 0 :
253 0 : // important to keep the order of:
254 0 : // 1. init logging
255 0 : // 2. tracing panic hook
256 0 : // 3. sentry
257 0 : logging::init(
258 0 : LogFormat::from_config(&args.log_format)?,
259 0 : logging::TracingErrorLayerEnablement::Disabled,
260 0 : logging::Output::Stdout,
261 0 : )?;
262 0 : logging::replace_panic_hook_with_tracing_panic_hook().forget();
263 0 : info!("version: {GIT_VERSION}");
264 0 : info!("buld_tag: {BUILD_TAG}");
265 0 :
266 0 : let args_workdir = &args.datadir;
267 0 : let workdir = args_workdir.canonicalize_utf8().with_context(|| {
268 0 : format!("Failed to get the absolute path for input workdir {args_workdir:?}")
269 0 : })?;
270 0 :
271 0 : // Change into the data directory.
272 0 : std::env::set_current_dir(&workdir)?;
273 0 :
274 0 : // Prevent running multiple safekeepers on the same directory
275 0 : let lock_file_path = workdir.join(PID_FILE_NAME);
276 0 : let lock_file =
277 0 : pid_file::claim_for_current_process(&lock_file_path).context("claim pid file")?;
278 0 : info!("claimed pid file at {lock_file_path:?}");
279 0 : // ensure that the lock file is held even if the main thread of the process is panics
280 0 : // we need to release the lock file only when the current process is gone
281 0 : std::mem::forget(lock_file);
282 0 :
283 0 : // Set or read our ID.
284 0 : let id = set_id(&workdir, args.id.map(NodeId))?;
285 0 : if args.init {
286 0 : return Ok(());
287 0 : }
288 0 :
289 0 : let pg_auth = match args.pg_auth_public_key_path.as_ref() {
290 0 : None => {
291 0 : info!("pg auth is disabled");
292 0 : None
293 0 : }
294 0 : Some(path) => {
295 0 : info!("loading pg auth JWT key from {path}");
296 0 : Some(Arc::new(
297 0 : JwtAuth::from_key_path(path).context("failed to load the auth key")?,
298 0 : ))
299 0 : }
300 0 : };
301 0 : let pg_tenant_only_auth = match args.pg_tenant_only_auth_public_key_path.as_ref() {
302 0 : None => {
303 0 : info!("pg tenant only auth is disabled");
304 0 : None
305 0 : }
306 0 : Some(path) => {
307 0 : info!("loading pg tenant only auth JWT key from {path}");
308 0 : Some(Arc::new(
309 0 : JwtAuth::from_key_path(path).context("failed to load the auth key")?,
310 0 : ))
311 0 : }
312 0 : };
313 0 : let http_auth = match args.http_auth_public_key_path.as_ref() {
314 0 : None => {
315 0 : info!("http auth is disabled");
316 0 : None
317 0 : }
318 0 : Some(path) => {
319 0 : info!("loading http auth JWT key(s) from {path}");
320 0 : let jwt_auth = JwtAuth::from_key_path(path).context("failed to load the auth key")?;
321 0 : Some(Arc::new(SwappableJwtAuth::new(jwt_auth)))
322 0 : }
323 0 : };
324 0 :
325 0 : // Load JWT auth token to connect to other safekeepers for pull_timeline.
326 0 : let sk_auth_token = match var("SAFEKEEPER_AUTH_TOKEN") {
327 0 : Ok(v) => {
328 0 : info!("loaded JWT token for authentication with safekeepers");
329 0 : Some(SecretString::from(v))
330 0 : }
331 0 : Err(VarError::NotPresent) => {
332 0 : info!("no JWT token for authentication with safekeepers detected");
333 0 : None
334 0 : }
335 0 : Err(_) => {
336 0 : warn!("JWT token for authentication with safekeepers is not unicode");
337 0 : None
338 0 : }
339 0 : };
340 0 :
341 0 : let conf = Arc::new(SafeKeeperConf {
342 0 : workdir,
343 0 : my_id: id,
344 0 : listen_pg_addr: args.listen_pg,
345 0 : listen_pg_addr_tenant_only: args.listen_pg_tenant_only,
346 0 : listen_http_addr: args.listen_http,
347 0 : advertise_pg_addr: args.advertise_pg,
348 0 : availability_zone: args.availability_zone,
349 0 : no_sync: args.no_sync,
350 0 : broker_endpoint: args.broker_endpoint,
351 0 : broker_keepalive_interval: args.broker_keepalive_interval,
352 0 : heartbeat_timeout: args.heartbeat_timeout,
353 0 : peer_recovery_enabled: args.peer_recovery,
354 0 : remote_storage: args.remote_storage,
355 0 : max_offloader_lag_bytes: args.max_offloader_lag,
356 0 : wal_backup_enabled: !args.disable_wal_backup,
357 0 : backup_parallel_jobs: args.wal_backup_parallel_jobs,
358 0 : pg_auth,
359 0 : pg_tenant_only_auth,
360 0 : http_auth,
361 0 : sk_auth_token,
362 0 : current_thread_runtime: args.current_thread_runtime,
363 0 : walsenders_keep_horizon: args.walsenders_keep_horizon,
364 0 : partial_backup_timeout: args.partial_backup_timeout,
365 0 : disable_periodic_broker_push: args.disable_periodic_broker_push,
366 0 : enable_offload: args.enable_offload,
367 0 : delete_offloaded_wal: args.delete_offloaded_wal,
368 0 : control_file_save_interval: args.control_file_save_interval,
369 0 : partial_backup_concurrency: args.partial_backup_concurrency,
370 0 : eviction_min_resident: args.eviction_min_resident,
371 0 : });
372 0 :
373 0 : // initialize sentry if SENTRY_DSN is provided
374 0 : let _sentry_guard = init_sentry(
375 0 : Some(GIT_VERSION.into()),
376 0 : &[("node_id", &conf.my_id.to_string())],
377 0 : );
378 0 : start_safekeeper(conf).await
379 0 : }
380 :
381 : /// Result of joining any of main tasks: upper error means task failed to
382 : /// complete, e.g. panicked, inner is error produced by task itself.
383 : type JoinTaskRes = Result<anyhow::Result<()>, JoinError>;
384 :
385 0 : async fn start_safekeeper(conf: Arc<SafeKeeperConf>) -> Result<()> {
386 0 : // fsync the datadir to make sure we have a consistent state on disk.
387 0 : if !conf.no_sync {
388 0 : let dfd = File::open(&conf.workdir).context("open datadir for syncfs")?;
389 0 : let started = Instant::now();
390 0 : utils::crashsafe::syncfs(dfd)?;
391 0 : let elapsed = started.elapsed();
392 0 : info!(
393 0 : elapsed_ms = elapsed.as_millis(),
394 0 : "syncfs data directory done"
395 : );
396 0 : }
397 :
398 0 : info!("starting safekeeper WAL service on {}", conf.listen_pg_addr);
399 0 : let pg_listener = tcp_listener::bind(conf.listen_pg_addr.clone()).map_err(|e| {
400 0 : error!("failed to bind to address {}: {}", conf.listen_pg_addr, e);
401 0 : e
402 0 : })?;
403 :
404 0 : let pg_listener_tenant_only =
405 0 : if let Some(listen_pg_addr_tenant_only) = &conf.listen_pg_addr_tenant_only {
406 0 : info!(
407 0 : "starting safekeeper tenant scoped WAL service on {}",
408 : listen_pg_addr_tenant_only
409 : );
410 0 : let listener = tcp_listener::bind(listen_pg_addr_tenant_only.clone()).map_err(|e| {
411 0 : error!(
412 0 : "failed to bind to address {}: {}",
413 : listen_pg_addr_tenant_only, e
414 : );
415 0 : e
416 0 : })?;
417 0 : Some(listener)
418 : } else {
419 0 : None
420 : };
421 :
422 0 : info!(
423 0 : "starting safekeeper HTTP service on {}",
424 0 : conf.listen_http_addr
425 : );
426 0 : let http_listener = tcp_listener::bind(conf.listen_http_addr.clone()).map_err(|e| {
427 0 : error!("failed to bind to address {}: {}", conf.listen_http_addr, e);
428 0 : e
429 0 : })?;
430 :
431 0 : let global_timelines = Arc::new(GlobalTimelines::new(conf.clone()));
432 0 :
433 0 : // Register metrics collector for active timelines. It's important to do this
434 0 : // after daemonizing, otherwise process collector will be upset.
435 0 : let timeline_collector = safekeeper::metrics::TimelineCollector::new(global_timelines.clone());
436 0 : metrics::register_internal(Box::new(timeline_collector))?;
437 :
438 0 : wal_backup::init_remote_storage(&conf).await;
439 :
440 : // Keep handles to main tasks to die if any of them disappears.
441 0 : let mut tasks_handles: FuturesUnordered<BoxFuture<(String, JoinTaskRes)>> =
442 0 : FuturesUnordered::new();
443 0 :
444 0 : // Start wal backup launcher before loading timelines as we'll notify it
445 0 : // through the channel about timelines which need offloading, not draining
446 0 : // the channel would cause deadlock.
447 0 : let current_thread_rt = conf
448 0 : .current_thread_runtime
449 0 : .then(|| Handle::try_current().expect("no runtime in main"));
450 0 :
451 0 : // Load all timelines from disk to memory.
452 0 : global_timelines.init().await?;
453 :
454 : // Run everything in current thread rt, if asked.
455 0 : if conf.current_thread_runtime {
456 0 : info!("running in current thread runtime");
457 0 : }
458 :
459 0 : let wal_service_handle = current_thread_rt
460 0 : .as_ref()
461 0 : .unwrap_or_else(|| WAL_SERVICE_RUNTIME.handle())
462 0 : .spawn(wal_service::task_main(
463 0 : conf.clone(),
464 0 : pg_listener,
465 0 : Scope::SafekeeperData,
466 0 : global_timelines.clone(),
467 0 : ))
468 0 : // wrap with task name for error reporting
469 0 : .map(|res| ("WAL service main".to_owned(), res));
470 0 : tasks_handles.push(Box::pin(wal_service_handle));
471 0 :
472 0 : let global_timelines_ = global_timelines.clone();
473 0 : let timeline_housekeeping_handle = current_thread_rt
474 0 : .as_ref()
475 0 : .unwrap_or_else(|| WAL_SERVICE_RUNTIME.handle())
476 0 : .spawn(async move {
477 : const TOMBSTONE_TTL: Duration = Duration::from_secs(3600 * 24);
478 : loop {
479 0 : tokio::time::sleep(TOMBSTONE_TTL).await;
480 0 : global_timelines_.housekeeping(&TOMBSTONE_TTL);
481 : }
482 0 : })
483 0 : .map(|res| ("Timeline map housekeeping".to_owned(), res));
484 0 : tasks_handles.push(Box::pin(timeline_housekeeping_handle));
485 :
486 0 : if let Some(pg_listener_tenant_only) = pg_listener_tenant_only {
487 0 : let wal_service_handle = current_thread_rt
488 0 : .as_ref()
489 0 : .unwrap_or_else(|| WAL_SERVICE_RUNTIME.handle())
490 0 : .spawn(wal_service::task_main(
491 0 : conf.clone(),
492 0 : pg_listener_tenant_only,
493 0 : Scope::Tenant,
494 0 : global_timelines.clone(),
495 0 : ))
496 0 : // wrap with task name for error reporting
497 0 : .map(|res| ("WAL service tenant only main".to_owned(), res));
498 0 : tasks_handles.push(Box::pin(wal_service_handle));
499 0 : }
500 :
501 0 : let http_handle = current_thread_rt
502 0 : .as_ref()
503 0 : .unwrap_or_else(|| HTTP_RUNTIME.handle())
504 0 : .spawn(http::task_main(
505 0 : conf.clone(),
506 0 : http_listener,
507 0 : global_timelines.clone(),
508 0 : ))
509 0 : .map(|res| ("HTTP service main".to_owned(), res));
510 0 : tasks_handles.push(Box::pin(http_handle));
511 :
512 0 : let broker_task_handle = current_thread_rt
513 0 : .as_ref()
514 0 : .unwrap_or_else(|| BROKER_RUNTIME.handle())
515 0 : .spawn(
516 0 : broker::task_main(conf.clone(), global_timelines.clone())
517 0 : .instrument(info_span!("broker")),
518 : )
519 0 : .map(|res| ("broker main".to_owned(), res));
520 0 : tasks_handles.push(Box::pin(broker_task_handle));
521 0 :
522 0 : set_build_info_metric(GIT_VERSION, BUILD_TAG);
523 :
524 : // TODO: update tokio-stream, convert to real async Stream with
525 : // SignalStream, map it to obtain missing signal name, combine streams into
526 : // single stream we can easily sit on.
527 0 : let mut sigquit_stream = signal(SignalKind::quit())?;
528 0 : let mut sigint_stream = signal(SignalKind::interrupt())?;
529 0 : let mut sigterm_stream = signal(SignalKind::terminate())?;
530 :
531 : // Notify systemd that we are ready. This is important as currently loading
532 : // timelines takes significant time (~30s in busy regions).
533 0 : if let Err(e) = sd_notify::notify(true, &[NotifyState::Ready]) {
534 0 : warn!("systemd notify failed: {:?}", e);
535 0 : }
536 :
537 0 : tokio::select! {
538 0 : Some((task_name, res)) = tasks_handles.next()=> {
539 0 : error!("{} task failed: {:?}, exiting", task_name, res);
540 0 : std::process::exit(1);
541 : }
542 : // On any shutdown signal, log receival and exit. Additionally, handling
543 : // SIGQUIT prevents coredump.
544 0 : _ = sigquit_stream.recv() => info!("received SIGQUIT, terminating"),
545 0 : _ = sigint_stream.recv() => info!("received SIGINT, terminating"),
546 0 : _ = sigterm_stream.recv() => info!("received SIGTERM, terminating")
547 :
548 : };
549 0 : std::process::exit(0);
550 0 : }
551 :
552 : /// Determine safekeeper id.
553 0 : fn set_id(workdir: &Utf8Path, given_id: Option<NodeId>) -> Result<NodeId> {
554 0 : let id_file_path = workdir.join(ID_FILE_NAME);
555 0 :
556 0 : let my_id: NodeId;
557 0 : // If file with ID exists, read it in; otherwise set one passed.
558 0 : match fs::read(&id_file_path) {
559 0 : Ok(id_serialized) => {
560 0 : my_id = NodeId(
561 0 : std::str::from_utf8(&id_serialized)
562 0 : .context("failed to parse safekeeper id")?
563 0 : .parse()
564 0 : .context("failed to parse safekeeper id")?,
565 : );
566 0 : if let Some(given_id) = given_id {
567 0 : if given_id != my_id {
568 0 : bail!(
569 0 : "safekeeper already initialized with id {}, can't set {}",
570 0 : my_id,
571 0 : given_id
572 0 : );
573 0 : }
574 0 : }
575 0 : info!("safekeeper ID {}", my_id);
576 : }
577 0 : Err(error) => match error.kind() {
578 : ErrorKind::NotFound => {
579 0 : my_id = if let Some(given_id) = given_id {
580 0 : given_id
581 : } else {
582 0 : bail!("safekeeper id is not specified");
583 : };
584 0 : let mut f = File::create(&id_file_path)
585 0 : .with_context(|| format!("Failed to create id file at {id_file_path:?}"))?;
586 0 : f.write_all(my_id.to_string().as_bytes())?;
587 0 : f.sync_all()?;
588 0 : info!("initialized safekeeper id {}", my_id);
589 : }
590 : _ => {
591 0 : return Err(error.into());
592 : }
593 : },
594 : }
595 0 : Ok(my_id)
596 0 : }
597 :
598 0 : fn parse_remote_storage(storage_conf: &str) -> anyhow::Result<RemoteStorageConfig> {
599 0 : RemoteStorageConfig::from_toml(&storage_conf.parse()?)
600 0 : }
601 :
602 : #[test]
603 1 : fn verify_cli() {
604 : use clap::CommandFactory;
605 1 : Args::command().debug_assert()
606 1 : }
|