LCOV - code coverage report
Current view: top level - pageserver/src/tenant - config.rs (source / functions) Coverage Total Hit
Test: 4f58e98c51285c7fa348e0b410c88a10caf68ad2.info Lines: 19.7 % 370 73
Test Date: 2025-01-07 20:58:07 Functions: 11.3 % 141 16

            Line data    Source code
       1              : //! Functions for handling per-tenant configuration options
       2              : //!
       3              : //! If tenant is created with --config option,
       4              : //! the tenant-specific config will be stored in tenant's directory.
       5              : //! Otherwise, global pageserver's config is used.
       6              : //!
       7              : //! If the tenant config file is corrupted, the tenant will be disabled.
       8              : //! We cannot use global or default config instead, because wrong settings
       9              : //! may lead to a data loss.
      10              : //!
      11              : pub(crate) use pageserver_api::config::TenantConfigToml as TenantConf;
      12              : use pageserver_api::models::CompactionAlgorithmSettings;
      13              : use pageserver_api::models::EvictionPolicy;
      14              : use pageserver_api::models::{self, TenantConfigPatch, ThrottleConfig};
      15              : use pageserver_api::shard::{ShardCount, ShardIdentity, ShardNumber, ShardStripeSize};
      16              : use serde::de::IntoDeserializer;
      17              : use serde::{Deserialize, Serialize};
      18              : use serde_json::Value;
      19              : use std::num::NonZeroU64;
      20              : use std::time::Duration;
      21              : use utils::generation::Generation;
      22              : use utils::postgres_client::PostgresClientProtocol;
      23              : 
      24            0 : #[derive(Debug, Copy, Clone, Serialize, Deserialize, PartialEq, Eq)]
      25              : pub(crate) enum AttachmentMode {
      26              :     /// Our generation is current as far as we know, and as far as we know we are the only attached
      27              :     /// pageserver.  This is the "normal" attachment mode.
      28              :     Single,
      29              :     /// Our generation number is current as far as we know, but we are advised that another
      30              :     /// pageserver is still attached, and therefore to avoid executing deletions.   This is
      31              :     /// the attachment mode of a pagesever that is the destination of a migration.
      32              :     Multi,
      33              :     /// Our generation number is superseded, or about to be superseded.  We are advised
      34              :     /// to avoid remote storage writes if possible, and to avoid sending billing data.  This
      35              :     /// is the attachment mode of a pageserver that is the origin of a migration.
      36              :     Stale,
      37              : }
      38              : 
      39            0 : #[derive(Debug, Copy, Clone, Serialize, Deserialize, PartialEq, Eq)]
      40              : pub(crate) struct AttachedLocationConfig {
      41              :     pub(crate) generation: Generation,
      42              :     pub(crate) attach_mode: AttachmentMode,
      43              :     // TODO: add a flag to override AttachmentMode's policies under
      44              :     // disk pressure (i.e. unblock uploads under disk pressure in Stale
      45              :     // state, unblock deletions after timeout in Multi state)
      46              : }
      47              : 
      48            0 : #[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq)]
      49              : pub(crate) struct SecondaryLocationConfig {
      50              :     /// If true, keep the local cache warm by polling remote storage
      51              :     pub(crate) warm: bool,
      52              : }
      53              : 
      54            0 : #[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq)]
      55              : pub(crate) enum LocationMode {
      56              :     Attached(AttachedLocationConfig),
      57              :     Secondary(SecondaryLocationConfig),
      58              : }
      59              : 
      60              : /// Per-tenant, per-pageserver configuration.  All pageservers use the same TenantConf,
      61              : /// but have distinct LocationConf.
      62            0 : #[derive(Clone, PartialEq, Eq, Serialize, Deserialize)]
      63              : pub(crate) struct LocationConf {
      64              :     /// The location-specific part of the configuration, describes the operating
      65              :     /// mode of this pageserver for this tenant.
      66              :     pub(crate) mode: LocationMode,
      67              : 
      68              :     /// The detailed shard identity.  This structure is already scoped within
      69              :     /// a TenantShardId, but we need the full ShardIdentity to enable calculating
      70              :     /// key->shard mappings.
      71              :     #[serde(default = "ShardIdentity::unsharded")]
      72              :     #[serde(skip_serializing_if = "ShardIdentity::is_unsharded")]
      73              :     pub(crate) shard: ShardIdentity,
      74              : 
      75              :     /// The pan-cluster tenant configuration, the same on all locations
      76              :     pub(crate) tenant_conf: TenantConfOpt,
      77              : }
      78              : 
      79              : impl std::fmt::Debug for LocationConf {
      80            0 :     fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
      81            0 :         match &self.mode {
      82            0 :             LocationMode::Attached(conf) => {
      83            0 :                 write!(
      84            0 :                     f,
      85            0 :                     "Attached {:?}, gen={:?}",
      86            0 :                     conf.attach_mode, conf.generation
      87            0 :                 )
      88              :             }
      89            0 :             LocationMode::Secondary(conf) => {
      90            0 :                 write!(f, "Secondary, warm={}", conf.warm)
      91              :             }
      92              :         }
      93            0 :     }
      94              : }
      95              : 
      96              : impl AttachedLocationConfig {
      97              :     /// Consult attachment mode to determine whether we are currently permitted
      98              :     /// to delete layers.  This is only advisory, not required for data safety.
      99              :     /// See [`AttachmentMode`] for more context.
     100         1186 :     pub(crate) fn may_delete_layers_hint(&self) -> bool {
     101         1186 :         // TODO: add an override for disk pressure in AttachedLocationConfig,
     102         1186 :         // and respect it here.
     103         1186 :         match &self.attach_mode {
     104         1186 :             AttachmentMode::Single => true,
     105              :             AttachmentMode::Multi | AttachmentMode::Stale => {
     106              :                 // In Multi mode we avoid doing deletions because some other
     107              :                 // attached pageserver might get 404 while trying to read
     108              :                 // a layer we delete which is still referenced in their metadata.
     109              :                 //
     110              :                 // In Stale mode, we avoid doing deletions because we expect
     111              :                 // that they would ultimately fail validation in the deletion
     112              :                 // queue due to our stale generation.
     113            0 :                 false
     114              :             }
     115              :         }
     116         1186 :     }
     117              : 
     118              :     /// Whether we are currently hinted that it is worthwhile to upload layers.
     119              :     /// This is only advisory, not required for data safety.
     120              :     /// See [`AttachmentMode`] for more context.
     121          432 :     pub(crate) fn may_upload_layers_hint(&self) -> bool {
     122          432 :         // TODO: add an override for disk pressure in AttachedLocationConfig,
     123          432 :         // and respect it here.
     124          432 :         match &self.attach_mode {
     125          432 :             AttachmentMode::Single | AttachmentMode::Multi => true,
     126              :             AttachmentMode::Stale => {
     127              :                 // In Stale mode, we avoid doing uploads because we expect that
     128              :                 // our replacement pageserver will already have started its own
     129              :                 // IndexPart that will never reference layers we upload: it is
     130              :                 // wasteful.
     131            0 :                 false
     132              :             }
     133              :         }
     134          432 :     }
     135              : }
     136              : 
     137              : impl LocationConf {
     138              :     /// For use when loading from a legacy configuration: presence of a tenant
     139              :     /// implies it is in AttachmentMode::Single, which used to be the only
     140              :     /// possible state.  This function should eventually be removed.
     141          196 :     pub(crate) fn attached_single(
     142          196 :         tenant_conf: TenantConfOpt,
     143          196 :         generation: Generation,
     144          196 :         shard_params: &models::ShardParameters,
     145          196 :     ) -> Self {
     146          196 :         Self {
     147          196 :             mode: LocationMode::Attached(AttachedLocationConfig {
     148          196 :                 generation,
     149          196 :                 attach_mode: AttachmentMode::Single,
     150          196 :             }),
     151          196 :             shard: ShardIdentity::from_params(ShardNumber(0), shard_params),
     152          196 :             tenant_conf,
     153          196 :         }
     154          196 :     }
     155              : 
     156              :     /// For use when attaching/re-attaching: update the generation stored in this
     157              :     /// structure.  If we were in a secondary state, promote to attached (posession
     158              :     /// of a fresh generation implies this).
     159            0 :     pub(crate) fn attach_in_generation(&mut self, mode: AttachmentMode, generation: Generation) {
     160            0 :         match &mut self.mode {
     161            0 :             LocationMode::Attached(attach_conf) => {
     162            0 :                 attach_conf.generation = generation;
     163            0 :                 attach_conf.attach_mode = mode;
     164            0 :             }
     165              :             LocationMode::Secondary(_) => {
     166              :                 // We are promoted to attached by the control plane's re-attach response
     167            0 :                 self.mode = LocationMode::Attached(AttachedLocationConfig {
     168            0 :                     generation,
     169            0 :                     attach_mode: mode,
     170            0 :                 })
     171              :             }
     172              :         }
     173            0 :     }
     174              : 
     175            0 :     pub(crate) fn try_from(conf: &'_ models::LocationConfig) -> anyhow::Result<Self> {
     176            0 :         let tenant_conf = TenantConfOpt::try_from(&conf.tenant_conf)?;
     177              : 
     178            0 :         fn get_generation(conf: &'_ models::LocationConfig) -> Result<Generation, anyhow::Error> {
     179            0 :             conf.generation
     180            0 :                 .map(Generation::new)
     181            0 :                 .ok_or_else(|| anyhow::anyhow!("Generation must be set when attaching"))
     182            0 :         }
     183              : 
     184            0 :         let mode = match &conf.mode {
     185              :             models::LocationConfigMode::AttachedMulti => {
     186              :                 LocationMode::Attached(AttachedLocationConfig {
     187            0 :                     generation: get_generation(conf)?,
     188            0 :                     attach_mode: AttachmentMode::Multi,
     189              :                 })
     190              :             }
     191              :             models::LocationConfigMode::AttachedSingle => {
     192              :                 LocationMode::Attached(AttachedLocationConfig {
     193            0 :                     generation: get_generation(conf)?,
     194            0 :                     attach_mode: AttachmentMode::Single,
     195              :                 })
     196              :             }
     197              :             models::LocationConfigMode::AttachedStale => {
     198              :                 LocationMode::Attached(AttachedLocationConfig {
     199            0 :                     generation: get_generation(conf)?,
     200            0 :                     attach_mode: AttachmentMode::Stale,
     201              :                 })
     202              :             }
     203              :             models::LocationConfigMode::Secondary => {
     204            0 :                 anyhow::ensure!(conf.generation.is_none());
     205              : 
     206            0 :                 let warm = conf
     207            0 :                     .secondary_conf
     208            0 :                     .as_ref()
     209            0 :                     .map(|c| c.warm)
     210            0 :                     .unwrap_or(false);
     211            0 :                 LocationMode::Secondary(SecondaryLocationConfig { warm })
     212              :             }
     213              :             models::LocationConfigMode::Detached => {
     214              :                 // Should not have been called: API code should translate this mode
     215              :                 // into a detach rather than trying to decode it as a LocationConf
     216            0 :                 return Err(anyhow::anyhow!("Cannot decode a Detached configuration"));
     217              :             }
     218              :         };
     219              : 
     220            0 :         let shard = if conf.shard_count == 0 {
     221            0 :             ShardIdentity::unsharded()
     222              :         } else {
     223            0 :             ShardIdentity::new(
     224            0 :                 ShardNumber(conf.shard_number),
     225            0 :                 ShardCount::new(conf.shard_count),
     226            0 :                 ShardStripeSize(conf.shard_stripe_size),
     227            0 :             )?
     228              :         };
     229              : 
     230            0 :         Ok(Self {
     231            0 :             shard,
     232            0 :             mode,
     233            0 :             tenant_conf,
     234            0 :         })
     235            0 :     }
     236              : }
     237              : 
     238              : impl Default for LocationConf {
     239              :     // TODO: this should be removed once tenant loading can guarantee that we are never
     240              :     // loading from a directory without a configuration.
     241              :     // => tech debt since https://github.com/neondatabase/neon/issues/1555
     242            0 :     fn default() -> Self {
     243            0 :         Self {
     244            0 :             mode: LocationMode::Attached(AttachedLocationConfig {
     245            0 :                 generation: Generation::none(),
     246            0 :                 attach_mode: AttachmentMode::Single,
     247            0 :             }),
     248            0 :             tenant_conf: TenantConfOpt::default(),
     249            0 :             shard: ShardIdentity::unsharded(),
     250            0 :         }
     251            0 :     }
     252              : }
     253              : 
     254              : /// Same as TenantConf, but this struct preserves the information about
     255              : /// which parameters are set and which are not.
     256          120 : #[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize, Default)]
     257              : pub struct TenantConfOpt {
     258              :     #[serde(skip_serializing_if = "Option::is_none")]
     259              :     #[serde(default)]
     260              :     pub checkpoint_distance: Option<u64>,
     261              : 
     262              :     #[serde(skip_serializing_if = "Option::is_none")]
     263              :     #[serde(with = "humantime_serde")]
     264              :     #[serde(default)]
     265              :     pub checkpoint_timeout: Option<Duration>,
     266              : 
     267              :     #[serde(skip_serializing_if = "Option::is_none")]
     268              :     #[serde(default)]
     269              :     pub compaction_target_size: Option<u64>,
     270              : 
     271              :     #[serde(skip_serializing_if = "Option::is_none")]
     272              :     #[serde(with = "humantime_serde")]
     273              :     #[serde(default)]
     274              :     pub compaction_period: Option<Duration>,
     275              : 
     276              :     #[serde(skip_serializing_if = "Option::is_none")]
     277              :     #[serde(default)]
     278              :     pub compaction_threshold: Option<usize>,
     279              : 
     280              :     #[serde(skip_serializing_if = "Option::is_none")]
     281              :     #[serde(default)]
     282              :     pub compaction_algorithm: Option<CompactionAlgorithmSettings>,
     283              : 
     284              :     #[serde(skip_serializing_if = "Option::is_none")]
     285              :     #[serde(default)]
     286              :     pub gc_horizon: Option<u64>,
     287              : 
     288              :     #[serde(skip_serializing_if = "Option::is_none")]
     289              :     #[serde(with = "humantime_serde")]
     290              :     #[serde(default)]
     291              :     pub gc_period: Option<Duration>,
     292              : 
     293              :     #[serde(skip_serializing_if = "Option::is_none")]
     294              :     #[serde(default)]
     295              :     pub image_creation_threshold: Option<usize>,
     296              : 
     297              :     #[serde(skip_serializing_if = "Option::is_none")]
     298              :     #[serde(with = "humantime_serde")]
     299              :     #[serde(default)]
     300              :     pub pitr_interval: Option<Duration>,
     301              : 
     302              :     #[serde(skip_serializing_if = "Option::is_none")]
     303              :     #[serde(with = "humantime_serde")]
     304              :     #[serde(default)]
     305              :     pub walreceiver_connect_timeout: Option<Duration>,
     306              : 
     307              :     #[serde(skip_serializing_if = "Option::is_none")]
     308              :     #[serde(with = "humantime_serde")]
     309              :     #[serde(default)]
     310              :     pub lagging_wal_timeout: Option<Duration>,
     311              : 
     312              :     #[serde(skip_serializing_if = "Option::is_none")]
     313              :     #[serde(default)]
     314              :     pub max_lsn_wal_lag: Option<NonZeroU64>,
     315              : 
     316              :     #[serde(skip_serializing_if = "Option::is_none")]
     317              :     #[serde(default)]
     318              :     pub eviction_policy: Option<EvictionPolicy>,
     319              : 
     320              :     #[serde(skip_serializing_if = "Option::is_none")]
     321              :     #[serde(default)]
     322              :     pub min_resident_size_override: Option<u64>,
     323              : 
     324              :     #[serde(skip_serializing_if = "Option::is_none")]
     325              :     #[serde(with = "humantime_serde")]
     326              :     #[serde(default)]
     327              :     pub evictions_low_residence_duration_metric_threshold: Option<Duration>,
     328              : 
     329              :     #[serde(skip_serializing_if = "Option::is_none")]
     330              :     #[serde(with = "humantime_serde")]
     331              :     #[serde(default)]
     332              :     pub heatmap_period: Option<Duration>,
     333              : 
     334              :     #[serde(skip_serializing_if = "Option::is_none")]
     335              :     #[serde(default)]
     336              :     pub lazy_slru_download: Option<bool>,
     337              : 
     338              :     #[serde(skip_serializing_if = "Option::is_none")]
     339              :     pub timeline_get_throttle: Option<pageserver_api::models::ThrottleConfig>,
     340              : 
     341              :     #[serde(skip_serializing_if = "Option::is_none")]
     342              :     pub image_layer_creation_check_threshold: Option<u8>,
     343              : 
     344              :     #[serde(skip_serializing_if = "Option::is_none")]
     345              :     #[serde(with = "humantime_serde")]
     346              :     #[serde(default)]
     347              :     pub lsn_lease_length: Option<Duration>,
     348              : 
     349              :     #[serde(skip_serializing_if = "Option::is_none")]
     350              :     #[serde(with = "humantime_serde")]
     351              :     #[serde(default)]
     352              :     pub lsn_lease_length_for_ts: Option<Duration>,
     353              : 
     354              :     #[serde(skip_serializing_if = "Option::is_none")]
     355              :     #[serde(default)]
     356              :     pub timeline_offloading: Option<bool>,
     357              : 
     358              :     #[serde(skip_serializing_if = "Option::is_none")]
     359              :     pub wal_receiver_protocol_override: Option<PostgresClientProtocol>,
     360              : }
     361              : 
     362              : impl TenantConfOpt {
     363            0 :     pub fn merge(&self, global_conf: TenantConf) -> TenantConf {
     364            0 :         TenantConf {
     365            0 :             checkpoint_distance: self
     366            0 :                 .checkpoint_distance
     367            0 :                 .unwrap_or(global_conf.checkpoint_distance),
     368            0 :             checkpoint_timeout: self
     369            0 :                 .checkpoint_timeout
     370            0 :                 .unwrap_or(global_conf.checkpoint_timeout),
     371            0 :             compaction_target_size: self
     372            0 :                 .compaction_target_size
     373            0 :                 .unwrap_or(global_conf.compaction_target_size),
     374            0 :             compaction_period: self
     375            0 :                 .compaction_period
     376            0 :                 .unwrap_or(global_conf.compaction_period),
     377            0 :             compaction_threshold: self
     378            0 :                 .compaction_threshold
     379            0 :                 .unwrap_or(global_conf.compaction_threshold),
     380            0 :             compaction_algorithm: self
     381            0 :                 .compaction_algorithm
     382            0 :                 .as_ref()
     383            0 :                 .unwrap_or(&global_conf.compaction_algorithm)
     384            0 :                 .clone(),
     385            0 :             gc_horizon: self.gc_horizon.unwrap_or(global_conf.gc_horizon),
     386            0 :             gc_period: self.gc_period.unwrap_or(global_conf.gc_period),
     387            0 :             image_creation_threshold: self
     388            0 :                 .image_creation_threshold
     389            0 :                 .unwrap_or(global_conf.image_creation_threshold),
     390            0 :             pitr_interval: self.pitr_interval.unwrap_or(global_conf.pitr_interval),
     391            0 :             walreceiver_connect_timeout: self
     392            0 :                 .walreceiver_connect_timeout
     393            0 :                 .unwrap_or(global_conf.walreceiver_connect_timeout),
     394            0 :             lagging_wal_timeout: self
     395            0 :                 .lagging_wal_timeout
     396            0 :                 .unwrap_or(global_conf.lagging_wal_timeout),
     397            0 :             max_lsn_wal_lag: self.max_lsn_wal_lag.unwrap_or(global_conf.max_lsn_wal_lag),
     398            0 :             eviction_policy: self.eviction_policy.unwrap_or(global_conf.eviction_policy),
     399            0 :             min_resident_size_override: self
     400            0 :                 .min_resident_size_override
     401            0 :                 .or(global_conf.min_resident_size_override),
     402            0 :             evictions_low_residence_duration_metric_threshold: self
     403            0 :                 .evictions_low_residence_duration_metric_threshold
     404            0 :                 .unwrap_or(global_conf.evictions_low_residence_duration_metric_threshold),
     405            0 :             heatmap_period: self.heatmap_period.unwrap_or(global_conf.heatmap_period),
     406            0 :             lazy_slru_download: self
     407            0 :                 .lazy_slru_download
     408            0 :                 .unwrap_or(global_conf.lazy_slru_download),
     409            0 :             timeline_get_throttle: self
     410            0 :                 .timeline_get_throttle
     411            0 :                 .clone()
     412            0 :                 .unwrap_or(global_conf.timeline_get_throttle),
     413            0 :             image_layer_creation_check_threshold: self
     414            0 :                 .image_layer_creation_check_threshold
     415            0 :                 .unwrap_or(global_conf.image_layer_creation_check_threshold),
     416            0 :             lsn_lease_length: self
     417            0 :                 .lsn_lease_length
     418            0 :                 .unwrap_or(global_conf.lsn_lease_length),
     419            0 :             lsn_lease_length_for_ts: self
     420            0 :                 .lsn_lease_length_for_ts
     421            0 :                 .unwrap_or(global_conf.lsn_lease_length_for_ts),
     422            0 :             timeline_offloading: self
     423            0 :                 .lazy_slru_download
     424            0 :                 .unwrap_or(global_conf.timeline_offloading),
     425            0 :             wal_receiver_protocol_override: self
     426            0 :                 .wal_receiver_protocol_override
     427            0 :                 .or(global_conf.wal_receiver_protocol_override),
     428            0 :         }
     429            0 :     }
     430              : 
     431            0 :     pub fn apply_patch(self, patch: TenantConfigPatch) -> anyhow::Result<TenantConfOpt> {
     432            0 :         let Self {
     433            0 :             mut checkpoint_distance,
     434            0 :             mut checkpoint_timeout,
     435            0 :             mut compaction_target_size,
     436            0 :             mut compaction_period,
     437            0 :             mut compaction_threshold,
     438            0 :             mut compaction_algorithm,
     439            0 :             mut gc_horizon,
     440            0 :             mut gc_period,
     441            0 :             mut image_creation_threshold,
     442            0 :             mut pitr_interval,
     443            0 :             mut walreceiver_connect_timeout,
     444            0 :             mut lagging_wal_timeout,
     445            0 :             mut max_lsn_wal_lag,
     446            0 :             mut eviction_policy,
     447            0 :             mut min_resident_size_override,
     448            0 :             mut evictions_low_residence_duration_metric_threshold,
     449            0 :             mut heatmap_period,
     450            0 :             mut lazy_slru_download,
     451            0 :             mut timeline_get_throttle,
     452            0 :             mut image_layer_creation_check_threshold,
     453            0 :             mut lsn_lease_length,
     454            0 :             mut lsn_lease_length_for_ts,
     455            0 :             mut timeline_offloading,
     456            0 :             mut wal_receiver_protocol_override,
     457            0 :         } = self;
     458            0 : 
     459            0 :         patch.checkpoint_distance.apply(&mut checkpoint_distance);
     460            0 :         patch
     461            0 :             .checkpoint_timeout
     462            0 :             .map(|v| humantime::parse_duration(&v))?
     463            0 :             .apply(&mut checkpoint_timeout);
     464            0 :         patch
     465            0 :             .compaction_target_size
     466            0 :             .apply(&mut compaction_target_size);
     467            0 :         patch
     468            0 :             .compaction_period
     469            0 :             .map(|v| humantime::parse_duration(&v))?
     470            0 :             .apply(&mut compaction_period);
     471            0 :         patch.compaction_threshold.apply(&mut compaction_threshold);
     472            0 :         patch.compaction_algorithm.apply(&mut compaction_algorithm);
     473            0 :         patch.gc_horizon.apply(&mut gc_horizon);
     474            0 :         patch
     475            0 :             .gc_period
     476            0 :             .map(|v| humantime::parse_duration(&v))?
     477            0 :             .apply(&mut gc_period);
     478            0 :         patch
     479            0 :             .image_creation_threshold
     480            0 :             .apply(&mut image_creation_threshold);
     481            0 :         patch
     482            0 :             .pitr_interval
     483            0 :             .map(|v| humantime::parse_duration(&v))?
     484            0 :             .apply(&mut pitr_interval);
     485            0 :         patch
     486            0 :             .walreceiver_connect_timeout
     487            0 :             .map(|v| humantime::parse_duration(&v))?
     488            0 :             .apply(&mut walreceiver_connect_timeout);
     489            0 :         patch
     490            0 :             .lagging_wal_timeout
     491            0 :             .map(|v| humantime::parse_duration(&v))?
     492            0 :             .apply(&mut lagging_wal_timeout);
     493            0 :         patch.max_lsn_wal_lag.apply(&mut max_lsn_wal_lag);
     494            0 :         patch.eviction_policy.apply(&mut eviction_policy);
     495            0 :         patch
     496            0 :             .min_resident_size_override
     497            0 :             .apply(&mut min_resident_size_override);
     498            0 :         patch
     499            0 :             .evictions_low_residence_duration_metric_threshold
     500            0 :             .map(|v| humantime::parse_duration(&v))?
     501            0 :             .apply(&mut evictions_low_residence_duration_metric_threshold);
     502            0 :         patch
     503            0 :             .heatmap_period
     504            0 :             .map(|v| humantime::parse_duration(&v))?
     505            0 :             .apply(&mut heatmap_period);
     506            0 :         patch.lazy_slru_download.apply(&mut lazy_slru_download);
     507            0 :         patch
     508            0 :             .timeline_get_throttle
     509            0 :             .apply(&mut timeline_get_throttle);
     510            0 :         patch
     511            0 :             .image_layer_creation_check_threshold
     512            0 :             .apply(&mut image_layer_creation_check_threshold);
     513            0 :         patch
     514            0 :             .lsn_lease_length
     515            0 :             .map(|v| humantime::parse_duration(&v))?
     516            0 :             .apply(&mut lsn_lease_length);
     517            0 :         patch
     518            0 :             .lsn_lease_length_for_ts
     519            0 :             .map(|v| humantime::parse_duration(&v))?
     520            0 :             .apply(&mut lsn_lease_length_for_ts);
     521            0 :         patch.timeline_offloading.apply(&mut timeline_offloading);
     522            0 :         patch
     523            0 :             .wal_receiver_protocol_override
     524            0 :             .apply(&mut wal_receiver_protocol_override);
     525            0 : 
     526            0 :         Ok(Self {
     527            0 :             checkpoint_distance,
     528            0 :             checkpoint_timeout,
     529            0 :             compaction_target_size,
     530            0 :             compaction_period,
     531            0 :             compaction_threshold,
     532            0 :             compaction_algorithm,
     533            0 :             gc_horizon,
     534            0 :             gc_period,
     535            0 :             image_creation_threshold,
     536            0 :             pitr_interval,
     537            0 :             walreceiver_connect_timeout,
     538            0 :             lagging_wal_timeout,
     539            0 :             max_lsn_wal_lag,
     540            0 :             eviction_policy,
     541            0 :             min_resident_size_override,
     542            0 :             evictions_low_residence_duration_metric_threshold,
     543            0 :             heatmap_period,
     544            0 :             lazy_slru_download,
     545            0 :             timeline_get_throttle,
     546            0 :             image_layer_creation_check_threshold,
     547            0 :             lsn_lease_length,
     548            0 :             lsn_lease_length_for_ts,
     549            0 :             timeline_offloading,
     550            0 :             wal_receiver_protocol_override,
     551            0 :         })
     552            0 :     }
     553              : }
     554              : 
     555              : impl TryFrom<&'_ models::TenantConfig> for TenantConfOpt {
     556              :     type Error = anyhow::Error;
     557              : 
     558            4 :     fn try_from(request_data: &'_ models::TenantConfig) -> Result<Self, Self::Error> {
     559              :         // Convert the request_data to a JSON Value
     560            4 :         let json_value: Value = serde_json::to_value(request_data)?;
     561              : 
     562              :         // Create a Deserializer from the JSON Value
     563            4 :         let deserializer = json_value.into_deserializer();
     564              : 
     565              :         // Use serde_path_to_error to deserialize the JSON Value into TenantConfOpt
     566            4 :         let tenant_conf: TenantConfOpt = serde_path_to_error::deserialize(deserializer)?;
     567              : 
     568            2 :         Ok(tenant_conf)
     569            4 :     }
     570              : }
     571              : 
     572              : /// This is a conversion from our internal tenant config object to the one used
     573              : /// in external APIs.
     574              : impl From<TenantConfOpt> for models::TenantConfig {
     575            0 :     fn from(value: TenantConfOpt) -> Self {
     576            0 :         fn humantime(d: Duration) -> String {
     577            0 :             format!("{}s", d.as_secs())
     578            0 :         }
     579            0 :         Self {
     580            0 :             checkpoint_distance: value.checkpoint_distance,
     581            0 :             checkpoint_timeout: value.checkpoint_timeout.map(humantime),
     582            0 :             compaction_algorithm: value.compaction_algorithm,
     583            0 :             compaction_target_size: value.compaction_target_size,
     584            0 :             compaction_period: value.compaction_period.map(humantime),
     585            0 :             compaction_threshold: value.compaction_threshold,
     586            0 :             gc_horizon: value.gc_horizon,
     587            0 :             gc_period: value.gc_period.map(humantime),
     588            0 :             image_creation_threshold: value.image_creation_threshold,
     589            0 :             pitr_interval: value.pitr_interval.map(humantime),
     590            0 :             walreceiver_connect_timeout: value.walreceiver_connect_timeout.map(humantime),
     591            0 :             lagging_wal_timeout: value.lagging_wal_timeout.map(humantime),
     592            0 :             max_lsn_wal_lag: value.max_lsn_wal_lag,
     593            0 :             eviction_policy: value.eviction_policy,
     594            0 :             min_resident_size_override: value.min_resident_size_override,
     595            0 :             evictions_low_residence_duration_metric_threshold: value
     596            0 :                 .evictions_low_residence_duration_metric_threshold
     597            0 :                 .map(humantime),
     598            0 :             heatmap_period: value.heatmap_period.map(humantime),
     599            0 :             lazy_slru_download: value.lazy_slru_download,
     600            0 :             timeline_get_throttle: value.timeline_get_throttle.map(ThrottleConfig::from),
     601            0 :             image_layer_creation_check_threshold: value.image_layer_creation_check_threshold,
     602            0 :             lsn_lease_length: value.lsn_lease_length.map(humantime),
     603            0 :             lsn_lease_length_for_ts: value.lsn_lease_length_for_ts.map(humantime),
     604            0 :             timeline_offloading: value.timeline_offloading,
     605            0 :             wal_receiver_protocol_override: value.wal_receiver_protocol_override,
     606            0 :         }
     607            0 :     }
     608              : }
     609              : 
     610              : #[cfg(test)]
     611              : mod tests {
     612              :     use super::*;
     613              :     use models::TenantConfig;
     614              : 
     615              :     #[test]
     616            2 :     fn de_serializing_pageserver_config_omits_empty_values() {
     617            2 :         let small_conf = TenantConfOpt {
     618            2 :             gc_horizon: Some(42),
     619            2 :             ..TenantConfOpt::default()
     620            2 :         };
     621            2 : 
     622            2 :         let toml_form = toml_edit::ser::to_string(&small_conf).unwrap();
     623            2 :         assert_eq!(toml_form, "gc_horizon = 42\n");
     624            2 :         assert_eq!(small_conf, toml_edit::de::from_str(&toml_form).unwrap());
     625              : 
     626            2 :         let json_form = serde_json::to_string(&small_conf).unwrap();
     627            2 :         assert_eq!(json_form, "{\"gc_horizon\":42}");
     628            2 :         assert_eq!(small_conf, serde_json::from_str(&json_form).unwrap());
     629            2 :     }
     630              : 
     631              :     #[test]
     632            2 :     fn test_try_from_models_tenant_config_err() {
     633            2 :         let tenant_config = models::TenantConfig {
     634            2 :             lagging_wal_timeout: Some("5a".to_string()),
     635            2 :             ..TenantConfig::default()
     636            2 :         };
     637            2 : 
     638            2 :         let tenant_conf_opt = TenantConfOpt::try_from(&tenant_config);
     639            2 : 
     640            2 :         assert!(
     641            2 :             tenant_conf_opt.is_err(),
     642            0 :             "Suceeded to convert TenantConfig to TenantConfOpt"
     643              :         );
     644              : 
     645            2 :         let expected_error_str =
     646            2 :             "lagging_wal_timeout: invalid value: string \"5a\", expected a duration";
     647            2 :         assert_eq!(tenant_conf_opt.unwrap_err().to_string(), expected_error_str);
     648            2 :     }
     649              : 
     650              :     #[test]
     651            2 :     fn test_try_from_models_tenant_config_success() {
     652            2 :         let tenant_config = models::TenantConfig {
     653            2 :             lagging_wal_timeout: Some("5s".to_string()),
     654            2 :             ..TenantConfig::default()
     655            2 :         };
     656            2 : 
     657            2 :         let tenant_conf_opt = TenantConfOpt::try_from(&tenant_config).unwrap();
     658            2 : 
     659            2 :         assert_eq!(
     660            2 :             tenant_conf_opt.lagging_wal_timeout,
     661            2 :             Some(Duration::from_secs(5))
     662            2 :         );
     663            2 :     }
     664              : }
        

Generated by: LCOV version 2.1-beta