LCOV - code coverage report
Current view: top level - pageserver/client/src - mgmt_api.rs (source / functions) Coverage Total Hit
Test: b837401fb09d2d9818b70e630fdb67e9799b7b0d.info Lines: 0.0 % 394 0
Test Date: 2024-04-18 15:32:49 Functions: 0.0 % 104 0

            Line data    Source code
       1              : use pageserver_api::{models::*, shard::TenantShardId};
       2              : use reqwest::{IntoUrl, Method, StatusCode};
       3              : use utils::{
       4              :     http::error::HttpErrorBody,
       5              :     id::{TenantId, TimelineId},
       6              : };
       7              : 
       8              : pub mod util;
       9              : 
      10              : #[derive(Debug, Clone)]
      11              : pub struct Client {
      12              :     mgmt_api_endpoint: String,
      13              :     authorization_header: Option<String>,
      14              :     client: reqwest::Client,
      15              : }
      16              : 
      17            0 : #[derive(thiserror::Error, Debug)]
      18              : pub enum Error {
      19              :     #[error("receive body: {0}")]
      20              :     ReceiveBody(reqwest::Error),
      21              : 
      22              :     #[error("receive error body: {0}")]
      23              :     ReceiveErrorBody(String),
      24              : 
      25              :     #[error("pageserver API: {1}")]
      26              :     ApiError(StatusCode, String),
      27              : 
      28              :     #[error("Cancelled")]
      29              :     Cancelled,
      30              : }
      31              : 
      32              : pub type Result<T> = std::result::Result<T, Error>;
      33              : 
      34              : pub trait ResponseErrorMessageExt: Sized {
      35              :     fn error_from_body(self) -> impl std::future::Future<Output = Result<Self>> + Send;
      36              : }
      37              : 
      38              : impl ResponseErrorMessageExt for reqwest::Response {
      39            0 :     async fn error_from_body(self) -> Result<Self> {
      40            0 :         let status = self.status();
      41            0 :         if !(status.is_client_error() || status.is_server_error()) {
      42            0 :             return Ok(self);
      43            0 :         }
      44            0 : 
      45            0 :         let url = self.url().to_owned();
      46            0 :         Err(match self.json::<HttpErrorBody>().await {
      47            0 :             Ok(HttpErrorBody { msg }) => Error::ApiError(status, msg),
      48              :             Err(_) => {
      49            0 :                 Error::ReceiveErrorBody(format!("Http error ({}) at {}.", status.as_u16(), url))
      50              :             }
      51              :         })
      52            0 :     }
      53              : }
      54              : 
      55              : pub enum ForceAwaitLogicalSize {
      56              :     Yes,
      57              :     No,
      58              : }
      59              : 
      60              : impl Client {
      61            0 :     pub fn new(mgmt_api_endpoint: String, jwt: Option<&str>) -> Self {
      62            0 :         Self::from_client(reqwest::Client::new(), mgmt_api_endpoint, jwt)
      63            0 :     }
      64              : 
      65            0 :     pub fn from_client(
      66            0 :         client: reqwest::Client,
      67            0 :         mgmt_api_endpoint: String,
      68            0 :         jwt: Option<&str>,
      69            0 :     ) -> Self {
      70            0 :         Self {
      71            0 :             mgmt_api_endpoint,
      72            0 :             authorization_header: jwt.map(|jwt| format!("Bearer {jwt}")),
      73            0 :             client,
      74            0 :         }
      75            0 :     }
      76              : 
      77            0 :     pub async fn list_tenants(&self) -> Result<Vec<pageserver_api::models::TenantInfo>> {
      78            0 :         let uri = format!("{}/v1/tenant", self.mgmt_api_endpoint);
      79            0 :         let resp = self.get(&uri).await?;
      80            0 :         resp.json().await.map_err(Error::ReceiveBody)
      81            0 :     }
      82              : 
      83              :     /// Get an arbitrary path and returning a streaming Response.  This function is suitable
      84              :     /// for pass-through/proxy use cases where we don't care what the response content looks
      85              :     /// like.
      86              :     ///
      87              :     /// Use/add one of the properly typed methods below if you know aren't proxying, and
      88              :     /// know what kind of response you expect.
      89            0 :     pub async fn get_raw(&self, path: String) -> Result<reqwest::Response> {
      90            0 :         debug_assert!(path.starts_with('/'));
      91            0 :         let uri = format!("{}{}", self.mgmt_api_endpoint, path);
      92            0 : 
      93            0 :         let req = self.client.request(Method::GET, uri);
      94            0 :         let req = if let Some(value) = &self.authorization_header {
      95            0 :             req.header(reqwest::header::AUTHORIZATION, value)
      96              :         } else {
      97            0 :             req
      98              :         };
      99            0 :         req.send().await.map_err(Error::ReceiveBody)
     100            0 :     }
     101              : 
     102            0 :     pub async fn tenant_details(
     103            0 :         &self,
     104            0 :         tenant_shard_id: TenantShardId,
     105            0 :     ) -> Result<pageserver_api::models::TenantDetails> {
     106            0 :         let uri = format!("{}/v1/tenant/{tenant_shard_id}", self.mgmt_api_endpoint);
     107            0 :         self.get(uri)
     108            0 :             .await?
     109            0 :             .json()
     110            0 :             .await
     111            0 :             .map_err(Error::ReceiveBody)
     112            0 :     }
     113              : 
     114            0 :     pub async fn list_timelines(
     115            0 :         &self,
     116            0 :         tenant_shard_id: TenantShardId,
     117            0 :     ) -> Result<Vec<pageserver_api::models::TimelineInfo>> {
     118            0 :         let uri = format!(
     119            0 :             "{}/v1/tenant/{tenant_shard_id}/timeline",
     120            0 :             self.mgmt_api_endpoint
     121            0 :         );
     122            0 :         self.get(&uri)
     123            0 :             .await?
     124            0 :             .json()
     125            0 :             .await
     126            0 :             .map_err(Error::ReceiveBody)
     127            0 :     }
     128              : 
     129            0 :     pub async fn timeline_info(
     130            0 :         &self,
     131            0 :         tenant_shard_id: TenantShardId,
     132            0 :         timeline_id: TimelineId,
     133            0 :         force_await_logical_size: ForceAwaitLogicalSize,
     134            0 :     ) -> Result<pageserver_api::models::TimelineInfo> {
     135            0 :         let uri = format!(
     136            0 :             "{}/v1/tenant/{tenant_shard_id}/timeline/{timeline_id}",
     137            0 :             self.mgmt_api_endpoint
     138            0 :         );
     139              : 
     140            0 :         let uri = match force_await_logical_size {
     141            0 :             ForceAwaitLogicalSize::Yes => format!("{}?force-await-logical-size={}", uri, true),
     142            0 :             ForceAwaitLogicalSize::No => uri,
     143              :         };
     144              : 
     145            0 :         self.get(&uri)
     146            0 :             .await?
     147            0 :             .json()
     148            0 :             .await
     149            0 :             .map_err(Error::ReceiveBody)
     150            0 :     }
     151              : 
     152            0 :     pub async fn keyspace(
     153            0 :         &self,
     154            0 :         tenant_shard_id: TenantShardId,
     155            0 :         timeline_id: TimelineId,
     156            0 :     ) -> Result<pageserver_api::models::partitioning::Partitioning> {
     157            0 :         let uri = format!(
     158            0 :             "{}/v1/tenant/{tenant_shard_id}/timeline/{timeline_id}/keyspace",
     159            0 :             self.mgmt_api_endpoint
     160            0 :         );
     161            0 :         self.get(&uri)
     162            0 :             .await?
     163            0 :             .json()
     164            0 :             .await
     165            0 :             .map_err(Error::ReceiveBody)
     166            0 :     }
     167              : 
     168            0 :     async fn get<U: IntoUrl>(&self, uri: U) -> Result<reqwest::Response> {
     169            0 :         self.request(Method::GET, uri, ()).await
     170            0 :     }
     171              : 
     172            0 :     async fn request_noerror<B: serde::Serialize, U: reqwest::IntoUrl>(
     173            0 :         &self,
     174            0 :         method: Method,
     175            0 :         uri: U,
     176            0 :         body: B,
     177            0 :     ) -> Result<reqwest::Response> {
     178            0 :         let req = self.client.request(method, uri);
     179            0 :         let req = if let Some(value) = &self.authorization_header {
     180            0 :             req.header(reqwest::header::AUTHORIZATION, value)
     181              :         } else {
     182            0 :             req
     183              :         };
     184            0 :         req.json(&body).send().await.map_err(Error::ReceiveBody)
     185            0 :     }
     186              : 
     187            0 :     async fn request<B: serde::Serialize, U: reqwest::IntoUrl>(
     188            0 :         &self,
     189            0 :         method: Method,
     190            0 :         uri: U,
     191            0 :         body: B,
     192            0 :     ) -> Result<reqwest::Response> {
     193            0 :         let res = self.request_noerror(method, uri, body).await?;
     194            0 :         let response = res.error_from_body().await?;
     195            0 :         Ok(response)
     196            0 :     }
     197              : 
     198            0 :     pub async fn status(&self) -> Result<()> {
     199            0 :         let uri = format!("{}/v1/status", self.mgmt_api_endpoint);
     200            0 :         self.get(&uri).await?;
     201            0 :         Ok(())
     202            0 :     }
     203              : 
     204            0 :     pub async fn tenant_create(&self, req: &TenantCreateRequest) -> Result<TenantId> {
     205            0 :         let uri = format!("{}/v1/tenant", self.mgmt_api_endpoint);
     206            0 :         self.request(Method::POST, &uri, req)
     207            0 :             .await?
     208            0 :             .json()
     209            0 :             .await
     210            0 :             .map_err(Error::ReceiveBody)
     211            0 :     }
     212              : 
     213              :     /// The tenant deletion API can return 202 if deletion is incomplete, or
     214              :     /// 404 if it is complete.  Callers are responsible for checking the status
     215              :     /// code and retrying.  Error codes other than 404 will return Err().
     216            0 :     pub async fn tenant_delete(&self, tenant_shard_id: TenantShardId) -> Result<StatusCode> {
     217            0 :         let uri = format!("{}/v1/tenant/{tenant_shard_id}", self.mgmt_api_endpoint);
     218            0 : 
     219            0 :         match self.request(Method::DELETE, &uri, ()).await {
     220            0 :             Err(Error::ApiError(status_code, msg)) => {
     221            0 :                 if status_code == StatusCode::NOT_FOUND {
     222            0 :                     Ok(StatusCode::NOT_FOUND)
     223              :                 } else {
     224            0 :                     Err(Error::ApiError(status_code, msg))
     225              :                 }
     226              :             }
     227            0 :             Err(e) => Err(e),
     228            0 :             Ok(response) => Ok(response.status()),
     229              :         }
     230            0 :     }
     231              : 
     232            0 :     pub async fn tenant_time_travel_remote_storage(
     233            0 :         &self,
     234            0 :         tenant_shard_id: TenantShardId,
     235            0 :         timestamp: &str,
     236            0 :         done_if_after: &str,
     237            0 :     ) -> Result<()> {
     238            0 :         let uri = format!(
     239            0 :             "{}/v1/tenant/{tenant_shard_id}/time_travel_remote_storage?travel_to={timestamp}&done_if_after={done_if_after}",
     240            0 :             self.mgmt_api_endpoint
     241            0 :         );
     242            0 :         self.request(Method::PUT, &uri, ()).await?;
     243            0 :         Ok(())
     244            0 :     }
     245              : 
     246            0 :     pub async fn tenant_config(&self, req: &TenantConfigRequest) -> Result<()> {
     247            0 :         let uri = format!("{}/v1/tenant/config", self.mgmt_api_endpoint);
     248            0 :         self.request(Method::PUT, &uri, req).await?;
     249            0 :         Ok(())
     250            0 :     }
     251              : 
     252            0 :     pub async fn tenant_secondary_download(
     253            0 :         &self,
     254            0 :         tenant_id: TenantShardId,
     255            0 :         wait: Option<std::time::Duration>,
     256            0 :     ) -> Result<(StatusCode, SecondaryProgress)> {
     257            0 :         let mut path = reqwest::Url::parse(&format!(
     258            0 :             "{}/v1/tenant/{}/secondary/download",
     259            0 :             self.mgmt_api_endpoint, tenant_id
     260            0 :         ))
     261            0 :         .expect("Cannot build URL");
     262              : 
     263            0 :         if let Some(wait) = wait {
     264            0 :             path.query_pairs_mut()
     265            0 :                 .append_pair("wait_ms", &format!("{}", wait.as_millis()));
     266            0 :         }
     267              : 
     268            0 :         let response = self.request(Method::POST, path, ()).await?;
     269            0 :         let status = response.status();
     270            0 :         let progress: SecondaryProgress = response.json().await.map_err(Error::ReceiveBody)?;
     271            0 :         Ok((status, progress))
     272            0 :     }
     273              : 
     274            0 :     pub async fn location_config(
     275            0 :         &self,
     276            0 :         tenant_shard_id: TenantShardId,
     277            0 :         config: LocationConfig,
     278            0 :         flush_ms: Option<std::time::Duration>,
     279            0 :         lazy: bool,
     280            0 :     ) -> Result<()> {
     281            0 :         let req_body = TenantLocationConfigRequest {
     282            0 :             tenant_id: Some(tenant_shard_id),
     283            0 :             config,
     284            0 :         };
     285            0 : 
     286            0 :         let mut path = reqwest::Url::parse(&format!(
     287            0 :             "{}/v1/tenant/{}/location_config",
     288            0 :             self.mgmt_api_endpoint, tenant_shard_id
     289            0 :         ))
     290            0 :         // Should always work: mgmt_api_endpoint is configuration, not user input.
     291            0 :         .expect("Cannot build URL");
     292            0 : 
     293            0 :         if lazy {
     294            0 :             path.query_pairs_mut().append_pair("lazy", "true");
     295            0 :         }
     296              : 
     297            0 :         if let Some(flush_ms) = flush_ms {
     298            0 :             path.query_pairs_mut()
     299            0 :                 .append_pair("flush_ms", &format!("{}", flush_ms.as_millis()));
     300            0 :         }
     301              : 
     302            0 :         self.request(Method::PUT, path, &req_body).await?;
     303            0 :         Ok(())
     304            0 :     }
     305              : 
     306            0 :     pub async fn list_location_config(&self) -> Result<LocationConfigListResponse> {
     307            0 :         let path = format!("{}/v1/location_config", self.mgmt_api_endpoint);
     308            0 :         self.request(Method::GET, &path, ())
     309            0 :             .await?
     310            0 :             .json()
     311            0 :             .await
     312            0 :             .map_err(Error::ReceiveBody)
     313            0 :     }
     314              : 
     315            0 :     pub async fn get_location_config(
     316            0 :         &self,
     317            0 :         tenant_shard_id: TenantShardId,
     318            0 :     ) -> Result<Option<LocationConfig>> {
     319            0 :         let path = format!(
     320            0 :             "{}/v1/location_config/{tenant_shard_id}",
     321            0 :             self.mgmt_api_endpoint
     322            0 :         );
     323            0 :         self.request(Method::GET, &path, ())
     324            0 :             .await?
     325            0 :             .json()
     326            0 :             .await
     327            0 :             .map_err(Error::ReceiveBody)
     328            0 :     }
     329              : 
     330            0 :     pub async fn timeline_create(
     331            0 :         &self,
     332            0 :         tenant_shard_id: TenantShardId,
     333            0 :         req: &TimelineCreateRequest,
     334            0 :     ) -> Result<TimelineInfo> {
     335            0 :         let uri = format!(
     336            0 :             "{}/v1/tenant/{}/timeline",
     337            0 :             self.mgmt_api_endpoint, tenant_shard_id
     338            0 :         );
     339            0 :         self.request(Method::POST, &uri, req)
     340            0 :             .await?
     341            0 :             .json()
     342            0 :             .await
     343            0 :             .map_err(Error::ReceiveBody)
     344            0 :     }
     345              : 
     346              :     /// The timeline deletion API can return 201 if deletion is incomplete, or
     347              :     /// 403 if it is complete.  Callers are responsible for checking the status
     348              :     /// code and retrying.  Error codes other than 403 will return Err().
     349            0 :     pub async fn timeline_delete(
     350            0 :         &self,
     351            0 :         tenant_shard_id: TenantShardId,
     352            0 :         timeline_id: TimelineId,
     353            0 :     ) -> Result<StatusCode> {
     354            0 :         let uri = format!(
     355            0 :             "{}/v1/tenant/{tenant_shard_id}/timeline/{timeline_id}",
     356            0 :             self.mgmt_api_endpoint
     357            0 :         );
     358            0 : 
     359            0 :         match self.request(Method::DELETE, &uri, ()).await {
     360            0 :             Err(Error::ApiError(status_code, msg)) => {
     361            0 :                 if status_code == StatusCode::NOT_FOUND {
     362            0 :                     Ok(StatusCode::NOT_FOUND)
     363              :                 } else {
     364            0 :                     Err(Error::ApiError(status_code, msg))
     365              :                 }
     366              :             }
     367            0 :             Err(e) => Err(e),
     368            0 :             Ok(response) => Ok(response.status()),
     369              :         }
     370            0 :     }
     371              : 
     372            0 :     pub async fn tenant_reset(&self, tenant_shard_id: TenantShardId) -> Result<()> {
     373            0 :         let uri = format!(
     374            0 :             "{}/v1/tenant/{}/reset",
     375            0 :             self.mgmt_api_endpoint, tenant_shard_id
     376            0 :         );
     377            0 :         self.request(Method::POST, &uri, ())
     378            0 :             .await?
     379            0 :             .json()
     380            0 :             .await
     381            0 :             .map_err(Error::ReceiveBody)
     382            0 :     }
     383              : 
     384            0 :     pub async fn tenant_shard_split(
     385            0 :         &self,
     386            0 :         tenant_shard_id: TenantShardId,
     387            0 :         req: TenantShardSplitRequest,
     388            0 :     ) -> Result<TenantShardSplitResponse> {
     389            0 :         let uri = format!(
     390            0 :             "{}/v1/tenant/{}/shard_split",
     391            0 :             self.mgmt_api_endpoint, tenant_shard_id
     392            0 :         );
     393            0 :         self.request(Method::PUT, &uri, req)
     394            0 :             .await?
     395            0 :             .json()
     396            0 :             .await
     397            0 :             .map_err(Error::ReceiveBody)
     398            0 :     }
     399              : 
     400            0 :     pub async fn timeline_list(
     401            0 :         &self,
     402            0 :         tenant_shard_id: &TenantShardId,
     403            0 :     ) -> Result<Vec<TimelineInfo>> {
     404            0 :         let uri = format!(
     405            0 :             "{}/v1/tenant/{}/timeline",
     406            0 :             self.mgmt_api_endpoint, tenant_shard_id
     407            0 :         );
     408            0 :         self.get(&uri)
     409            0 :             .await?
     410            0 :             .json()
     411            0 :             .await
     412            0 :             .map_err(Error::ReceiveBody)
     413            0 :     }
     414              : 
     415            0 :     pub async fn tenant_synthetic_size(
     416            0 :         &self,
     417            0 :         tenant_shard_id: TenantShardId,
     418            0 :     ) -> Result<TenantHistorySize> {
     419            0 :         let uri = format!(
     420            0 :             "{}/v1/tenant/{}/synthetic_size",
     421            0 :             self.mgmt_api_endpoint, tenant_shard_id
     422            0 :         );
     423            0 :         self.get(&uri)
     424            0 :             .await?
     425            0 :             .json()
     426            0 :             .await
     427            0 :             .map_err(Error::ReceiveBody)
     428            0 :     }
     429              : 
     430            0 :     pub async fn put_io_engine(
     431            0 :         &self,
     432            0 :         engine: &pageserver_api::models::virtual_file::IoEngineKind,
     433            0 :     ) -> Result<()> {
     434            0 :         let uri = format!("{}/v1/io_engine", self.mgmt_api_endpoint);
     435            0 :         self.request(Method::PUT, uri, engine)
     436            0 :             .await?
     437            0 :             .json()
     438            0 :             .await
     439            0 :             .map_err(Error::ReceiveBody)
     440            0 :     }
     441              : 
     442            0 :     pub async fn get_utilization(&self) -> Result<PageserverUtilization> {
     443            0 :         let uri = format!("{}/v1/utilization", self.mgmt_api_endpoint);
     444            0 :         self.get(uri)
     445            0 :             .await?
     446            0 :             .json()
     447            0 :             .await
     448            0 :             .map_err(Error::ReceiveBody)
     449            0 :     }
     450              : 
     451            0 :     pub async fn layer_map_info(
     452            0 :         &self,
     453            0 :         tenant_shard_id: TenantShardId,
     454            0 :         timeline_id: TimelineId,
     455            0 :     ) -> Result<LayerMapInfo> {
     456            0 :         let uri = format!(
     457            0 :             "{}/v1/tenant/{}/timeline/{}/layer",
     458            0 :             self.mgmt_api_endpoint, tenant_shard_id, timeline_id,
     459            0 :         );
     460            0 :         self.get(&uri)
     461            0 :             .await?
     462            0 :             .json()
     463            0 :             .await
     464            0 :             .map_err(Error::ReceiveBody)
     465            0 :     }
     466              : 
     467            0 :     pub async fn layer_evict(
     468            0 :         &self,
     469            0 :         tenant_shard_id: TenantShardId,
     470            0 :         timeline_id: TimelineId,
     471            0 :         layer_file_name: &str,
     472            0 :     ) -> Result<bool> {
     473            0 :         let uri = format!(
     474            0 :             "{}/v1/tenant/{}/timeline/{}/layer/{}",
     475            0 :             self.mgmt_api_endpoint, tenant_shard_id, timeline_id, layer_file_name
     476            0 :         );
     477            0 :         let resp = self.request_noerror(Method::DELETE, &uri, ()).await?;
     478            0 :         match resp.status() {
     479            0 :             StatusCode::OK => Ok(true),
     480            0 :             StatusCode::NOT_MODIFIED => Ok(false),
     481              :             // TODO: dedupe this pattern / introduce separate error variant?
     482            0 :             status => Err(match resp.json::<HttpErrorBody>().await {
     483            0 :                 Ok(HttpErrorBody { msg }) => Error::ApiError(status, msg),
     484              :                 Err(_) => {
     485            0 :                     Error::ReceiveErrorBody(format!("Http error ({}) at {}.", status.as_u16(), uri))
     486              :                 }
     487              :             }),
     488              :         }
     489            0 :     }
     490              : 
     491            0 :     pub async fn layer_ondemand_download(
     492            0 :         &self,
     493            0 :         tenant_shard_id: TenantShardId,
     494            0 :         timeline_id: TimelineId,
     495            0 :         layer_file_name: &str,
     496            0 :     ) -> Result<bool> {
     497            0 :         let uri = format!(
     498            0 :             "{}/v1/tenant/{}/timeline/{}/layer/{}",
     499            0 :             self.mgmt_api_endpoint, tenant_shard_id, timeline_id, layer_file_name
     500            0 :         );
     501            0 :         let resp = self.request_noerror(Method::GET, &uri, ()).await?;
     502            0 :         match resp.status() {
     503            0 :             StatusCode::OK => Ok(true),
     504            0 :             StatusCode::NOT_MODIFIED => Ok(false),
     505              :             // TODO: dedupe this pattern / introduce separate error variant?
     506            0 :             status => Err(match resp.json::<HttpErrorBody>().await {
     507            0 :                 Ok(HttpErrorBody { msg }) => Error::ApiError(status, msg),
     508              :                 Err(_) => {
     509            0 :                     Error::ReceiveErrorBody(format!("Http error ({}) at {}.", status.as_u16(), uri))
     510              :                 }
     511              :             }),
     512              :         }
     513            0 :     }
     514              : }
        

Generated by: LCOV version 2.1-beta