LCOV - code coverage report
Current view: top level - control_plane/src - pageserver.rs (source / functions) Coverage Total Hit
Test: 046155f5c3321e806c1c5acca9ccd26414587b38.info Lines: 0.0 % 491 0
Test Date: 2025-03-27 12:42:09 Functions: 0.0 % 53 0

            Line data    Source code
       1              : //! Code to manage pageservers
       2              : //!
       3              : //! In the local test environment, the data for each pageserver is stored in
       4              : //!
       5              : //! ```text
       6              : //!   .neon/pageserver_<pageserver_id>
       7              : //! ```
       8              : //!
       9              : use std::collections::HashMap;
      10              : use std::io;
      11              : use std::io::Write;
      12              : use std::num::NonZeroU64;
      13              : use std::path::PathBuf;
      14              : use std::str::FromStr;
      15              : use std::time::Duration;
      16              : 
      17              : use anyhow::{Context, bail};
      18              : use camino::Utf8PathBuf;
      19              : use pageserver_api::models::{self, TenantInfo, TimelineInfo};
      20              : use pageserver_api::shard::TenantShardId;
      21              : use pageserver_client::mgmt_api;
      22              : use postgres_backend::AuthType;
      23              : use postgres_connection::{PgConnectionConfig, parse_host_port};
      24              : use reqwest::Certificate;
      25              : use utils::auth::{Claims, Scope};
      26              : use utils::id::{NodeId, TenantId, TimelineId};
      27              : use utils::lsn::Lsn;
      28              : 
      29              : use crate::background_process;
      30              : use crate::local_env::{LocalEnv, NeonLocalInitPageserverConf, PageServerConf};
      31              : 
      32              : /// Directory within .neon which will be used by default for LocalFs remote storage.
      33              : pub const PAGESERVER_REMOTE_STORAGE_DIR: &str = "local_fs_remote_storage/pageserver";
      34              : 
      35              : //
      36              : // Control routines for pageserver.
      37              : //
      38              : // Used in CLI and tests.
      39              : //
      40              : #[derive(Debug)]
      41              : pub struct PageServerNode {
      42              :     pub pg_connection_config: PgConnectionConfig,
      43              :     pub conf: PageServerConf,
      44              :     pub env: LocalEnv,
      45              :     pub http_client: mgmt_api::Client,
      46              : }
      47              : 
      48              : impl PageServerNode {
      49            0 :     pub fn from_env(env: &LocalEnv, conf: &PageServerConf) -> PageServerNode {
      50            0 :         let (host, port) =
      51            0 :             parse_host_port(&conf.listen_pg_addr).expect("Unable to parse listen_pg_addr");
      52            0 :         let port = port.unwrap_or(5432);
      53            0 : 
      54            0 :         let ssl_ca_certs = env.ssl_ca_cert_path().map(|ssl_ca_file| {
      55            0 :             let buf = std::fs::read(ssl_ca_file).expect("SSL root CA file should exist");
      56            0 :             Certificate::from_pem_bundle(&buf).expect("SSL CA file should be valid")
      57            0 :         });
      58            0 : 
      59            0 :         let mut http_client = reqwest::Client::builder();
      60            0 :         for ssl_ca_cert in ssl_ca_certs.unwrap_or_default() {
      61            0 :             http_client = http_client.add_root_certificate(ssl_ca_cert);
      62            0 :         }
      63            0 :         let http_client = http_client
      64            0 :             .build()
      65            0 :             .expect("Client constructs with no errors");
      66              : 
      67            0 :         let endpoint = if env.storage_controller.use_https_pageserver_api {
      68            0 :             format!(
      69            0 :                 "https://{}",
      70            0 :                 conf.listen_https_addr.as_ref().expect(
      71            0 :                     "listen https address should be specified if use_https_pageserver_api is on"
      72            0 :                 )
      73            0 :             )
      74              :         } else {
      75            0 :             format!("http://{}", conf.listen_http_addr)
      76              :         };
      77              : 
      78              :         Self {
      79            0 :             pg_connection_config: PgConnectionConfig::new_host_port(host, port),
      80            0 :             conf: conf.clone(),
      81            0 :             env: env.clone(),
      82            0 :             http_client: mgmt_api::Client::new(
      83            0 :                 http_client,
      84            0 :                 endpoint,
      85            0 :                 {
      86            0 :                     match conf.http_auth_type {
      87            0 :                         AuthType::Trust => None,
      88            0 :                         AuthType::NeonJWT => Some(
      89            0 :                             env.generate_auth_token(&Claims::new(None, Scope::PageServerApi))
      90            0 :                                 .unwrap(),
      91            0 :                         ),
      92              :                     }
      93              :                 }
      94            0 :                 .as_deref(),
      95            0 :             ),
      96            0 :         }
      97            0 :     }
      98              : 
      99            0 :     fn pageserver_make_identity_toml(&self, node_id: NodeId) -> toml_edit::DocumentMut {
     100            0 :         toml_edit::DocumentMut::from_str(&format!("id={node_id}")).unwrap()
     101            0 :     }
     102              : 
     103            0 :     fn pageserver_init_make_toml(
     104            0 :         &self,
     105            0 :         conf: NeonLocalInitPageserverConf,
     106            0 :     ) -> anyhow::Result<toml_edit::DocumentMut> {
     107            0 :         assert_eq!(
     108            0 :             &PageServerConf::from(&conf),
     109            0 :             &self.conf,
     110            0 :             "during neon_local init, we derive the runtime state of ps conf (self.conf) from the --config flag fully"
     111              :         );
     112              : 
     113              :         // TODO(christian): instead of what we do here, create a pageserver_api::config::ConfigToml (PR #7656)
     114              : 
     115              :         // FIXME: the paths should be shell-escaped to handle paths with spaces, quotas etc.
     116            0 :         let pg_distrib_dir_param = format!(
     117            0 :             "pg_distrib_dir='{}'",
     118            0 :             self.env.pg_distrib_dir_raw().display()
     119            0 :         );
     120            0 : 
     121            0 :         let broker_endpoint_param = format!("broker_endpoint='{}'", self.env.broker.client_url());
     122            0 : 
     123            0 :         let mut overrides = vec![pg_distrib_dir_param, broker_endpoint_param];
     124            0 : 
     125            0 :         overrides.push(format!(
     126            0 :             "control_plane_api='{}'",
     127            0 :             self.env.control_plane_api.as_str()
     128            0 :         ));
     129              : 
     130              :         // Storage controller uses the same auth as pageserver: if JWT is enabled
     131              :         // for us, we will also need it to talk to them.
     132            0 :         if matches!(conf.http_auth_type, AuthType::NeonJWT) {
     133            0 :             let jwt_token = self
     134            0 :                 .env
     135            0 :                 .generate_auth_token(&Claims::new(None, Scope::GenerationsApi))
     136            0 :                 .unwrap();
     137            0 :             overrides.push(format!("control_plane_api_token='{}'", jwt_token));
     138            0 :         }
     139              : 
     140            0 :         if !conf.other.contains_key("remote_storage") {
     141            0 :             overrides.push(format!(
     142            0 :                 "remote_storage={{local_path='../{PAGESERVER_REMOTE_STORAGE_DIR}'}}"
     143            0 :             ));
     144            0 :         }
     145              : 
     146            0 :         if conf.http_auth_type != AuthType::Trust || conf.pg_auth_type != AuthType::Trust {
     147            0 :             // Keys are generated in the toplevel repo dir, pageservers' workdirs
     148            0 :             // are one level below that, so refer to keys with ../
     149            0 :             overrides.push("auth_validation_public_key_path='../auth_public_key.pem'".to_owned());
     150            0 :         }
     151              : 
     152            0 :         if let Some(ssl_ca_file) = self.env.ssl_ca_cert_path() {
     153            0 :             overrides.push(format!("ssl_ca_file='{}'", ssl_ca_file.to_str().unwrap()));
     154            0 :         }
     155              : 
     156              :         // Apply the user-provided overrides
     157            0 :         overrides.push({
     158            0 :             let mut doc =
     159            0 :                 toml_edit::ser::to_document(&conf).expect("we deserialized this from toml earlier");
     160            0 :             // `id` is written out to `identity.toml` instead of `pageserver.toml`
     161            0 :             doc.remove("id").expect("it's part of the struct");
     162            0 :             doc.to_string()
     163            0 :         });
     164            0 : 
     165            0 :         // Turn `overrides` into a toml document.
     166            0 :         // TODO: above code is legacy code, it should be refactored to use toml_edit directly.
     167            0 :         let mut config_toml = toml_edit::DocumentMut::new();
     168            0 :         for fragment_str in overrides {
     169            0 :             let fragment = toml_edit::DocumentMut::from_str(&fragment_str)
     170            0 :                 .expect("all fragments in `overrides` are valid toml documents, this function controls that");
     171            0 :             for (key, item) in fragment.iter() {
     172            0 :                 config_toml.insert(key, item.clone());
     173            0 :             }
     174              :         }
     175            0 :         Ok(config_toml)
     176            0 :     }
     177              : 
     178              :     /// Initializes a pageserver node by creating its config with the overrides provided.
     179            0 :     pub fn initialize(&self, conf: NeonLocalInitPageserverConf) -> anyhow::Result<()> {
     180            0 :         self.pageserver_init(conf)
     181            0 :             .with_context(|| format!("Failed to run init for pageserver node {}", self.conf.id))
     182            0 :     }
     183              : 
     184            0 :     pub fn repo_path(&self) -> PathBuf {
     185            0 :         self.env.pageserver_data_dir(self.conf.id)
     186            0 :     }
     187              : 
     188              :     /// The pid file is created by the pageserver process, with its pid stored inside.
     189              :     /// Other pageservers cannot lock the same file and overwrite it for as long as the current
     190              :     /// pageserver runs. (Unless someone removes the file manually; never do that!)
     191            0 :     fn pid_file(&self) -> Utf8PathBuf {
     192            0 :         Utf8PathBuf::from_path_buf(self.repo_path().join("pageserver.pid"))
     193            0 :             .expect("non-Unicode path")
     194            0 :     }
     195              : 
     196            0 :     pub async fn start(&self, retry_timeout: &Duration) -> anyhow::Result<()> {
     197            0 :         self.start_node(retry_timeout).await
     198            0 :     }
     199              : 
     200            0 :     fn pageserver_init(&self, conf: NeonLocalInitPageserverConf) -> anyhow::Result<()> {
     201            0 :         let datadir = self.repo_path();
     202            0 :         let node_id = self.conf.id;
     203            0 :         println!(
     204            0 :             "Initializing pageserver node {} at '{}' in {:?}",
     205            0 :             node_id,
     206            0 :             self.pg_connection_config.raw_address(),
     207            0 :             datadir
     208            0 :         );
     209            0 :         io::stdout().flush()?;
     210              : 
     211              :         // If the config file we got as a CLI argument includes the `availability_zone`
     212              :         // config, then use that to populate the `metadata.json` file for the pageserver.
     213              :         // In production the deployment orchestrator does this for us.
     214            0 :         let az_id = conf
     215            0 :             .other
     216            0 :             .get("availability_zone")
     217            0 :             .map(|toml| {
     218            0 :                 let az_str = toml.to_string();
     219            0 :                 // Trim the (") chars from the toml representation
     220            0 :                 if az_str.starts_with('"') && az_str.ends_with('"') {
     221            0 :                     az_str[1..az_str.len() - 1].to_string()
     222              :                 } else {
     223            0 :                     az_str
     224              :                 }
     225            0 :             })
     226            0 :             .unwrap_or("local".to_string());
     227              : 
     228            0 :         let config = self
     229            0 :             .pageserver_init_make_toml(conf)
     230            0 :             .context("make pageserver toml")?;
     231            0 :         let config_file_path = datadir.join("pageserver.toml");
     232            0 :         let mut config_file = std::fs::OpenOptions::new()
     233            0 :             .create_new(true)
     234            0 :             .write(true)
     235            0 :             .open(&config_file_path)
     236            0 :             .with_context(|| format!("open pageserver toml for write: {config_file_path:?}"))?;
     237            0 :         config_file
     238            0 :             .write_all(config.to_string().as_bytes())
     239            0 :             .context("write pageserver toml")?;
     240            0 :         drop(config_file);
     241            0 : 
     242            0 :         let identity_file_path = datadir.join("identity.toml");
     243            0 :         let mut identity_file = std::fs::OpenOptions::new()
     244            0 :             .create_new(true)
     245            0 :             .write(true)
     246            0 :             .open(identity_file_path)
     247            0 :             .with_context(|| format!("open identity toml for write: {config_file_path:?}"))?;
     248            0 :         let identity_toml = self.pageserver_make_identity_toml(node_id);
     249            0 :         identity_file
     250            0 :             .write_all(identity_toml.to_string().as_bytes())
     251            0 :             .context("write identity toml")?;
     252            0 :         drop(identity_toml);
     253            0 : 
     254            0 :         if self.env.generate_local_ssl_certs {
     255            0 :             self.env.generate_ssl_cert(
     256            0 :                 datadir.join("server.crt").as_path(),
     257            0 :                 datadir.join("server.key").as_path(),
     258            0 :             )?;
     259            0 :         }
     260              : 
     261              :         // TODO: invoke a TBD config-check command to validate that pageserver will start with the written config
     262              : 
     263              :         // Write metadata file, used by pageserver on startup to register itself with
     264              :         // the storage controller
     265            0 :         let metadata_path = datadir.join("metadata.json");
     266            0 : 
     267            0 :         let (_http_host, http_port) =
     268            0 :             parse_host_port(&self.conf.listen_http_addr).expect("Unable to parse listen_http_addr");
     269            0 :         let http_port = http_port.unwrap_or(9898);
     270              : 
     271            0 :         let https_port = match self.conf.listen_https_addr.as_ref() {
     272            0 :             Some(https_addr) => {
     273            0 :                 let (_https_host, https_port) =
     274            0 :                     parse_host_port(https_addr).expect("Unable to parse listen_https_addr");
     275            0 :                 Some(https_port.unwrap_or(9899))
     276              :             }
     277            0 :             None => None,
     278              :         };
     279              : 
     280              :         // Intentionally hand-craft JSON: this acts as an implicit format compat test
     281              :         // in case the pageserver-side structure is edited, and reflects the real life
     282              :         // situation: the metadata is written by some other script.
     283            0 :         std::fs::write(
     284            0 :             metadata_path,
     285            0 :             serde_json::to_vec(&pageserver_api::config::NodeMetadata {
     286            0 :                 postgres_host: "localhost".to_string(),
     287            0 :                 postgres_port: self.pg_connection_config.port(),
     288            0 :                 http_host: "localhost".to_string(),
     289            0 :                 http_port,
     290            0 :                 https_port,
     291            0 :                 other: HashMap::from([(
     292            0 :                     "availability_zone_id".to_string(),
     293            0 :                     serde_json::json!(az_id),
     294            0 :                 )]),
     295            0 :             })
     296            0 :             .unwrap(),
     297            0 :         )
     298            0 :         .expect("Failed to write metadata file");
     299            0 : 
     300            0 :         Ok(())
     301            0 :     }
     302              : 
     303            0 :     async fn start_node(&self, retry_timeout: &Duration) -> anyhow::Result<()> {
     304            0 :         // TODO: using a thread here because start_process() is not async but we need to call check_status()
     305            0 :         let datadir = self.repo_path();
     306            0 :         print!(
     307            0 :             "Starting pageserver node {} at '{}' in {:?}, retrying for {:?}",
     308            0 :             self.conf.id,
     309            0 :             self.pg_connection_config.raw_address(),
     310            0 :             datadir,
     311            0 :             retry_timeout
     312            0 :         );
     313            0 :         io::stdout().flush().context("flush stdout")?;
     314              : 
     315            0 :         let datadir_path_str = datadir.to_str().with_context(|| {
     316            0 :             format!(
     317            0 :                 "Cannot start pageserver node {} in path that has no string representation: {:?}",
     318            0 :                 self.conf.id, datadir,
     319            0 :             )
     320            0 :         })?;
     321            0 :         let args = vec!["-D", datadir_path_str];
     322            0 : 
     323            0 :         background_process::start_process(
     324            0 :             "pageserver",
     325            0 :             &datadir,
     326            0 :             &self.env.pageserver_bin(),
     327            0 :             args,
     328            0 :             self.pageserver_env_variables()?,
     329            0 :             background_process::InitialPidFile::Expect(self.pid_file()),
     330            0 :             retry_timeout,
     331            0 :             || async {
     332            0 :                 let st = self.check_status().await;
     333            0 :                 match st {
     334            0 :                     Ok(()) => Ok(true),
     335            0 :                     Err(mgmt_api::Error::ReceiveBody(_)) => Ok(false),
     336            0 :                     Err(e) => Err(anyhow::anyhow!("Failed to check node status: {e}")),
     337              :                 }
     338            0 :             },
     339            0 :         )
     340            0 :         .await?;
     341              : 
     342            0 :         Ok(())
     343            0 :     }
     344              : 
     345            0 :     fn pageserver_env_variables(&self) -> anyhow::Result<Vec<(String, String)>> {
     346            0 :         // FIXME: why is this tied to pageserver's auth type? Whether or not the safekeeper
     347            0 :         // needs a token, and how to generate that token, seems independent to whether
     348            0 :         // the pageserver requires a token in incoming requests.
     349            0 :         Ok(if self.conf.http_auth_type != AuthType::Trust {
     350              :             // Generate a token to connect from the pageserver to a safekeeper
     351            0 :             let token = self
     352            0 :                 .env
     353            0 :                 .generate_auth_token(&Claims::new(None, Scope::SafekeeperData))?;
     354            0 :             vec![("NEON_AUTH_TOKEN".to_owned(), token)]
     355              :         } else {
     356            0 :             Vec::new()
     357              :         })
     358            0 :     }
     359              : 
     360              :     ///
     361              :     /// Stop the server.
     362              :     ///
     363              :     /// If 'immediate' is true, we use SIGQUIT, killing the process immediately.
     364              :     /// Otherwise we use SIGTERM, triggering a clean shutdown
     365              :     ///
     366              :     /// If the server is not running, returns success
     367              :     ///
     368            0 :     pub fn stop(&self, immediate: bool) -> anyhow::Result<()> {
     369            0 :         background_process::stop_process(immediate, "pageserver", &self.pid_file())
     370            0 :     }
     371              : 
     372            0 :     pub async fn check_status(&self) -> mgmt_api::Result<()> {
     373            0 :         self.http_client.status().await
     374            0 :     }
     375              : 
     376            0 :     pub async fn tenant_list(&self) -> mgmt_api::Result<Vec<TenantInfo>> {
     377            0 :         self.http_client.list_tenants().await
     378            0 :     }
     379            0 :     pub fn parse_config(mut settings: HashMap<&str, &str>) -> anyhow::Result<models::TenantConfig> {
     380            0 :         let result = models::TenantConfig {
     381            0 :             checkpoint_distance: settings
     382            0 :                 .remove("checkpoint_distance")
     383            0 :                 .map(|x| x.parse::<u64>())
     384            0 :                 .transpose()
     385            0 :                 .context("Failed to parse 'checkpoint_distance' as an integer")?,
     386            0 :             checkpoint_timeout: settings
     387            0 :                 .remove("checkpoint_timeout")
     388            0 :                 .map(humantime::parse_duration)
     389            0 :                 .transpose()
     390            0 :                 .context("Failed to parse 'checkpoint_timeout' as duration")?,
     391            0 :             compaction_target_size: settings
     392            0 :                 .remove("compaction_target_size")
     393            0 :                 .map(|x| x.parse::<u64>())
     394            0 :                 .transpose()
     395            0 :                 .context("Failed to parse 'compaction_target_size' as an integer")?,
     396            0 :             compaction_period: settings
     397            0 :                 .remove("compaction_period")
     398            0 :                 .map(humantime::parse_duration)
     399            0 :                 .transpose()
     400            0 :                 .context("Failed to parse 'compaction_period' as duration")?,
     401            0 :             compaction_threshold: settings
     402            0 :                 .remove("compaction_threshold")
     403            0 :                 .map(|x| x.parse::<usize>())
     404            0 :                 .transpose()
     405            0 :                 .context("Failed to parse 'compaction_threshold' as an integer")?,
     406            0 :             compaction_upper_limit: settings
     407            0 :                 .remove("compaction_upper_limit")
     408            0 :                 .map(|x| x.parse::<usize>())
     409            0 :                 .transpose()
     410            0 :                 .context("Failed to parse 'compaction_upper_limit' as an integer")?,
     411            0 :             compaction_algorithm: settings
     412            0 :                 .remove("compaction_algorithm")
     413            0 :                 .map(serde_json::from_str)
     414            0 :                 .transpose()
     415            0 :                 .context("Failed to parse 'compaction_algorithm' json")?,
     416            0 :             compaction_l0_first: settings
     417            0 :                 .remove("compaction_l0_first")
     418            0 :                 .map(|x| x.parse::<bool>())
     419            0 :                 .transpose()
     420            0 :                 .context("Failed to parse 'compaction_l0_first' as a bool")?,
     421            0 :             compaction_l0_semaphore: settings
     422            0 :                 .remove("compaction_l0_semaphore")
     423            0 :                 .map(|x| x.parse::<bool>())
     424            0 :                 .transpose()
     425            0 :                 .context("Failed to parse 'compaction_l0_semaphore' as a bool")?,
     426            0 :             l0_flush_delay_threshold: settings
     427            0 :                 .remove("l0_flush_delay_threshold")
     428            0 :                 .map(|x| x.parse::<usize>())
     429            0 :                 .transpose()
     430            0 :                 .context("Failed to parse 'l0_flush_delay_threshold' as an integer")?,
     431            0 :             l0_flush_wait_upload: settings
     432            0 :                 .remove("l0_flush_wait_upload")
     433            0 :                 .map(|x| x.parse::<bool>())
     434            0 :                 .transpose()
     435            0 :                 .context("Failed to parse 'l0_flush_wait_upload' as a boolean")?,
     436            0 :             l0_flush_stall_threshold: settings
     437            0 :                 .remove("l0_flush_stall_threshold")
     438            0 :                 .map(|x| x.parse::<usize>())
     439            0 :                 .transpose()
     440            0 :                 .context("Failed to parse 'l0_flush_stall_threshold' as an integer")?,
     441            0 :             gc_horizon: settings
     442            0 :                 .remove("gc_horizon")
     443            0 :                 .map(|x| x.parse::<u64>())
     444            0 :                 .transpose()
     445            0 :                 .context("Failed to parse 'gc_horizon' as an integer")?,
     446            0 :             gc_period: settings.remove("gc_period")
     447            0 :                 .map(humantime::parse_duration)
     448            0 :                 .transpose()
     449            0 :                 .context("Failed to parse 'gc_period' as duration")?,
     450            0 :             image_creation_threshold: settings
     451            0 :                 .remove("image_creation_threshold")
     452            0 :                 .map(|x| x.parse::<usize>())
     453            0 :                 .transpose()
     454            0 :                 .context("Failed to parse 'image_creation_threshold' as non zero integer")?,
     455            0 :             image_layer_creation_check_threshold: settings
     456            0 :                 .remove("image_layer_creation_check_threshold")
     457            0 :                 .map(|x| x.parse::<u8>())
     458            0 :                 .transpose()
     459            0 :                 .context("Failed to parse 'image_creation_check_threshold' as integer")?,
     460            0 :             image_creation_preempt_threshold: settings
     461            0 :                 .remove("image_creation_preempt_threshold")
     462            0 :                 .map(|x| x.parse::<usize>())
     463            0 :                 .transpose()
     464            0 :                 .context("Failed to parse 'image_creation_preempt_threshold' as integer")?,
     465            0 :             pitr_interval: settings.remove("pitr_interval")
     466            0 :                 .map(humantime::parse_duration)
     467            0 :                 .transpose()
     468            0 :                 .context("Failed to parse 'pitr_interval' as duration")?,
     469            0 :             walreceiver_connect_timeout: settings
     470            0 :                 .remove("walreceiver_connect_timeout")
     471            0 :                 .map(humantime::parse_duration)
     472            0 :                 .transpose()
     473            0 :                 .context("Failed to parse 'walreceiver_connect_timeout' as duration")?,
     474            0 :             lagging_wal_timeout: settings
     475            0 :                 .remove("lagging_wal_timeout")
     476            0 :                 .map(humantime::parse_duration)
     477            0 :                 .transpose()
     478            0 :                 .context("Failed to parse 'lagging_wal_timeout' as duration")?,
     479            0 :             max_lsn_wal_lag: settings
     480            0 :                 .remove("max_lsn_wal_lag")
     481            0 :                 .map(|x| x.parse::<NonZeroU64>())
     482            0 :                 .transpose()
     483            0 :                 .context("Failed to parse 'max_lsn_wal_lag' as non zero integer")?,
     484            0 :             eviction_policy: settings
     485            0 :                 .remove("eviction_policy")
     486            0 :                 .map(serde_json::from_str)
     487            0 :                 .transpose()
     488            0 :                 .context("Failed to parse 'eviction_policy' json")?,
     489            0 :             min_resident_size_override: settings
     490            0 :                 .remove("min_resident_size_override")
     491            0 :                 .map(|x| x.parse::<u64>())
     492            0 :                 .transpose()
     493            0 :                 .context("Failed to parse 'min_resident_size_override' as integer")?,
     494            0 :             evictions_low_residence_duration_metric_threshold: settings
     495            0 :                 .remove("evictions_low_residence_duration_metric_threshold")
     496            0 :                 .map(humantime::parse_duration)
     497            0 :                 .transpose()
     498            0 :                 .context("Failed to parse 'evictions_low_residence_duration_metric_threshold' as duration")?,
     499            0 :             heatmap_period: settings
     500            0 :                 .remove("heatmap_period")
     501            0 :                 .map(humantime::parse_duration)
     502            0 :                 .transpose()
     503            0 :                 .context("Failed to parse 'heatmap_period' as duration")?,
     504            0 :             lazy_slru_download: settings
     505            0 :                 .remove("lazy_slru_download")
     506            0 :                 .map(|x| x.parse::<bool>())
     507            0 :                 .transpose()
     508            0 :                 .context("Failed to parse 'lazy_slru_download' as bool")?,
     509            0 :             timeline_get_throttle: settings
     510            0 :                 .remove("timeline_get_throttle")
     511            0 :                 .map(serde_json::from_str)
     512            0 :                 .transpose()
     513            0 :                 .context("parse `timeline_get_throttle` from json")?,
     514            0 :             lsn_lease_length: settings.remove("lsn_lease_length")
     515            0 :                 .map(humantime::parse_duration)
     516            0 :                 .transpose()
     517            0 :                 .context("Failed to parse 'lsn_lease_length' as duration")?,
     518            0 :             lsn_lease_length_for_ts: settings
     519            0 :                 .remove("lsn_lease_length_for_ts")
     520            0 :                 .map(humantime::parse_duration)
     521            0 :                 .transpose()
     522            0 :                 .context("Failed to parse 'lsn_lease_length_for_ts' as duration")?,
     523            0 :             timeline_offloading: settings
     524            0 :                 .remove("timeline_offloading")
     525            0 :                 .map(|x| x.parse::<bool>())
     526            0 :                 .transpose()
     527            0 :                 .context("Failed to parse 'timeline_offloading' as bool")?,
     528            0 :             wal_receiver_protocol_override: settings
     529            0 :                 .remove("wal_receiver_protocol_override")
     530            0 :                 .map(serde_json::from_str)
     531            0 :                 .transpose()
     532            0 :                 .context("parse `wal_receiver_protocol_override` from json")?,
     533            0 :             rel_size_v2_enabled: settings
     534            0 :                 .remove("rel_size_v2_enabled")
     535            0 :                 .map(|x| x.parse::<bool>())
     536            0 :                 .transpose()
     537            0 :                 .context("Failed to parse 'rel_size_v2_enabled' as bool")?,
     538            0 :             gc_compaction_enabled: settings
     539            0 :                 .remove("gc_compaction_enabled")
     540            0 :                 .map(|x| x.parse::<bool>())
     541            0 :                 .transpose()
     542            0 :                 .context("Failed to parse 'gc_compaction_enabled' as bool")?,
     543            0 :             gc_compaction_initial_threshold_kb: settings
     544            0 :                 .remove("gc_compaction_initial_threshold_kb")
     545            0 :                 .map(|x| x.parse::<u64>())
     546            0 :                 .transpose()
     547            0 :                 .context("Failed to parse 'gc_compaction_initial_threshold_kb' as integer")?,
     548            0 :             gc_compaction_ratio_percent: settings
     549            0 :                 .remove("gc_compaction_ratio_percent")
     550            0 :                 .map(|x| x.parse::<u64>())
     551            0 :                 .transpose()
     552            0 :                 .context("Failed to parse 'gc_compaction_ratio_percent' as integer")?,
     553              :         };
     554            0 :         if !settings.is_empty() {
     555            0 :             bail!("Unrecognized tenant settings: {settings:?}")
     556              :         } else {
     557            0 :             Ok(result)
     558              :         }
     559            0 :     }
     560              : 
     561            0 :     pub async fn tenant_config(
     562            0 :         &self,
     563            0 :         tenant_id: TenantId,
     564            0 :         settings: HashMap<&str, &str>,
     565            0 :     ) -> anyhow::Result<()> {
     566            0 :         let config = Self::parse_config(settings)?;
     567            0 :         self.http_client
     568            0 :             .set_tenant_config(&models::TenantConfigRequest { tenant_id, config })
     569            0 :             .await?;
     570              : 
     571            0 :         Ok(())
     572            0 :     }
     573              : 
     574            0 :     pub async fn timeline_list(
     575            0 :         &self,
     576            0 :         tenant_shard_id: &TenantShardId,
     577            0 :     ) -> anyhow::Result<Vec<TimelineInfo>> {
     578            0 :         Ok(self.http_client.list_timelines(*tenant_shard_id).await?)
     579            0 :     }
     580              : 
     581              :     /// Import a basebackup prepared using either:
     582              :     /// a) `pg_basebackup -F tar`, or
     583              :     /// b) The `fullbackup` pageserver endpoint
     584              :     ///
     585              :     /// # Arguments
     586              :     /// * `tenant_id` - tenant to import into. Created if not exists
     587              :     /// * `timeline_id` - id to assign to imported timeline
     588              :     /// * `base` - (start lsn of basebackup, path to `base.tar` file)
     589              :     /// * `pg_wal` - if there's any wal to import: (end lsn, path to `pg_wal.tar`)
     590            0 :     pub async fn timeline_import(
     591            0 :         &self,
     592            0 :         tenant_id: TenantId,
     593            0 :         timeline_id: TimelineId,
     594            0 :         base: (Lsn, PathBuf),
     595            0 :         pg_wal: Option<(Lsn, PathBuf)>,
     596            0 :         pg_version: u32,
     597            0 :     ) -> anyhow::Result<()> {
     598            0 :         // Init base reader
     599            0 :         let (start_lsn, base_tarfile_path) = base;
     600            0 :         let base_tarfile = tokio::fs::File::open(base_tarfile_path).await?;
     601            0 :         let base_tarfile =
     602            0 :             mgmt_api::ReqwestBody::wrap_stream(tokio_util::io::ReaderStream::new(base_tarfile));
     603              : 
     604              :         // Init wal reader if necessary
     605            0 :         let (end_lsn, wal_reader) = if let Some((end_lsn, wal_tarfile_path)) = pg_wal {
     606            0 :             let wal_tarfile = tokio::fs::File::open(wal_tarfile_path).await?;
     607            0 :             let wal_reader =
     608            0 :                 mgmt_api::ReqwestBody::wrap_stream(tokio_util::io::ReaderStream::new(wal_tarfile));
     609            0 :             (end_lsn, Some(wal_reader))
     610              :         } else {
     611            0 :             (start_lsn, None)
     612              :         };
     613              : 
     614              :         // Import base
     615            0 :         self.http_client
     616            0 :             .import_basebackup(
     617            0 :                 tenant_id,
     618            0 :                 timeline_id,
     619            0 :                 start_lsn,
     620            0 :                 end_lsn,
     621            0 :                 pg_version,
     622            0 :                 base_tarfile,
     623            0 :             )
     624            0 :             .await?;
     625              : 
     626              :         // Import wal if necessary
     627            0 :         if let Some(wal_reader) = wal_reader {
     628            0 :             self.http_client
     629            0 :                 .import_wal(tenant_id, timeline_id, start_lsn, end_lsn, wal_reader)
     630            0 :                 .await?;
     631            0 :         }
     632              : 
     633            0 :         Ok(())
     634            0 :     }
     635              : }
        

Generated by: LCOV version 2.1-beta