LCOV - code coverage report
Current view: top level - libs/remote_storage/src - config.rs (source / functions) Coverage Total Hit
Test: 4f58e98c51285c7fa348e0b410c88a10caf68ad2.info Lines: 73.3 % 191 140
Test Date: 2025-01-07 20:58:07 Functions: 27.7 % 130 36

            Line data    Source code
       1              : use std::{fmt::Debug, num::NonZeroUsize, str::FromStr, time::Duration};
       2              : 
       3              : use aws_sdk_s3::types::StorageClass;
       4              : use camino::Utf8PathBuf;
       5              : 
       6              : use serde::{Deserialize, Serialize};
       7              : 
       8              : use crate::{
       9              :     DEFAULT_MAX_KEYS_PER_LIST_RESPONSE, DEFAULT_REMOTE_STORAGE_AZURE_CONCURRENCY_LIMIT,
      10              :     DEFAULT_REMOTE_STORAGE_S3_CONCURRENCY_LIMIT,
      11              : };
      12              : 
      13              : /// External backup storage configuration, enough for creating a client for that storage.
      14           56 : #[derive(Debug, Clone, PartialEq, Eq, Deserialize, Serialize)]
      15              : pub struct RemoteStorageConfig {
      16              :     /// The storage connection configuration.
      17              :     #[serde(flatten)]
      18              :     pub storage: RemoteStorageKind,
      19              :     /// A common timeout enforced for all requests after concurrency limiter permit has been
      20              :     /// acquired.
      21              :     #[serde(
      22              :         with = "humantime_serde",
      23              :         default = "default_timeout",
      24              :         skip_serializing_if = "is_default_timeout"
      25              :     )]
      26              :     pub timeout: Duration,
      27              :     /// Alternative timeout used for metadata objects which are expected to be small
      28              :     #[serde(
      29              :         with = "humantime_serde",
      30              :         default = "default_small_timeout",
      31              :         skip_serializing_if = "is_default_small_timeout"
      32              :     )]
      33              :     pub small_timeout: Duration,
      34              : }
      35              : 
      36              : impl RemoteStorageKind {
      37            0 :     pub fn bucket_name(&self) -> Option<&str> {
      38            0 :         match self {
      39            0 :             RemoteStorageKind::LocalFs { .. } => None,
      40            0 :             RemoteStorageKind::AwsS3(config) => Some(&config.bucket_name),
      41            0 :             RemoteStorageKind::AzureContainer(config) => Some(&config.container_name),
      42              :         }
      43            0 :     }
      44              : }
      45              : 
      46            1 : fn default_timeout() -> Duration {
      47            1 :     RemoteStorageConfig::DEFAULT_TIMEOUT
      48            1 : }
      49              : 
      50           10 : fn default_small_timeout() -> Duration {
      51           10 :     RemoteStorageConfig::DEFAULT_SMALL_TIMEOUT
      52           10 : }
      53              : 
      54            0 : fn is_default_timeout(d: &Duration) -> bool {
      55            0 :     *d == RemoteStorageConfig::DEFAULT_TIMEOUT
      56            0 : }
      57              : 
      58            0 : fn is_default_small_timeout(d: &Duration) -> bool {
      59            0 :     *d == RemoteStorageConfig::DEFAULT_SMALL_TIMEOUT
      60            0 : }
      61              : 
      62              : /// A kind of a remote storage to connect to, with its connection configuration.
      63           38 : #[derive(Debug, Clone, PartialEq, Eq, Deserialize, Serialize)]
      64              : #[serde(untagged)]
      65              : pub enum RemoteStorageKind {
      66              :     /// Storage based on local file system.
      67              :     /// Specify a root folder to place all stored files into.
      68              :     LocalFs { local_path: Utf8PathBuf },
      69              :     /// AWS S3 based storage, storing all files in the S3 bucket
      70              :     /// specified by the config
      71              :     AwsS3(S3Config),
      72              :     /// Azure Blob based storage, storing all files in the container
      73              :     /// specified by the config
      74              :     AzureContainer(AzureConfig),
      75              : }
      76              : 
      77              : /// AWS S3 bucket coordinates and access credentials to manage the bucket contents (read and write).
      78           38 : #[derive(Clone, PartialEq, Eq, Deserialize, Serialize)]
      79              : pub struct S3Config {
      80              :     /// Name of the bucket to connect to.
      81              :     pub bucket_name: String,
      82              :     /// The region where the bucket is located at.
      83              :     pub bucket_region: String,
      84              :     /// A "subfolder" in the bucket, to use the same bucket separately by multiple remote storage users at once.
      85              :     pub prefix_in_bucket: Option<String>,
      86              :     /// A base URL to send S3 requests to.
      87              :     /// By default, the endpoint is derived from a region name, assuming it's
      88              :     /// an AWS S3 region name, erroring on wrong region name.
      89              :     /// Endpoint provides a way to support other S3 flavors and their regions.
      90              :     ///
      91              :     /// Example: `http://127.0.0.1:5000`
      92              :     pub endpoint: Option<String>,
      93              :     /// AWS S3 has various limits on its API calls, we need not to exceed those.
      94              :     /// See [`DEFAULT_REMOTE_STORAGE_S3_CONCURRENCY_LIMIT`] for more details.
      95              :     #[serde(default = "default_remote_storage_s3_concurrency_limit")]
      96              :     pub concurrency_limit: NonZeroUsize,
      97              :     #[serde(default = "default_max_keys_per_list_response")]
      98              :     pub max_keys_per_list_response: Option<i32>,
      99              :     #[serde(
     100              :         deserialize_with = "deserialize_storage_class",
     101              :         serialize_with = "serialize_storage_class",
     102              :         default
     103              :     )]
     104              :     pub upload_storage_class: Option<StorageClass>,
     105              : }
     106              : 
     107            7 : fn default_remote_storage_s3_concurrency_limit() -> NonZeroUsize {
     108            7 :     DEFAULT_REMOTE_STORAGE_S3_CONCURRENCY_LIMIT
     109            7 :         .try_into()
     110            7 :         .unwrap()
     111            7 : }
     112              : 
     113            7 : fn default_max_keys_per_list_response() -> Option<i32> {
     114            7 :     DEFAULT_MAX_KEYS_PER_LIST_RESPONSE
     115            7 : }
     116              : 
     117            0 : fn default_azure_conn_pool_size() -> usize {
     118            0 :     // Conservative default: no connection pooling.  At time of writing this is the Azure
     119            0 :     // SDK's default as well, due to historic reports of hard-to-reproduce issues
     120            0 :     // (https://github.com/hyperium/hyper/issues/2312)
     121            0 :     //
     122            0 :     // However, using connection pooling is important to avoid exhausting client ports when
     123            0 :     // doing huge numbers of requests (https://github.com/neondatabase/cloud/issues/20971)
     124            0 :     0
     125            0 : }
     126              : 
     127              : impl Debug for S3Config {
     128            0 :     fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
     129            0 :         f.debug_struct("S3Config")
     130            0 :             .field("bucket_name", &self.bucket_name)
     131            0 :             .field("bucket_region", &self.bucket_region)
     132            0 :             .field("prefix_in_bucket", &self.prefix_in_bucket)
     133            0 :             .field("concurrency_limit", &self.concurrency_limit)
     134            0 :             .field(
     135            0 :                 "max_keys_per_list_response",
     136            0 :                 &self.max_keys_per_list_response,
     137            0 :             )
     138            0 :             .finish()
     139            0 :     }
     140              : }
     141              : 
     142              : /// Azure  bucket coordinates and access credentials to manage the bucket contents (read and write).
     143           15 : #[derive(Clone, PartialEq, Eq, Serialize, Deserialize)]
     144              : pub struct AzureConfig {
     145              :     /// Name of the container to connect to.
     146              :     pub container_name: String,
     147              :     /// Name of the storage account the container is inside of
     148              :     pub storage_account: Option<String>,
     149              :     /// The region where the bucket is located at.
     150              :     pub container_region: String,
     151              :     /// A "subfolder" in the container, to use the same container separately by multiple remote storage users at once.
     152              :     pub prefix_in_container: Option<String>,
     153              :     /// Azure has various limits on its API calls, we need not to exceed those.
     154              :     /// See [`DEFAULT_REMOTE_STORAGE_AZURE_CONCURRENCY_LIMIT`] for more details.
     155              :     #[serde(default = "default_remote_storage_azure_concurrency_limit")]
     156              :     pub concurrency_limit: NonZeroUsize,
     157              :     #[serde(default = "default_max_keys_per_list_response")]
     158              :     pub max_keys_per_list_response: Option<i32>,
     159              :     #[serde(default = "default_azure_conn_pool_size")]
     160              :     pub conn_pool_size: usize,
     161              : }
     162              : 
     163            6 : fn default_remote_storage_azure_concurrency_limit() -> NonZeroUsize {
     164            6 :     NonZeroUsize::new(DEFAULT_REMOTE_STORAGE_AZURE_CONCURRENCY_LIMIT).unwrap()
     165            6 : }
     166              : 
     167              : impl Debug for AzureConfig {
     168            0 :     fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
     169            0 :         f.debug_struct("AzureConfig")
     170            0 :             .field("bucket_name", &self.container_name)
     171            0 :             .field("storage_account", &self.storage_account)
     172            0 :             .field("bucket_region", &self.container_region)
     173            0 :             .field("prefix_in_container", &self.prefix_in_container)
     174            0 :             .field("concurrency_limit", &self.concurrency_limit)
     175            0 :             .field(
     176            0 :                 "max_keys_per_list_response",
     177            0 :                 &self.max_keys_per_list_response,
     178            0 :             )
     179            0 :             .finish()
     180            0 :     }
     181              : }
     182              : 
     183           15 : fn deserialize_storage_class<'de, D: serde::Deserializer<'de>>(
     184           15 :     deserializer: D,
     185           15 : ) -> Result<Option<StorageClass>, D::Error> {
     186           15 :     Option::<String>::deserialize(deserializer).and_then(|s| {
     187           15 :         if let Some(s) = s {
     188              :             use serde::de::Error;
     189           12 :             let storage_class = StorageClass::from_str(&s).expect("infallible");
     190              :             #[allow(deprecated)]
     191           12 :             if matches!(storage_class, StorageClass::Unknown(_)) {
     192            0 :                 return Err(D::Error::custom(format!(
     193            0 :                     "Specified storage class unknown to SDK: '{s}'. Allowed values: {:?}",
     194            0 :                     StorageClass::values()
     195            0 :                 )));
     196           12 :             }
     197           12 :             Ok(Some(storage_class))
     198              :         } else {
     199            3 :             Ok(None)
     200              :         }
     201           15 :     })
     202           15 : }
     203              : 
     204            9 : fn serialize_storage_class<S: serde::Serializer>(
     205            9 :     val: &Option<StorageClass>,
     206            9 :     serializer: S,
     207            9 : ) -> Result<S::Ok, S::Error> {
     208            9 :     let val = val.as_ref().map(StorageClass::as_str);
     209            9 :     Option::<&str>::serialize(&val, serializer)
     210            9 : }
     211              : 
     212              : impl RemoteStorageConfig {
     213              :     pub const DEFAULT_TIMEOUT: Duration = std::time::Duration::from_secs(120);
     214              :     pub const DEFAULT_SMALL_TIMEOUT: Duration = std::time::Duration::from_secs(30);
     215              : 
     216           10 :     pub fn from_toml(toml: &toml_edit::Item) -> anyhow::Result<RemoteStorageConfig> {
     217           10 :         Ok(utils::toml_edit_ext::deserialize_item(toml)?)
     218           10 :     }
     219              : 
     220            9 :     pub fn from_toml_str(input: &str) -> anyhow::Result<RemoteStorageConfig> {
     221            9 :         let toml_document = toml_edit::DocumentMut::from_str(input)?;
     222            9 :         if let Some(item) = toml_document.get("remote_storage") {
     223            0 :             return Self::from_toml(item);
     224            9 :         }
     225            9 :         Self::from_toml(toml_document.as_item())
     226            9 :     }
     227              : }
     228              : 
     229              : #[cfg(test)]
     230              : mod tests {
     231              :     use super::*;
     232              : 
     233            9 :     fn parse(input: &str) -> anyhow::Result<RemoteStorageConfig> {
     234            9 :         RemoteStorageConfig::from_toml_str(input)
     235            9 :     }
     236              : 
     237              :     #[test]
     238            3 :     fn parse_localfs_config_with_timeout() {
     239            3 :         let input = "local_path = '.'
     240            3 : timeout = '5s'";
     241            3 : 
     242            3 :         let config = parse(input).unwrap();
     243            3 : 
     244            3 :         assert_eq!(
     245            3 :             config,
     246            3 :             RemoteStorageConfig {
     247            3 :                 storage: RemoteStorageKind::LocalFs {
     248            3 :                     local_path: Utf8PathBuf::from(".")
     249            3 :                 },
     250            3 :                 timeout: Duration::from_secs(5),
     251            3 :                 small_timeout: RemoteStorageConfig::DEFAULT_SMALL_TIMEOUT
     252            3 :             }
     253            3 :         );
     254            3 :     }
     255              : 
     256              :     #[test]
     257            3 :     fn test_s3_parsing() {
     258            3 :         let toml = "\
     259            3 :     bucket_name = 'foo-bar'
     260            3 :     bucket_region = 'eu-central-1'
     261            3 :     upload_storage_class = 'INTELLIGENT_TIERING'
     262            3 :     timeout = '7s'
     263            3 :     ";
     264            3 : 
     265            3 :         let config = parse(toml).unwrap();
     266            3 : 
     267            3 :         assert_eq!(
     268            3 :             config,
     269            3 :             RemoteStorageConfig {
     270            3 :                 storage: RemoteStorageKind::AwsS3(S3Config {
     271            3 :                     bucket_name: "foo-bar".into(),
     272            3 :                     bucket_region: "eu-central-1".into(),
     273            3 :                     prefix_in_bucket: None,
     274            3 :                     endpoint: None,
     275            3 :                     concurrency_limit: default_remote_storage_s3_concurrency_limit(),
     276            3 :                     max_keys_per_list_response: DEFAULT_MAX_KEYS_PER_LIST_RESPONSE,
     277            3 :                     upload_storage_class: Some(StorageClass::IntelligentTiering),
     278            3 :                 }),
     279            3 :                 timeout: Duration::from_secs(7),
     280            3 :                 small_timeout: RemoteStorageConfig::DEFAULT_SMALL_TIMEOUT
     281            3 :             }
     282            3 :         );
     283            3 :     }
     284              : 
     285              :     #[test]
     286            3 :     fn test_storage_class_serde_roundtrip() {
     287            3 :         let classes = [
     288            3 :             None,
     289            3 :             Some(StorageClass::Standard),
     290            3 :             Some(StorageClass::IntelligentTiering),
     291            3 :         ];
     292           12 :         for class in classes {
     293           27 :             #[derive(Serialize, Deserialize)]
     294            9 :             struct Wrapper {
     295              :                 #[serde(
     296              :                     deserialize_with = "deserialize_storage_class",
     297              :                     serialize_with = "serialize_storage_class"
     298              :                 )]
     299              :                 class: Option<StorageClass>,
     300              :             }
     301            9 :             let wrapped = Wrapper {
     302            9 :                 class: class.clone(),
     303            9 :             };
     304            9 :             let serialized = serde_json::to_string(&wrapped).unwrap();
     305            9 :             let deserialized: Wrapper = serde_json::from_str(&serialized).unwrap();
     306            9 :             assert_eq!(class, deserialized.class);
     307              :         }
     308            3 :     }
     309              : 
     310              :     #[test]
     311            3 :     fn test_azure_parsing() {
     312            3 :         let toml = "\
     313            3 :     container_name = 'foo-bar'
     314            3 :     container_region = 'westeurope'
     315            3 :     upload_storage_class = 'INTELLIGENT_TIERING'
     316            3 :     timeout = '7s'
     317            3 :     conn_pool_size = 8
     318            3 :     ";
     319            3 : 
     320            3 :         let config = parse(toml).unwrap();
     321            3 : 
     322            3 :         assert_eq!(
     323            3 :             config,
     324            3 :             RemoteStorageConfig {
     325            3 :                 storage: RemoteStorageKind::AzureContainer(AzureConfig {
     326            3 :                     container_name: "foo-bar".into(),
     327            3 :                     storage_account: None,
     328            3 :                     container_region: "westeurope".into(),
     329            3 :                     prefix_in_container: None,
     330            3 :                     concurrency_limit: default_remote_storage_azure_concurrency_limit(),
     331            3 :                     max_keys_per_list_response: DEFAULT_MAX_KEYS_PER_LIST_RESPONSE,
     332            3 :                     conn_pool_size: 8,
     333            3 :                 }),
     334            3 :                 timeout: Duration::from_secs(7),
     335            3 :                 small_timeout: RemoteStorageConfig::DEFAULT_SMALL_TIMEOUT
     336            3 :             }
     337            3 :         );
     338            3 :     }
     339              : }
        

Generated by: LCOV version 2.1-beta