Line data Source code
1 : use crate::http;
2 : use crate::metrics::{
3 : HttpRequestLatencyLabelGroup, HttpRequestStatusLabelGroup, PageserverRequestLabelGroup,
4 : METRICS_REGISTRY,
5 : };
6 : use crate::persistence::SafekeeperPersistence;
7 : use crate::reconciler::ReconcileError;
8 : use crate::service::{LeadershipStatus, Service, RECONCILE_TIMEOUT, STARTUP_RECONCILE_TIMEOUT};
9 : use anyhow::Context;
10 : use futures::Future;
11 : use hyper::header::CONTENT_TYPE;
12 : use hyper::{Body, Request, Response};
13 : use hyper::{StatusCode, Uri};
14 : use metrics::{BuildInfo, NeonMetrics};
15 : use pageserver_api::controller_api::{
16 : MetadataHealthListOutdatedRequest, MetadataHealthListOutdatedResponse,
17 : MetadataHealthListUnhealthyResponse, MetadataHealthUpdateRequest, MetadataHealthUpdateResponse,
18 : ShardsPreferredAzsRequest, TenantCreateRequest,
19 : };
20 : use pageserver_api::models::{
21 : TenantConfigPatchRequest, TenantConfigRequest, TenantLocationConfigRequest,
22 : TenantShardSplitRequest, TenantTimeTravelRequest, TimelineArchivalConfigRequest,
23 : TimelineCreateRequest,
24 : };
25 : use pageserver_api::shard::TenantShardId;
26 : use pageserver_client::{mgmt_api, BlockUnblock};
27 : use std::str::FromStr;
28 : use std::sync::Arc;
29 : use std::time::{Duration, Instant};
30 : use tokio_util::sync::CancellationToken;
31 : use utils::auth::{Scope, SwappableJwtAuth};
32 : use utils::failpoint_support::failpoints_handler;
33 : use utils::http::endpoint::{auth_middleware, check_permission_with, request_span};
34 : use utils::http::request::{must_get_query_param, parse_query_param, parse_request_param};
35 : use utils::id::{TenantId, TimelineId};
36 :
37 : use utils::{
38 : http::{
39 : endpoint::{self},
40 : error::ApiError,
41 : json::{json_request, json_response},
42 : RequestExt, RouterBuilder,
43 : },
44 : id::NodeId,
45 : };
46 :
47 : use pageserver_api::controller_api::{
48 : NodeAvailability, NodeConfigureRequest, NodeRegisterRequest, TenantPolicyRequest,
49 : TenantShardMigrateRequest,
50 : };
51 : use pageserver_api::upcall_api::{ReAttachRequest, ValidateRequest};
52 :
53 : use control_plane::storage_controller::{AttachHookRequest, InspectRequest};
54 :
55 : use routerify::Middleware;
56 :
57 : /// State available to HTTP request handlers
58 : pub struct HttpState {
59 : service: Arc<crate::service::Service>,
60 : auth: Option<Arc<SwappableJwtAuth>>,
61 : neon_metrics: NeonMetrics,
62 : allowlist_routes: Vec<Uri>,
63 : }
64 :
65 : impl HttpState {
66 0 : pub fn new(
67 0 : service: Arc<crate::service::Service>,
68 0 : auth: Option<Arc<SwappableJwtAuth>>,
69 0 : build_info: BuildInfo,
70 0 : ) -> Self {
71 0 : let allowlist_routes = ["/status", "/ready", "/metrics"]
72 0 : .iter()
73 0 : .map(|v| v.parse().unwrap())
74 0 : .collect::<Vec<_>>();
75 0 : Self {
76 0 : service,
77 0 : auth,
78 0 : neon_metrics: NeonMetrics::new(build_info),
79 0 : allowlist_routes,
80 0 : }
81 0 : }
82 : }
83 :
84 : #[inline(always)]
85 0 : fn get_state(request: &Request<Body>) -> &HttpState {
86 0 : request
87 0 : .data::<Arc<HttpState>>()
88 0 : .expect("unknown state type")
89 0 : .as_ref()
90 0 : }
91 :
92 : /// Pageserver calls into this on startup, to learn which tenants it should attach
93 0 : async fn handle_re_attach(req: Request<Body>) -> Result<Response<Body>, ApiError> {
94 0 : check_permissions(&req, Scope::GenerationsApi)?;
95 :
96 0 : let mut req = match maybe_forward(req).await {
97 0 : ForwardOutcome::Forwarded(res) => {
98 0 : return res;
99 : }
100 0 : ForwardOutcome::NotForwarded(req) => req,
101 : };
102 :
103 0 : let reattach_req = json_request::<ReAttachRequest>(&mut req).await?;
104 0 : let state = get_state(&req);
105 0 : json_response(StatusCode::OK, state.service.re_attach(reattach_req).await?)
106 0 : }
107 :
108 : /// Pageserver calls into this before doing deletions, to confirm that it still
109 : /// holds the latest generation for the tenants with deletions enqueued
110 0 : async fn handle_validate(req: Request<Body>) -> Result<Response<Body>, ApiError> {
111 0 : check_permissions(&req, Scope::GenerationsApi)?;
112 :
113 0 : let mut req = match maybe_forward(req).await {
114 0 : ForwardOutcome::Forwarded(res) => {
115 0 : return res;
116 : }
117 0 : ForwardOutcome::NotForwarded(req) => req,
118 : };
119 :
120 0 : let validate_req = json_request::<ValidateRequest>(&mut req).await?;
121 0 : let state = get_state(&req);
122 0 : json_response(StatusCode::OK, state.service.validate(validate_req).await?)
123 0 : }
124 :
125 : /// Call into this before attaching a tenant to a pageserver, to acquire a generation number
126 : /// (in the real control plane this is unnecessary, because the same program is managing
127 : /// generation numbers and doing attachments).
128 0 : async fn handle_attach_hook(req: Request<Body>) -> Result<Response<Body>, ApiError> {
129 0 : check_permissions(&req, Scope::Admin)?;
130 :
131 0 : let mut req = match maybe_forward(req).await {
132 0 : ForwardOutcome::Forwarded(res) => {
133 0 : return res;
134 : }
135 0 : ForwardOutcome::NotForwarded(req) => req,
136 : };
137 :
138 0 : let attach_req = json_request::<AttachHookRequest>(&mut req).await?;
139 0 : let state = get_state(&req);
140 0 :
141 0 : json_response(
142 0 : StatusCode::OK,
143 0 : state
144 0 : .service
145 0 : .attach_hook(attach_req)
146 0 : .await
147 0 : .map_err(ApiError::InternalServerError)?,
148 : )
149 0 : }
150 :
151 0 : async fn handle_inspect(req: Request<Body>) -> Result<Response<Body>, ApiError> {
152 0 : check_permissions(&req, Scope::Admin)?;
153 :
154 0 : let mut req = match maybe_forward(req).await {
155 0 : ForwardOutcome::Forwarded(res) => {
156 0 : return res;
157 : }
158 0 : ForwardOutcome::NotForwarded(req) => req,
159 : };
160 :
161 0 : let inspect_req = json_request::<InspectRequest>(&mut req).await?;
162 :
163 0 : let state = get_state(&req);
164 0 :
165 0 : json_response(StatusCode::OK, state.service.inspect(inspect_req))
166 0 : }
167 :
168 0 : async fn handle_tenant_create(
169 0 : service: Arc<Service>,
170 0 : req: Request<Body>,
171 0 : ) -> Result<Response<Body>, ApiError> {
172 0 : check_permissions(&req, Scope::PageServerApi)?;
173 :
174 0 : let mut req = match maybe_forward(req).await {
175 0 : ForwardOutcome::Forwarded(res) => {
176 0 : return res;
177 : }
178 0 : ForwardOutcome::NotForwarded(req) => req,
179 : };
180 :
181 0 : let create_req = json_request::<TenantCreateRequest>(&mut req).await?;
182 :
183 : json_response(
184 : StatusCode::CREATED,
185 0 : service.tenant_create(create_req).await?,
186 : )
187 0 : }
188 :
189 0 : async fn handle_tenant_location_config(
190 0 : service: Arc<Service>,
191 0 : req: Request<Body>,
192 0 : ) -> Result<Response<Body>, ApiError> {
193 0 : let tenant_shard_id: TenantShardId = parse_request_param(&req, "tenant_shard_id")?;
194 0 : check_permissions(&req, Scope::PageServerApi)?;
195 :
196 0 : let mut req = match maybe_forward(req).await {
197 0 : ForwardOutcome::Forwarded(res) => {
198 0 : return res;
199 : }
200 0 : ForwardOutcome::NotForwarded(req) => req,
201 : };
202 :
203 0 : let config_req = json_request::<TenantLocationConfigRequest>(&mut req).await?;
204 : json_response(
205 : StatusCode::OK,
206 0 : service
207 0 : .tenant_location_config(tenant_shard_id, config_req)
208 0 : .await?,
209 : )
210 0 : }
211 :
212 0 : async fn handle_tenant_config_patch(
213 0 : service: Arc<Service>,
214 0 : req: Request<Body>,
215 0 : ) -> Result<Response<Body>, ApiError> {
216 0 : check_permissions(&req, Scope::PageServerApi)?;
217 :
218 0 : let mut req = match maybe_forward(req).await {
219 0 : ForwardOutcome::Forwarded(res) => {
220 0 : return res;
221 : }
222 0 : ForwardOutcome::NotForwarded(req) => req,
223 : };
224 :
225 0 : let config_req = json_request::<TenantConfigPatchRequest>(&mut req).await?;
226 :
227 : json_response(
228 : StatusCode::OK,
229 0 : service.tenant_config_patch(config_req).await?,
230 : )
231 0 : }
232 :
233 0 : async fn handle_tenant_config_set(
234 0 : service: Arc<Service>,
235 0 : req: Request<Body>,
236 0 : ) -> Result<Response<Body>, ApiError> {
237 0 : check_permissions(&req, Scope::PageServerApi)?;
238 :
239 0 : let mut req = match maybe_forward(req).await {
240 0 : ForwardOutcome::Forwarded(res) => {
241 0 : return res;
242 : }
243 0 : ForwardOutcome::NotForwarded(req) => req,
244 : };
245 :
246 0 : let config_req = json_request::<TenantConfigRequest>(&mut req).await?;
247 :
248 0 : json_response(StatusCode::OK, service.tenant_config_set(config_req).await?)
249 0 : }
250 :
251 0 : async fn handle_tenant_config_get(
252 0 : service: Arc<Service>,
253 0 : req: Request<Body>,
254 0 : ) -> Result<Response<Body>, ApiError> {
255 0 : let tenant_id: TenantId = parse_request_param(&req, "tenant_id")?;
256 0 : check_permissions(&req, Scope::PageServerApi)?;
257 :
258 0 : match maybe_forward(req).await {
259 0 : ForwardOutcome::Forwarded(res) => {
260 0 : return res;
261 : }
262 0 : ForwardOutcome::NotForwarded(_req) => {}
263 0 : };
264 0 :
265 0 : json_response(StatusCode::OK, service.tenant_config_get(tenant_id)?)
266 0 : }
267 :
268 0 : async fn handle_tenant_time_travel_remote_storage(
269 0 : service: Arc<Service>,
270 0 : req: Request<Body>,
271 0 : ) -> Result<Response<Body>, ApiError> {
272 0 : let tenant_id: TenantId = parse_request_param(&req, "tenant_id")?;
273 0 : check_permissions(&req, Scope::PageServerApi)?;
274 :
275 0 : let mut req = match maybe_forward(req).await {
276 0 : ForwardOutcome::Forwarded(res) => {
277 0 : return res;
278 : }
279 0 : ForwardOutcome::NotForwarded(req) => req,
280 : };
281 :
282 0 : let time_travel_req = json_request::<TenantTimeTravelRequest>(&mut req).await?;
283 :
284 0 : let timestamp_raw = must_get_query_param(&req, "travel_to")?;
285 0 : let _timestamp = humantime::parse_rfc3339(×tamp_raw).map_err(|_e| {
286 0 : ApiError::BadRequest(anyhow::anyhow!(
287 0 : "Invalid time for travel_to: {timestamp_raw:?}"
288 0 : ))
289 0 : })?;
290 :
291 0 : let done_if_after_raw = must_get_query_param(&req, "done_if_after")?;
292 0 : let _done_if_after = humantime::parse_rfc3339(&done_if_after_raw).map_err(|_e| {
293 0 : ApiError::BadRequest(anyhow::anyhow!(
294 0 : "Invalid time for done_if_after: {done_if_after_raw:?}"
295 0 : ))
296 0 : })?;
297 :
298 0 : service
299 0 : .tenant_time_travel_remote_storage(
300 0 : &time_travel_req,
301 0 : tenant_id,
302 0 : timestamp_raw,
303 0 : done_if_after_raw,
304 0 : )
305 0 : .await?;
306 0 : json_response(StatusCode::OK, ())
307 0 : }
308 :
309 0 : fn map_reqwest_hyper_status(status: reqwest::StatusCode) -> Result<hyper::StatusCode, ApiError> {
310 0 : hyper::StatusCode::from_u16(status.as_u16())
311 0 : .context("invalid status code")
312 0 : .map_err(ApiError::InternalServerError)
313 0 : }
314 :
315 0 : async fn handle_tenant_secondary_download(
316 0 : service: Arc<Service>,
317 0 : req: Request<Body>,
318 0 : ) -> Result<Response<Body>, ApiError> {
319 0 : let tenant_id: TenantId = parse_request_param(&req, "tenant_id")?;
320 0 : let wait = parse_query_param(&req, "wait_ms")?.map(Duration::from_millis);
321 0 :
322 0 : match maybe_forward(req).await {
323 0 : ForwardOutcome::Forwarded(res) => {
324 0 : return res;
325 : }
326 0 : ForwardOutcome::NotForwarded(_req) => {}
327 : };
328 :
329 0 : let (status, progress) = service.tenant_secondary_download(tenant_id, wait).await?;
330 0 : json_response(map_reqwest_hyper_status(status)?, progress)
331 0 : }
332 :
333 0 : async fn handle_tenant_delete(
334 0 : service: Arc<Service>,
335 0 : req: Request<Body>,
336 0 : ) -> Result<Response<Body>, ApiError> {
337 0 : let tenant_id: TenantId = parse_request_param(&req, "tenant_id")?;
338 0 : check_permissions(&req, Scope::PageServerApi)?;
339 :
340 0 : match maybe_forward(req).await {
341 0 : ForwardOutcome::Forwarded(res) => {
342 0 : return res;
343 : }
344 0 : ForwardOutcome::NotForwarded(_req) => {}
345 : };
346 :
347 0 : let status_code = service
348 0 : .tenant_delete(tenant_id)
349 0 : .await
350 0 : .and_then(map_reqwest_hyper_status)?;
351 :
352 0 : if status_code == StatusCode::NOT_FOUND {
353 : // The pageserver uses 404 for successful deletion, but we use 200
354 0 : json_response(StatusCode::OK, ())
355 : } else {
356 0 : json_response(status_code, ())
357 : }
358 0 : }
359 :
360 0 : async fn handle_tenant_timeline_create(
361 0 : service: Arc<Service>,
362 0 : req: Request<Body>,
363 0 : ) -> Result<Response<Body>, ApiError> {
364 0 : let tenant_id: TenantId = parse_request_param(&req, "tenant_id")?;
365 0 : check_permissions(&req, Scope::PageServerApi)?;
366 :
367 0 : let mut req = match maybe_forward(req).await {
368 0 : ForwardOutcome::Forwarded(res) => {
369 0 : return res;
370 : }
371 0 : ForwardOutcome::NotForwarded(req) => req,
372 : };
373 :
374 0 : let create_req = json_request::<TimelineCreateRequest>(&mut req).await?;
375 : json_response(
376 : StatusCode::CREATED,
377 0 : service
378 0 : .tenant_timeline_create(tenant_id, create_req)
379 0 : .await?,
380 : )
381 0 : }
382 :
383 0 : async fn handle_tenant_timeline_delete(
384 0 : service: Arc<Service>,
385 0 : req: Request<Body>,
386 0 : ) -> Result<Response<Body>, ApiError> {
387 0 : let tenant_id: TenantId = parse_request_param(&req, "tenant_id")?;
388 0 : let timeline_id: TimelineId = parse_request_param(&req, "timeline_id")?;
389 :
390 0 : check_permissions(&req, Scope::PageServerApi)?;
391 :
392 0 : match maybe_forward(req).await {
393 0 : ForwardOutcome::Forwarded(res) => {
394 0 : return res;
395 : }
396 0 : ForwardOutcome::NotForwarded(_req) => {}
397 : };
398 :
399 : // For timeline deletions, which both implement an "initially return 202, then 404 once
400 : // we're done" semantic, we wrap with a retry loop to expose a simpler API upstream.
401 0 : async fn deletion_wrapper<R, F>(service: Arc<Service>, f: F) -> Result<Response<Body>, ApiError>
402 0 : where
403 0 : R: std::future::Future<Output = Result<StatusCode, ApiError>> + Send + 'static,
404 0 : F: Fn(Arc<Service>) -> R + Send + Sync + 'static,
405 0 : {
406 : // On subsequent retries, wait longer.
407 : // Enable callers with a 25 second request timeout to reliably get a response
408 : const MAX_WAIT: Duration = Duration::from_secs(25);
409 : const MAX_RETRY_PERIOD: Duration = Duration::from_secs(5);
410 :
411 0 : let started_at = Instant::now();
412 0 :
413 0 : // To keep deletion reasonably snappy for small tenants, initially check after 1 second if deletion
414 0 : // completed.
415 0 : let mut retry_period = Duration::from_secs(1);
416 :
417 : loop {
418 0 : let status = f(service.clone()).await?;
419 0 : match status {
420 : StatusCode::ACCEPTED => {
421 0 : tracing::info!("Deletion accepted, waiting to try again...");
422 0 : tokio::time::sleep(retry_period).await;
423 0 : retry_period = MAX_RETRY_PERIOD;
424 : }
425 : StatusCode::CONFLICT => {
426 0 : tracing::info!("Deletion already in progress, waiting to try again...");
427 0 : tokio::time::sleep(retry_period).await;
428 : }
429 : StatusCode::NOT_FOUND => {
430 0 : tracing::info!("Deletion complete");
431 0 : return json_response(StatusCode::OK, ());
432 : }
433 : _ => {
434 0 : tracing::warn!("Unexpected status {status}");
435 0 : return json_response(status, ());
436 : }
437 : }
438 :
439 0 : let now = Instant::now();
440 0 : if now + retry_period > started_at + MAX_WAIT {
441 0 : tracing::info!("Deletion timed out waiting for 404");
442 : // REQUEST_TIMEOUT would be more appropriate, but CONFLICT is already part of
443 : // the pageserver's swagger definition for this endpoint, and has the same desired
444 : // effect of causing the control plane to retry later.
445 0 : return json_response(StatusCode::CONFLICT, ());
446 0 : }
447 : }
448 0 : }
449 :
450 0 : deletion_wrapper(service, move |service| async move {
451 0 : service
452 0 : .tenant_timeline_delete(tenant_id, timeline_id)
453 0 : .await
454 0 : .and_then(map_reqwest_hyper_status)
455 0 : })
456 0 : .await
457 0 : }
458 :
459 0 : async fn handle_tenant_timeline_archival_config(
460 0 : service: Arc<Service>,
461 0 : req: Request<Body>,
462 0 : ) -> Result<Response<Body>, ApiError> {
463 0 : let tenant_id: TenantId = parse_request_param(&req, "tenant_id")?;
464 0 : let timeline_id: TimelineId = parse_request_param(&req, "timeline_id")?;
465 :
466 0 : check_permissions(&req, Scope::PageServerApi)?;
467 :
468 0 : let mut req = match maybe_forward(req).await {
469 0 : ForwardOutcome::Forwarded(res) => {
470 0 : return res;
471 : }
472 0 : ForwardOutcome::NotForwarded(req) => req,
473 : };
474 :
475 0 : let create_req = json_request::<TimelineArchivalConfigRequest>(&mut req).await?;
476 :
477 0 : service
478 0 : .tenant_timeline_archival_config(tenant_id, timeline_id, create_req)
479 0 : .await?;
480 :
481 0 : json_response(StatusCode::OK, ())
482 0 : }
483 :
484 0 : async fn handle_tenant_timeline_detach_ancestor(
485 0 : service: Arc<Service>,
486 0 : req: Request<Body>,
487 0 : ) -> Result<Response<Body>, ApiError> {
488 0 : let tenant_id: TenantId = parse_request_param(&req, "tenant_id")?;
489 0 : let timeline_id: TimelineId = parse_request_param(&req, "timeline_id")?;
490 :
491 0 : check_permissions(&req, Scope::PageServerApi)?;
492 :
493 0 : match maybe_forward(req).await {
494 0 : ForwardOutcome::Forwarded(res) => {
495 0 : return res;
496 : }
497 0 : ForwardOutcome::NotForwarded(_req) => {}
498 : };
499 :
500 0 : let res = service
501 0 : .tenant_timeline_detach_ancestor(tenant_id, timeline_id)
502 0 : .await?;
503 :
504 0 : json_response(StatusCode::OK, res)
505 0 : }
506 :
507 0 : async fn handle_tenant_timeline_block_unblock_gc(
508 0 : service: Arc<Service>,
509 0 : req: Request<Body>,
510 0 : dir: BlockUnblock,
511 0 : ) -> Result<Response<Body>, ApiError> {
512 0 : let tenant_id: TenantId = parse_request_param(&req, "tenant_id")?;
513 0 : check_permissions(&req, Scope::PageServerApi)?;
514 :
515 0 : let timeline_id: TimelineId = parse_request_param(&req, "timeline_id")?;
516 :
517 0 : service
518 0 : .tenant_timeline_block_unblock_gc(tenant_id, timeline_id, dir)
519 0 : .await?;
520 :
521 0 : json_response(StatusCode::OK, ())
522 0 : }
523 :
524 0 : async fn handle_tenant_timeline_passthrough(
525 0 : service: Arc<Service>,
526 0 : req: Request<Body>,
527 0 : ) -> Result<Response<Body>, ApiError> {
528 0 : let tenant_id: TenantId = parse_request_param(&req, "tenant_id")?;
529 0 : check_permissions(&req, Scope::PageServerApi)?;
530 :
531 0 : let req = match maybe_forward(req).await {
532 0 : ForwardOutcome::Forwarded(res) => {
533 0 : return res;
534 : }
535 0 : ForwardOutcome::NotForwarded(req) => req,
536 : };
537 :
538 0 : let Some(path) = req.uri().path_and_query() else {
539 : // This should never happen, our request router only calls us if there is a path
540 0 : return Err(ApiError::BadRequest(anyhow::anyhow!("Missing path")));
541 : };
542 :
543 0 : tracing::info!("Proxying request for tenant {} ({})", tenant_id, path);
544 :
545 : // Find the node that holds shard zero
546 0 : let (node, tenant_shard_id) = service.tenant_shard0_node(tenant_id).await?;
547 :
548 : // Callers will always pass an unsharded tenant ID. Before proxying, we must
549 : // rewrite this to a shard-aware shard zero ID.
550 0 : let path = format!("{}", path);
551 0 : let tenant_str = tenant_id.to_string();
552 0 : let tenant_shard_str = format!("{}", tenant_shard_id);
553 0 : let path = path.replace(&tenant_str, &tenant_shard_str);
554 0 :
555 0 : let latency = &METRICS_REGISTRY
556 0 : .metrics_group
557 0 : .storage_controller_passthrough_request_latency;
558 0 :
559 0 : // This is a bit awkward. We remove the param from the request
560 0 : // and join the words by '_' to get a label for the request.
561 0 : let just_path = path.replace(&tenant_shard_str, "");
562 0 : let path_label = just_path
563 0 : .split('/')
564 0 : .filter(|token| !token.is_empty())
565 0 : .collect::<Vec<_>>()
566 0 : .join("_");
567 0 : let labels = PageserverRequestLabelGroup {
568 0 : pageserver_id: &node.get_id().to_string(),
569 0 : path: &path_label,
570 0 : method: crate::metrics::Method::Get,
571 0 : };
572 0 :
573 0 : let _timer = latency.start_timer(labels.clone());
574 0 :
575 0 : let client = mgmt_api::Client::new(node.base_url(), service.get_config().jwt_token.as_deref());
576 0 : let resp = client.get_raw(path).await.map_err(|e|
577 : // We return 503 here because if we can't successfully send a request to the pageserver,
578 : // either we aren't available or the pageserver is unavailable.
579 0 : ApiError::ResourceUnavailable(format!("Error sending pageserver API request to {node}: {e}").into()))?;
580 :
581 0 : if !resp.status().is_success() {
582 0 : let error_counter = &METRICS_REGISTRY
583 0 : .metrics_group
584 0 : .storage_controller_passthrough_request_error;
585 0 : error_counter.inc(labels);
586 0 : }
587 :
588 : // Transform 404 into 503 if we raced with a migration
589 0 : if resp.status() == reqwest::StatusCode::NOT_FOUND {
590 : // Look up node again: if we migrated it will be different
591 0 : let (new_node, _tenant_shard_id) = service.tenant_shard0_node(tenant_id).await?;
592 0 : if new_node.get_id() != node.get_id() {
593 : // Rather than retry here, send the client a 503 to prompt a retry: this matches
594 : // the pageserver's use of 503, and all clients calling this API should retry on 503.
595 0 : return Err(ApiError::ResourceUnavailable(
596 0 : format!("Pageserver {node} returned 404, was migrated to {new_node}").into(),
597 0 : ));
598 0 : }
599 0 : }
600 :
601 : // We have a reqest::Response, would like a http::Response
602 0 : let mut builder = hyper::Response::builder().status(map_reqwest_hyper_status(resp.status())?);
603 0 : for (k, v) in resp.headers() {
604 0 : builder = builder.header(k.as_str(), v.as_bytes());
605 0 : }
606 :
607 0 : let response = builder
608 0 : .body(Body::wrap_stream(resp.bytes_stream()))
609 0 : .map_err(|e| ApiError::InternalServerError(e.into()))?;
610 :
611 0 : Ok(response)
612 0 : }
613 :
614 0 : async fn handle_tenant_locate(
615 0 : service: Arc<Service>,
616 0 : req: Request<Body>,
617 0 : ) -> Result<Response<Body>, ApiError> {
618 0 : let tenant_id: TenantId = parse_request_param(&req, "tenant_id")?;
619 :
620 0 : check_permissions(&req, Scope::Admin)?;
621 :
622 0 : match maybe_forward(req).await {
623 0 : ForwardOutcome::Forwarded(res) => {
624 0 : return res;
625 : }
626 0 : ForwardOutcome::NotForwarded(_req) => {}
627 0 : };
628 0 :
629 0 : json_response(StatusCode::OK, service.tenant_locate(tenant_id)?)
630 0 : }
631 :
632 0 : async fn handle_tenant_describe(
633 0 : service: Arc<Service>,
634 0 : req: Request<Body>,
635 0 : ) -> Result<Response<Body>, ApiError> {
636 0 : check_permissions(&req, Scope::Scrubber)?;
637 :
638 0 : let tenant_id: TenantId = parse_request_param(&req, "tenant_id")?;
639 :
640 0 : match maybe_forward(req).await {
641 0 : ForwardOutcome::Forwarded(res) => {
642 0 : return res;
643 : }
644 0 : ForwardOutcome::NotForwarded(_req) => {}
645 0 : };
646 0 :
647 0 : json_response(StatusCode::OK, service.tenant_describe(tenant_id)?)
648 0 : }
649 :
650 0 : async fn handle_tenant_list(
651 0 : service: Arc<Service>,
652 0 : req: Request<Body>,
653 0 : ) -> Result<Response<Body>, ApiError> {
654 0 : check_permissions(&req, Scope::Admin)?;
655 :
656 0 : match maybe_forward(req).await {
657 0 : ForwardOutcome::Forwarded(res) => {
658 0 : return res;
659 : }
660 0 : ForwardOutcome::NotForwarded(_req) => {}
661 0 : };
662 0 :
663 0 : json_response(StatusCode::OK, service.tenant_list())
664 0 : }
665 :
666 0 : async fn handle_node_register(req: Request<Body>) -> Result<Response<Body>, ApiError> {
667 0 : check_permissions(&req, Scope::Infra)?;
668 :
669 0 : let mut req = match maybe_forward(req).await {
670 0 : ForwardOutcome::Forwarded(res) => {
671 0 : return res;
672 : }
673 0 : ForwardOutcome::NotForwarded(req) => req,
674 : };
675 :
676 0 : let register_req = json_request::<NodeRegisterRequest>(&mut req).await?;
677 0 : let state = get_state(&req);
678 0 : state.service.node_register(register_req).await?;
679 0 : json_response(StatusCode::OK, ())
680 0 : }
681 :
682 0 : async fn handle_node_list(req: Request<Body>) -> Result<Response<Body>, ApiError> {
683 0 : check_permissions(&req, Scope::Infra)?;
684 :
685 0 : let req = match maybe_forward(req).await {
686 0 : ForwardOutcome::Forwarded(res) => {
687 0 : return res;
688 : }
689 0 : ForwardOutcome::NotForwarded(req) => req,
690 0 : };
691 0 :
692 0 : let state = get_state(&req);
693 0 : let nodes = state.service.node_list().await?;
694 0 : let api_nodes = nodes.into_iter().map(|n| n.describe()).collect::<Vec<_>>();
695 0 :
696 0 : json_response(StatusCode::OK, api_nodes)
697 0 : }
698 :
699 0 : async fn handle_node_drop(req: Request<Body>) -> Result<Response<Body>, ApiError> {
700 0 : check_permissions(&req, Scope::Admin)?;
701 :
702 0 : let req = match maybe_forward(req).await {
703 0 : ForwardOutcome::Forwarded(res) => {
704 0 : return res;
705 : }
706 0 : ForwardOutcome::NotForwarded(req) => req,
707 0 : };
708 0 :
709 0 : let state = get_state(&req);
710 0 : let node_id: NodeId = parse_request_param(&req, "node_id")?;
711 0 : json_response(StatusCode::OK, state.service.node_drop(node_id).await?)
712 0 : }
713 :
714 0 : async fn handle_node_delete(req: Request<Body>) -> Result<Response<Body>, ApiError> {
715 0 : check_permissions(&req, Scope::Admin)?;
716 :
717 0 : let req = match maybe_forward(req).await {
718 0 : ForwardOutcome::Forwarded(res) => {
719 0 : return res;
720 : }
721 0 : ForwardOutcome::NotForwarded(req) => req,
722 0 : };
723 0 :
724 0 : let state = get_state(&req);
725 0 : let node_id: NodeId = parse_request_param(&req, "node_id")?;
726 0 : json_response(StatusCode::OK, state.service.node_delete(node_id).await?)
727 0 : }
728 :
729 0 : async fn handle_node_configure(req: Request<Body>) -> Result<Response<Body>, ApiError> {
730 0 : check_permissions(&req, Scope::Admin)?;
731 :
732 0 : let mut req = match maybe_forward(req).await {
733 0 : ForwardOutcome::Forwarded(res) => {
734 0 : return res;
735 : }
736 0 : ForwardOutcome::NotForwarded(req) => req,
737 : };
738 :
739 0 : let node_id: NodeId = parse_request_param(&req, "node_id")?;
740 0 : let config_req = json_request::<NodeConfigureRequest>(&mut req).await?;
741 0 : if node_id != config_req.node_id {
742 0 : return Err(ApiError::BadRequest(anyhow::anyhow!(
743 0 : "Path and body node_id differ"
744 0 : )));
745 0 : }
746 0 : let state = get_state(&req);
747 0 :
748 0 : json_response(
749 0 : StatusCode::OK,
750 0 : state
751 0 : .service
752 0 : .external_node_configure(
753 0 : config_req.node_id,
754 0 : config_req.availability.map(NodeAvailability::from),
755 0 : config_req.scheduling,
756 0 : )
757 0 : .await?,
758 : )
759 0 : }
760 :
761 0 : async fn handle_node_status(req: Request<Body>) -> Result<Response<Body>, ApiError> {
762 0 : check_permissions(&req, Scope::Infra)?;
763 :
764 0 : let req = match maybe_forward(req).await {
765 0 : ForwardOutcome::Forwarded(res) => {
766 0 : return res;
767 : }
768 0 : ForwardOutcome::NotForwarded(req) => req,
769 0 : };
770 0 :
771 0 : let state = get_state(&req);
772 0 : let node_id: NodeId = parse_request_param(&req, "node_id")?;
773 :
774 0 : let node_status = state.service.get_node(node_id).await?;
775 :
776 0 : json_response(StatusCode::OK, node_status)
777 0 : }
778 :
779 0 : async fn handle_node_shards(req: Request<Body>) -> Result<Response<Body>, ApiError> {
780 0 : check_permissions(&req, Scope::Admin)?;
781 :
782 0 : let state = get_state(&req);
783 0 : let node_id: NodeId = parse_request_param(&req, "node_id")?;
784 :
785 0 : let node_status = state.service.get_node_shards(node_id).await?;
786 :
787 0 : json_response(StatusCode::OK, node_status)
788 0 : }
789 :
790 0 : async fn handle_get_leader(req: Request<Body>) -> Result<Response<Body>, ApiError> {
791 0 : check_permissions(&req, Scope::Admin)?;
792 :
793 0 : let req = match maybe_forward(req).await {
794 0 : ForwardOutcome::Forwarded(res) => {
795 0 : return res;
796 : }
797 0 : ForwardOutcome::NotForwarded(req) => req,
798 0 : };
799 0 :
800 0 : let state = get_state(&req);
801 0 : let leader = state.service.get_leader().await.map_err(|err| {
802 0 : ApiError::InternalServerError(anyhow::anyhow!(
803 0 : "Failed to read leader from database: {err}"
804 0 : ))
805 0 : })?;
806 :
807 0 : json_response(StatusCode::OK, leader)
808 0 : }
809 :
810 0 : async fn handle_node_drain(req: Request<Body>) -> Result<Response<Body>, ApiError> {
811 0 : check_permissions(&req, Scope::Infra)?;
812 :
813 0 : let req = match maybe_forward(req).await {
814 0 : ForwardOutcome::Forwarded(res) => {
815 0 : return res;
816 : }
817 0 : ForwardOutcome::NotForwarded(req) => req,
818 0 : };
819 0 :
820 0 : let state = get_state(&req);
821 0 : let node_id: NodeId = parse_request_param(&req, "node_id")?;
822 :
823 0 : state.service.start_node_drain(node_id).await?;
824 :
825 0 : json_response(StatusCode::ACCEPTED, ())
826 0 : }
827 :
828 0 : async fn handle_cancel_node_drain(req: Request<Body>) -> Result<Response<Body>, ApiError> {
829 0 : check_permissions(&req, Scope::Infra)?;
830 :
831 0 : let req = match maybe_forward(req).await {
832 0 : ForwardOutcome::Forwarded(res) => {
833 0 : return res;
834 : }
835 0 : ForwardOutcome::NotForwarded(req) => req,
836 0 : };
837 0 :
838 0 : let state = get_state(&req);
839 0 : let node_id: NodeId = parse_request_param(&req, "node_id")?;
840 :
841 0 : state.service.cancel_node_drain(node_id).await?;
842 :
843 0 : json_response(StatusCode::ACCEPTED, ())
844 0 : }
845 :
846 0 : async fn handle_node_fill(req: Request<Body>) -> Result<Response<Body>, ApiError> {
847 0 : check_permissions(&req, Scope::Infra)?;
848 :
849 0 : let req = match maybe_forward(req).await {
850 0 : ForwardOutcome::Forwarded(res) => {
851 0 : return res;
852 : }
853 0 : ForwardOutcome::NotForwarded(req) => req,
854 0 : };
855 0 :
856 0 : let state = get_state(&req);
857 0 : let node_id: NodeId = parse_request_param(&req, "node_id")?;
858 :
859 0 : state.service.start_node_fill(node_id).await?;
860 :
861 0 : json_response(StatusCode::ACCEPTED, ())
862 0 : }
863 :
864 0 : async fn handle_cancel_node_fill(req: Request<Body>) -> Result<Response<Body>, ApiError> {
865 0 : check_permissions(&req, Scope::Infra)?;
866 :
867 0 : let req = match maybe_forward(req).await {
868 0 : ForwardOutcome::Forwarded(res) => {
869 0 : return res;
870 : }
871 0 : ForwardOutcome::NotForwarded(req) => req,
872 0 : };
873 0 :
874 0 : let state = get_state(&req);
875 0 : let node_id: NodeId = parse_request_param(&req, "node_id")?;
876 :
877 0 : state.service.cancel_node_fill(node_id).await?;
878 :
879 0 : json_response(StatusCode::ACCEPTED, ())
880 0 : }
881 :
882 0 : async fn handle_safekeeper_list(req: Request<Body>) -> Result<Response<Body>, ApiError> {
883 0 : check_permissions(&req, Scope::Infra)?;
884 :
885 0 : let req = match maybe_forward(req).await {
886 0 : ForwardOutcome::Forwarded(res) => {
887 0 : return res;
888 : }
889 0 : ForwardOutcome::NotForwarded(req) => req,
890 0 : };
891 0 :
892 0 : let state = get_state(&req);
893 0 : let safekeepers = state.service.safekeepers_list().await?;
894 0 : json_response(StatusCode::OK, safekeepers)
895 0 : }
896 :
897 0 : async fn handle_metadata_health_update(req: Request<Body>) -> Result<Response<Body>, ApiError> {
898 0 : check_permissions(&req, Scope::Scrubber)?;
899 :
900 0 : let mut req = match maybe_forward(req).await {
901 0 : ForwardOutcome::Forwarded(res) => {
902 0 : return res;
903 : }
904 0 : ForwardOutcome::NotForwarded(req) => req,
905 : };
906 :
907 0 : let update_req = json_request::<MetadataHealthUpdateRequest>(&mut req).await?;
908 0 : let state = get_state(&req);
909 0 :
910 0 : state.service.metadata_health_update(update_req).await?;
911 :
912 0 : json_response(StatusCode::OK, MetadataHealthUpdateResponse {})
913 0 : }
914 :
915 0 : async fn handle_metadata_health_list_unhealthy(
916 0 : req: Request<Body>,
917 0 : ) -> Result<Response<Body>, ApiError> {
918 0 : check_permissions(&req, Scope::Admin)?;
919 :
920 0 : let req = match maybe_forward(req).await {
921 0 : ForwardOutcome::Forwarded(res) => {
922 0 : return res;
923 : }
924 0 : ForwardOutcome::NotForwarded(req) => req,
925 0 : };
926 0 :
927 0 : let state = get_state(&req);
928 0 : let unhealthy_tenant_shards = state.service.metadata_health_list_unhealthy().await?;
929 :
930 0 : json_response(
931 0 : StatusCode::OK,
932 0 : MetadataHealthListUnhealthyResponse {
933 0 : unhealthy_tenant_shards,
934 0 : },
935 0 : )
936 0 : }
937 :
938 0 : async fn handle_metadata_health_list_outdated(
939 0 : req: Request<Body>,
940 0 : ) -> Result<Response<Body>, ApiError> {
941 0 : check_permissions(&req, Scope::Admin)?;
942 :
943 0 : let mut req = match maybe_forward(req).await {
944 0 : ForwardOutcome::Forwarded(res) => {
945 0 : return res;
946 : }
947 0 : ForwardOutcome::NotForwarded(req) => req,
948 : };
949 :
950 0 : let list_outdated_req = json_request::<MetadataHealthListOutdatedRequest>(&mut req).await?;
951 0 : let state = get_state(&req);
952 0 : let health_records = state
953 0 : .service
954 0 : .metadata_health_list_outdated(list_outdated_req.not_scrubbed_for)
955 0 : .await?;
956 :
957 0 : json_response(
958 0 : StatusCode::OK,
959 0 : MetadataHealthListOutdatedResponse { health_records },
960 0 : )
961 0 : }
962 :
963 0 : async fn handle_tenant_shard_split(
964 0 : service: Arc<Service>,
965 0 : req: Request<Body>,
966 0 : ) -> Result<Response<Body>, ApiError> {
967 0 : check_permissions(&req, Scope::Admin)?;
968 :
969 0 : let mut req = match maybe_forward(req).await {
970 0 : ForwardOutcome::Forwarded(res) => {
971 0 : return res;
972 : }
973 0 : ForwardOutcome::NotForwarded(req) => req,
974 : };
975 :
976 0 : let tenant_id: TenantId = parse_request_param(&req, "tenant_id")?;
977 0 : let split_req = json_request::<TenantShardSplitRequest>(&mut req).await?;
978 :
979 : json_response(
980 : StatusCode::OK,
981 0 : service.tenant_shard_split(tenant_id, split_req).await?,
982 : )
983 0 : }
984 :
985 0 : async fn handle_tenant_shard_migrate(
986 0 : service: Arc<Service>,
987 0 : req: Request<Body>,
988 0 : ) -> Result<Response<Body>, ApiError> {
989 0 : check_permissions(&req, Scope::Admin)?;
990 :
991 0 : let mut req = match maybe_forward(req).await {
992 0 : ForwardOutcome::Forwarded(res) => {
993 0 : return res;
994 : }
995 0 : ForwardOutcome::NotForwarded(req) => req,
996 : };
997 :
998 0 : let tenant_shard_id: TenantShardId = parse_request_param(&req, "tenant_shard_id")?;
999 0 : let migrate_req = json_request::<TenantShardMigrateRequest>(&mut req).await?;
1000 : json_response(
1001 : StatusCode::OK,
1002 0 : service
1003 0 : .tenant_shard_migrate(tenant_shard_id, migrate_req)
1004 0 : .await?,
1005 : )
1006 0 : }
1007 :
1008 0 : async fn handle_tenant_shard_cancel_reconcile(
1009 0 : service: Arc<Service>,
1010 0 : req: Request<Body>,
1011 0 : ) -> Result<Response<Body>, ApiError> {
1012 0 : check_permissions(&req, Scope::Admin)?;
1013 :
1014 0 : let req = match maybe_forward(req).await {
1015 0 : ForwardOutcome::Forwarded(res) => {
1016 0 : return res;
1017 : }
1018 0 : ForwardOutcome::NotForwarded(req) => req,
1019 : };
1020 :
1021 0 : let tenant_shard_id: TenantShardId = parse_request_param(&req, "tenant_shard_id")?;
1022 : json_response(
1023 : StatusCode::OK,
1024 0 : service
1025 0 : .tenant_shard_cancel_reconcile(tenant_shard_id)
1026 0 : .await?,
1027 : )
1028 0 : }
1029 :
1030 0 : async fn handle_tenant_update_policy(req: Request<Body>) -> Result<Response<Body>, ApiError> {
1031 0 : check_permissions(&req, Scope::Admin)?;
1032 :
1033 0 : let mut req = match maybe_forward(req).await {
1034 0 : ForwardOutcome::Forwarded(res) => {
1035 0 : return res;
1036 : }
1037 0 : ForwardOutcome::NotForwarded(req) => req,
1038 : };
1039 :
1040 0 : let tenant_id: TenantId = parse_request_param(&req, "tenant_id")?;
1041 0 : let update_req = json_request::<TenantPolicyRequest>(&mut req).await?;
1042 0 : let state = get_state(&req);
1043 0 :
1044 0 : json_response(
1045 0 : StatusCode::OK,
1046 0 : state
1047 0 : .service
1048 0 : .tenant_update_policy(tenant_id, update_req)
1049 0 : .await?,
1050 : )
1051 0 : }
1052 :
1053 0 : async fn handle_update_preferred_azs(req: Request<Body>) -> Result<Response<Body>, ApiError> {
1054 0 : check_permissions(&req, Scope::Admin)?;
1055 :
1056 0 : let mut req = match maybe_forward(req).await {
1057 0 : ForwardOutcome::Forwarded(res) => {
1058 0 : return res;
1059 : }
1060 0 : ForwardOutcome::NotForwarded(req) => req,
1061 : };
1062 :
1063 0 : let azs_req = json_request::<ShardsPreferredAzsRequest>(&mut req).await?;
1064 0 : let state = get_state(&req);
1065 0 :
1066 0 : json_response(
1067 0 : StatusCode::OK,
1068 0 : state.service.update_shards_preferred_azs(azs_req).await?,
1069 : )
1070 0 : }
1071 :
1072 0 : async fn handle_step_down(req: Request<Body>) -> Result<Response<Body>, ApiError> {
1073 0 : check_permissions(&req, Scope::ControllerPeer)?;
1074 :
1075 0 : let req = match maybe_forward(req).await {
1076 0 : ForwardOutcome::Forwarded(res) => {
1077 0 : return res;
1078 : }
1079 0 : ForwardOutcome::NotForwarded(req) => req,
1080 0 : };
1081 0 :
1082 0 : let state = get_state(&req);
1083 0 : json_response(StatusCode::OK, state.service.step_down().await)
1084 0 : }
1085 :
1086 0 : async fn handle_tenant_drop(req: Request<Body>) -> Result<Response<Body>, ApiError> {
1087 0 : check_permissions(&req, Scope::PageServerApi)?;
1088 :
1089 0 : let tenant_id: TenantId = parse_request_param(&req, "tenant_id")?;
1090 :
1091 0 : let req = match maybe_forward(req).await {
1092 0 : ForwardOutcome::Forwarded(res) => {
1093 0 : return res;
1094 : }
1095 0 : ForwardOutcome::NotForwarded(req) => req,
1096 0 : };
1097 0 :
1098 0 : let state = get_state(&req);
1099 0 :
1100 0 : json_response(StatusCode::OK, state.service.tenant_drop(tenant_id).await?)
1101 0 : }
1102 :
1103 0 : async fn handle_tenant_import(req: Request<Body>) -> Result<Response<Body>, ApiError> {
1104 0 : check_permissions(&req, Scope::PageServerApi)?;
1105 :
1106 0 : let tenant_id: TenantId = parse_request_param(&req, "tenant_id")?;
1107 :
1108 0 : let req = match maybe_forward(req).await {
1109 0 : ForwardOutcome::Forwarded(res) => {
1110 0 : return res;
1111 : }
1112 0 : ForwardOutcome::NotForwarded(req) => req,
1113 0 : };
1114 0 :
1115 0 : let state = get_state(&req);
1116 0 :
1117 0 : json_response(
1118 0 : StatusCode::OK,
1119 0 : state.service.tenant_import(tenant_id).await?,
1120 : )
1121 0 : }
1122 :
1123 0 : async fn handle_tenants_dump(req: Request<Body>) -> Result<Response<Body>, ApiError> {
1124 0 : check_permissions(&req, Scope::Admin)?;
1125 :
1126 0 : let req = match maybe_forward(req).await {
1127 0 : ForwardOutcome::Forwarded(res) => {
1128 0 : return res;
1129 : }
1130 0 : ForwardOutcome::NotForwarded(req) => req,
1131 0 : };
1132 0 :
1133 0 : let state = get_state(&req);
1134 0 : state.service.tenants_dump()
1135 0 : }
1136 :
1137 0 : async fn handle_scheduler_dump(req: Request<Body>) -> Result<Response<Body>, ApiError> {
1138 0 : check_permissions(&req, Scope::Admin)?;
1139 :
1140 0 : let req = match maybe_forward(req).await {
1141 0 : ForwardOutcome::Forwarded(res) => {
1142 0 : return res;
1143 : }
1144 0 : ForwardOutcome::NotForwarded(req) => req,
1145 0 : };
1146 0 :
1147 0 : let state = get_state(&req);
1148 0 : state.service.scheduler_dump()
1149 0 : }
1150 :
1151 0 : async fn handle_consistency_check(req: Request<Body>) -> Result<Response<Body>, ApiError> {
1152 0 : check_permissions(&req, Scope::Admin)?;
1153 :
1154 0 : let req = match maybe_forward(req).await {
1155 0 : ForwardOutcome::Forwarded(res) => {
1156 0 : return res;
1157 : }
1158 0 : ForwardOutcome::NotForwarded(req) => req,
1159 0 : };
1160 0 :
1161 0 : let state = get_state(&req);
1162 0 :
1163 0 : json_response(StatusCode::OK, state.service.consistency_check().await?)
1164 0 : }
1165 :
1166 0 : async fn handle_reconcile_all(req: Request<Body>) -> Result<Response<Body>, ApiError> {
1167 0 : check_permissions(&req, Scope::Admin)?;
1168 :
1169 0 : let req = match maybe_forward(req).await {
1170 0 : ForwardOutcome::Forwarded(res) => {
1171 0 : return res;
1172 : }
1173 0 : ForwardOutcome::NotForwarded(req) => req,
1174 0 : };
1175 0 :
1176 0 : let state = get_state(&req);
1177 0 :
1178 0 : json_response(StatusCode::OK, state.service.reconcile_all_now().await?)
1179 0 : }
1180 :
1181 : /// Status endpoint is just used for checking that our HTTP listener is up
1182 0 : async fn handle_status(req: Request<Body>) -> Result<Response<Body>, ApiError> {
1183 0 : match maybe_forward(req).await {
1184 0 : ForwardOutcome::Forwarded(res) => {
1185 0 : return res;
1186 : }
1187 0 : ForwardOutcome::NotForwarded(_req) => {}
1188 0 : };
1189 0 :
1190 0 : json_response(StatusCode::OK, ())
1191 0 : }
1192 :
1193 : /// Readiness endpoint indicates when we're done doing startup I/O (e.g. reconciling
1194 : /// with remote pageserver nodes). This is intended for use as a kubernetes readiness probe.
1195 0 : async fn handle_ready(req: Request<Body>) -> Result<Response<Body>, ApiError> {
1196 0 : let req = match maybe_forward(req).await {
1197 0 : ForwardOutcome::Forwarded(res) => {
1198 0 : return res;
1199 : }
1200 0 : ForwardOutcome::NotForwarded(req) => req,
1201 0 : };
1202 0 :
1203 0 : let state = get_state(&req);
1204 0 : if state.service.startup_complete.is_ready() {
1205 0 : json_response(StatusCode::OK, ())
1206 : } else {
1207 0 : json_response(StatusCode::SERVICE_UNAVAILABLE, ())
1208 : }
1209 0 : }
1210 :
1211 : impl From<ReconcileError> for ApiError {
1212 0 : fn from(value: ReconcileError) -> Self {
1213 0 : ApiError::Conflict(format!("Reconciliation error: {}", value))
1214 0 : }
1215 : }
1216 :
1217 : /// Return the safekeeper record by instance id, or 404.
1218 : ///
1219 : /// Not used by anything except manual testing.
1220 0 : async fn handle_get_safekeeper(req: Request<Body>) -> Result<Response<Body>, ApiError> {
1221 0 : check_permissions(&req, Scope::Infra)?;
1222 :
1223 0 : let id = parse_request_param::<i64>(&req, "id")?;
1224 :
1225 0 : let req = match maybe_forward(req).await {
1226 0 : ForwardOutcome::Forwarded(res) => {
1227 0 : return res;
1228 : }
1229 0 : ForwardOutcome::NotForwarded(req) => req,
1230 0 : };
1231 0 :
1232 0 : let state = get_state(&req);
1233 :
1234 0 : let res = state.service.get_safekeeper(id).await;
1235 :
1236 0 : match res {
1237 0 : Ok(b) => json_response(StatusCode::OK, b),
1238 : Err(crate::persistence::DatabaseError::Query(diesel::result::Error::NotFound)) => {
1239 0 : Err(ApiError::NotFound("unknown instance id".into()))
1240 : }
1241 0 : Err(other) => Err(other.into()),
1242 : }
1243 0 : }
1244 :
1245 : /// Used as part of deployment scripts.
1246 : ///
1247 : /// Assumes information is only relayed to storage controller after first selecting an unique id on
1248 : /// control plane database, which means we have an id field in the request and payload.
1249 0 : async fn handle_upsert_safekeeper(mut req: Request<Body>) -> Result<Response<Body>, ApiError> {
1250 0 : check_permissions(&req, Scope::Infra)?;
1251 :
1252 0 : let body = json_request::<SafekeeperPersistence>(&mut req).await?;
1253 0 : let id = parse_request_param::<i64>(&req, "id")?;
1254 :
1255 0 : if id != body.id {
1256 : // it should be repeated
1257 0 : return Err(ApiError::BadRequest(anyhow::anyhow!(
1258 0 : "id mismatch: url={id:?}, body={:?}",
1259 0 : body.id
1260 0 : )));
1261 0 : }
1262 :
1263 0 : let req = match maybe_forward(req).await {
1264 0 : ForwardOutcome::Forwarded(res) => {
1265 0 : return res;
1266 : }
1267 0 : ForwardOutcome::NotForwarded(req) => req,
1268 0 : };
1269 0 :
1270 0 : let state = get_state(&req);
1271 0 :
1272 0 : state.service.upsert_safekeeper(body).await?;
1273 :
1274 0 : Ok(Response::builder()
1275 0 : .status(StatusCode::NO_CONTENT)
1276 0 : .body(Body::empty())
1277 0 : .unwrap())
1278 0 : }
1279 :
1280 : /// Common wrapper for request handlers that call into Service and will operate on tenants: they must only
1281 : /// be allowed to run if Service has finished its initial reconciliation.
1282 0 : async fn tenant_service_handler<R, H>(
1283 0 : request: Request<Body>,
1284 0 : handler: H,
1285 0 : request_name: RequestName,
1286 0 : ) -> R::Output
1287 0 : where
1288 0 : R: std::future::Future<Output = Result<Response<Body>, ApiError>> + Send + 'static,
1289 0 : H: FnOnce(Arc<Service>, Request<Body>) -> R + Send + Sync + 'static,
1290 0 : {
1291 0 : let state = get_state(&request);
1292 0 : let service = state.service.clone();
1293 0 :
1294 0 : let startup_complete = service.startup_complete.clone();
1295 0 : if tokio::time::timeout(STARTUP_RECONCILE_TIMEOUT, startup_complete.wait())
1296 0 : .await
1297 0 : .is_err()
1298 : {
1299 : // This shouldn't happen: it is the responsibilty of [`Service::startup_reconcile`] to use appropriate
1300 : // timeouts around its remote calls, to bound its runtime.
1301 0 : return Err(ApiError::Timeout(
1302 0 : "Timed out waiting for service readiness".into(),
1303 0 : ));
1304 0 : }
1305 0 :
1306 0 : named_request_span(
1307 0 : request,
1308 0 : |request| async move { handler(service, request).await },
1309 0 : request_name,
1310 0 : )
1311 0 : .await
1312 0 : }
1313 :
1314 : /// Check if the required scope is held in the request's token, or if the request has
1315 : /// a token with 'admin' scope then always permit it.
1316 0 : fn check_permissions(request: &Request<Body>, required_scope: Scope) -> Result<(), ApiError> {
1317 0 : check_permission_with(request, |claims| {
1318 0 : match crate::auth::check_permission(claims, required_scope) {
1319 0 : Err(e) => match crate::auth::check_permission(claims, Scope::Admin) {
1320 0 : Ok(()) => Ok(()),
1321 0 : Err(_) => Err(e),
1322 : },
1323 0 : Ok(()) => Ok(()),
1324 : }
1325 0 : })
1326 0 : }
1327 :
1328 : #[derive(Clone, Debug)]
1329 : struct RequestMeta {
1330 : method: hyper::http::Method,
1331 : at: Instant,
1332 : }
1333 :
1334 0 : pub fn prologue_leadership_status_check_middleware<
1335 0 : B: hyper::body::HttpBody + Send + Sync + 'static,
1336 0 : >() -> Middleware<B, ApiError> {
1337 0 : Middleware::pre(move |req| async move {
1338 0 : let state = get_state(&req);
1339 0 : let leadership_status = state.service.get_leadership_status();
1340 :
1341 : enum AllowedRoutes<'a> {
1342 : All,
1343 : Some(Vec<&'a str>),
1344 : }
1345 :
1346 0 : let allowed_routes = match leadership_status {
1347 0 : LeadershipStatus::Leader => AllowedRoutes::All,
1348 0 : LeadershipStatus::SteppedDown => AllowedRoutes::All,
1349 : LeadershipStatus::Candidate => {
1350 0 : AllowedRoutes::Some(["/ready", "/status", "/metrics"].to_vec())
1351 : }
1352 : };
1353 :
1354 0 : let uri = req.uri().to_string();
1355 0 : match allowed_routes {
1356 0 : AllowedRoutes::All => Ok(req),
1357 0 : AllowedRoutes::Some(allowed) if allowed.contains(&uri.as_str()) => Ok(req),
1358 : _ => {
1359 0 : tracing::info!(
1360 0 : "Request {} not allowed due to current leadership state",
1361 0 : req.uri()
1362 : );
1363 :
1364 0 : Err(ApiError::ResourceUnavailable(
1365 0 : format!("Current leadership status is {leadership_status}").into(),
1366 0 : ))
1367 : }
1368 : }
1369 0 : })
1370 0 : }
1371 :
1372 0 : fn prologue_metrics_middleware<B: hyper::body::HttpBody + Send + Sync + 'static>(
1373 0 : ) -> Middleware<B, ApiError> {
1374 0 : Middleware::pre(move |req| async move {
1375 0 : let meta = RequestMeta {
1376 0 : method: req.method().clone(),
1377 0 : at: Instant::now(),
1378 0 : };
1379 0 :
1380 0 : req.set_context(meta);
1381 0 :
1382 0 : Ok(req)
1383 0 : })
1384 0 : }
1385 :
1386 0 : fn epilogue_metrics_middleware<B: hyper::body::HttpBody + Send + Sync + 'static>(
1387 0 : ) -> Middleware<B, ApiError> {
1388 0 : Middleware::post_with_info(move |resp, req_info| async move {
1389 0 : let request_name = match req_info.context::<RequestName>() {
1390 0 : Some(name) => name,
1391 : None => {
1392 0 : return Ok(resp);
1393 : }
1394 : };
1395 :
1396 0 : if let Some(meta) = req_info.context::<RequestMeta>() {
1397 0 : let status = &crate::metrics::METRICS_REGISTRY
1398 0 : .metrics_group
1399 0 : .storage_controller_http_request_status;
1400 0 : let latency = &crate::metrics::METRICS_REGISTRY
1401 0 : .metrics_group
1402 0 : .storage_controller_http_request_latency;
1403 0 :
1404 0 : status.inc(HttpRequestStatusLabelGroup {
1405 0 : path: request_name.0,
1406 0 : method: meta.method.clone().into(),
1407 0 : status: crate::metrics::StatusCode(resp.status()),
1408 0 : });
1409 0 :
1410 0 : latency.observe(
1411 0 : HttpRequestLatencyLabelGroup {
1412 0 : path: request_name.0,
1413 0 : method: meta.method.into(),
1414 0 : },
1415 0 : meta.at.elapsed().as_secs_f64(),
1416 0 : );
1417 0 : }
1418 0 : Ok(resp)
1419 0 : })
1420 0 : }
1421 :
1422 0 : pub async fn measured_metrics_handler(req: Request<Body>) -> Result<Response<Body>, ApiError> {
1423 : pub const TEXT_FORMAT: &str = "text/plain; version=0.0.4";
1424 :
1425 0 : let req = match maybe_forward(req).await {
1426 0 : ForwardOutcome::Forwarded(res) => {
1427 0 : return res;
1428 : }
1429 0 : ForwardOutcome::NotForwarded(req) => req,
1430 0 : };
1431 0 :
1432 0 : let state = get_state(&req);
1433 0 : let payload = crate::metrics::METRICS_REGISTRY.encode(&state.neon_metrics);
1434 0 : let response = Response::builder()
1435 0 : .status(200)
1436 0 : .header(CONTENT_TYPE, TEXT_FORMAT)
1437 0 : .body(payload.into())
1438 0 : .unwrap();
1439 0 :
1440 0 : Ok(response)
1441 0 : }
1442 :
1443 : #[derive(Clone)]
1444 : struct RequestName(&'static str);
1445 :
1446 0 : async fn named_request_span<R, H>(
1447 0 : request: Request<Body>,
1448 0 : handler: H,
1449 0 : name: RequestName,
1450 0 : ) -> R::Output
1451 0 : where
1452 0 : R: Future<Output = Result<Response<Body>, ApiError>> + Send + 'static,
1453 0 : H: FnOnce(Request<Body>) -> R + Send + Sync + 'static,
1454 0 : {
1455 0 : request.set_context(name);
1456 0 : request_span(request, handler).await
1457 0 : }
1458 :
1459 : enum ForwardOutcome {
1460 : Forwarded(Result<Response<Body>, ApiError>),
1461 : NotForwarded(Request<Body>),
1462 : }
1463 :
1464 : /// Potentially forward the request to the current storage controler leader.
1465 : /// More specifically we forward when:
1466 : /// 1. Request is not one of ["/control/v1/step_down", "/status", "/ready", "/metrics"]
1467 : /// 2. Current instance is in [`LeadershipStatus::SteppedDown`] state
1468 : /// 3. There is a leader in the database to forward to
1469 : /// 4. Leader from step (3) is not the current instance
1470 : ///
1471 : /// Why forward?
1472 : /// It turns out that we can't rely on external orchestration to promptly route trafic to the
1473 : /// new leader. This is downtime inducing. Forwarding provides a safe way out.
1474 : ///
1475 : /// Why is it safe?
1476 : /// If a storcon instance is persisted in the database, then we know that it is the current leader.
1477 : /// There's one exception: time between handling step-down request and the new leader updating the
1478 : /// database.
1479 : ///
1480 : /// Let's treat the happy case first. The stepped down node does not produce any side effects,
1481 : /// since all request handling happens on the leader.
1482 : ///
1483 : /// As for the edge case, we are guaranteed to always have a maximum of two running instances.
1484 : /// Hence, if we are in the edge case scenario the leader persisted in the database is the
1485 : /// stepped down instance that received the request. Condition (4) above covers this scenario.
1486 0 : async fn maybe_forward(req: Request<Body>) -> ForwardOutcome {
1487 : const NOT_FOR_FORWARD: [&str; 4] = ["/control/v1/step_down", "/status", "/ready", "/metrics"];
1488 :
1489 0 : let uri = req.uri().to_string();
1490 0 : let uri_for_forward = !NOT_FOR_FORWARD.contains(&uri.as_str());
1491 0 :
1492 0 : // Fast return before trying to take any Service locks, if we will never forward anyway
1493 0 : if !uri_for_forward {
1494 0 : return ForwardOutcome::NotForwarded(req);
1495 0 : }
1496 0 :
1497 0 : let state = get_state(&req);
1498 0 : let leadership_status = state.service.get_leadership_status();
1499 0 :
1500 0 : if leadership_status != LeadershipStatus::SteppedDown {
1501 0 : return ForwardOutcome::NotForwarded(req);
1502 0 : }
1503 :
1504 0 : let leader = state.service.get_leader().await;
1505 0 : let leader = {
1506 0 : match leader {
1507 0 : Ok(Some(leader)) => leader,
1508 : Ok(None) => {
1509 0 : return ForwardOutcome::Forwarded(Err(ApiError::ResourceUnavailable(
1510 0 : "No leader to forward to while in stepped down state".into(),
1511 0 : )));
1512 : }
1513 0 : Err(err) => {
1514 0 : return ForwardOutcome::Forwarded(Err(ApiError::InternalServerError(
1515 0 : anyhow::anyhow!(
1516 0 : "Failed to get leader for forwarding while in stepped down state: {err}"
1517 0 : ),
1518 0 : )));
1519 : }
1520 : }
1521 : };
1522 :
1523 0 : let cfg = state.service.get_config();
1524 0 : if let Some(ref self_addr) = cfg.address_for_peers {
1525 0 : let leader_addr = match Uri::from_str(leader.address.as_str()) {
1526 0 : Ok(uri) => uri,
1527 0 : Err(err) => {
1528 0 : return ForwardOutcome::Forwarded(Err(ApiError::InternalServerError(
1529 0 : anyhow::anyhow!(
1530 0 : "Failed to parse leader uri for forwarding while in stepped down state: {err}"
1531 0 : ),
1532 0 : )));
1533 : }
1534 : };
1535 :
1536 0 : if *self_addr == leader_addr {
1537 0 : return ForwardOutcome::Forwarded(Err(ApiError::InternalServerError(anyhow::anyhow!(
1538 0 : "Leader is stepped down instance"
1539 0 : ))));
1540 0 : }
1541 0 : }
1542 :
1543 0 : tracing::info!("Forwarding {} to leader at {}", uri, leader.address);
1544 :
1545 : // Use [`RECONCILE_TIMEOUT`] as the max amount of time a request should block for and
1546 : // include some leeway to get the timeout for proxied requests.
1547 : const PROXIED_REQUEST_TIMEOUT: Duration = Duration::from_secs(RECONCILE_TIMEOUT.as_secs() + 10);
1548 0 : let client = reqwest::ClientBuilder::new()
1549 0 : .timeout(PROXIED_REQUEST_TIMEOUT)
1550 0 : .build();
1551 0 : let client = match client {
1552 0 : Ok(client) => client,
1553 0 : Err(err) => {
1554 0 : return ForwardOutcome::Forwarded(Err(ApiError::InternalServerError(anyhow::anyhow!(
1555 0 : "Failed to build leader client for forwarding while in stepped down state: {err}"
1556 0 : ))));
1557 : }
1558 : };
1559 :
1560 0 : let request: reqwest::Request = match convert_request(req, &client, leader.address).await {
1561 0 : Ok(r) => r,
1562 0 : Err(err) => {
1563 0 : return ForwardOutcome::Forwarded(Err(ApiError::InternalServerError(anyhow::anyhow!(
1564 0 : "Failed to convert request for forwarding while in stepped down state: {err}"
1565 0 : ))));
1566 : }
1567 : };
1568 :
1569 0 : let response = match client.execute(request).await {
1570 0 : Ok(r) => r,
1571 0 : Err(err) => {
1572 0 : return ForwardOutcome::Forwarded(Err(ApiError::InternalServerError(anyhow::anyhow!(
1573 0 : "Failed to forward while in stepped down state: {err}"
1574 0 : ))));
1575 : }
1576 : };
1577 :
1578 0 : ForwardOutcome::Forwarded(convert_response(response).await)
1579 0 : }
1580 :
1581 : /// Convert a [`reqwest::Response`] to a [hyper::Response`] by passing through
1582 : /// a stable representation (string, bytes or integer)
1583 : ///
1584 : /// Ideally, we would not have to do this since both types use the http crate
1585 : /// under the hood. However, they use different versions of the crate and keeping
1586 : /// second order dependencies in sync is difficult.
1587 0 : async fn convert_response(resp: reqwest::Response) -> Result<hyper::Response<Body>, ApiError> {
1588 : use std::str::FromStr;
1589 :
1590 0 : let mut builder = hyper::Response::builder().status(resp.status().as_u16());
1591 0 : for (key, value) in resp.headers().into_iter() {
1592 0 : let key = hyper::header::HeaderName::from_str(key.as_str()).map_err(|err| {
1593 0 : ApiError::InternalServerError(anyhow::anyhow!("Response conversion failed: {err}"))
1594 0 : })?;
1595 :
1596 0 : let value = hyper::header::HeaderValue::from_bytes(value.as_bytes()).map_err(|err| {
1597 0 : ApiError::InternalServerError(anyhow::anyhow!("Response conversion failed: {err}"))
1598 0 : })?;
1599 :
1600 0 : builder = builder.header(key, value);
1601 : }
1602 :
1603 0 : let body = http::Body::wrap_stream(resp.bytes_stream());
1604 0 :
1605 0 : builder.body(body).map_err(|err| {
1606 0 : ApiError::InternalServerError(anyhow::anyhow!("Response conversion failed: {err}"))
1607 0 : })
1608 0 : }
1609 :
1610 : /// Convert a [`reqwest::Request`] to a [hyper::Request`] by passing through
1611 : /// a stable representation (string, bytes or integer)
1612 : ///
1613 : /// See [`convert_response`] for why we are doing it this way.
1614 0 : async fn convert_request(
1615 0 : req: hyper::Request<Body>,
1616 0 : client: &reqwest::Client,
1617 0 : to_address: String,
1618 0 : ) -> Result<reqwest::Request, ApiError> {
1619 : use std::str::FromStr;
1620 :
1621 0 : let (parts, body) = req.into_parts();
1622 0 : let method = reqwest::Method::from_str(parts.method.as_str()).map_err(|err| {
1623 0 : ApiError::InternalServerError(anyhow::anyhow!("Request conversion failed: {err}"))
1624 0 : })?;
1625 :
1626 0 : let path_and_query = parts.uri.path_and_query().ok_or_else(|| {
1627 0 : ApiError::InternalServerError(anyhow::anyhow!(
1628 0 : "Request conversion failed: no path and query"
1629 0 : ))
1630 0 : })?;
1631 :
1632 0 : let uri = reqwest::Url::from_str(
1633 0 : format!(
1634 0 : "{}{}",
1635 0 : to_address.trim_end_matches("/"),
1636 0 : path_and_query.as_str()
1637 0 : )
1638 0 : .as_str(),
1639 0 : )
1640 0 : .map_err(|err| {
1641 0 : ApiError::InternalServerError(anyhow::anyhow!("Request conversion failed: {err}"))
1642 0 : })?;
1643 :
1644 0 : let mut headers = reqwest::header::HeaderMap::new();
1645 0 : for (key, value) in parts.headers.into_iter() {
1646 0 : let key = match key {
1647 0 : Some(k) => k,
1648 : None => {
1649 0 : continue;
1650 : }
1651 : };
1652 :
1653 0 : let key = reqwest::header::HeaderName::from_str(key.as_str()).map_err(|err| {
1654 0 : ApiError::InternalServerError(anyhow::anyhow!("Request conversion failed: {err}"))
1655 0 : })?;
1656 :
1657 0 : let value = reqwest::header::HeaderValue::from_bytes(value.as_bytes()).map_err(|err| {
1658 0 : ApiError::InternalServerError(anyhow::anyhow!("Request conversion failed: {err}"))
1659 0 : })?;
1660 :
1661 0 : headers.insert(key, value);
1662 : }
1663 :
1664 0 : let body = hyper::body::to_bytes(body).await.map_err(|err| {
1665 0 : ApiError::InternalServerError(anyhow::anyhow!("Request conversion failed: {err}"))
1666 0 : })?;
1667 :
1668 0 : client
1669 0 : .request(method, uri)
1670 0 : .headers(headers)
1671 0 : .body(body)
1672 0 : .build()
1673 0 : .map_err(|err| {
1674 0 : ApiError::InternalServerError(anyhow::anyhow!("Request conversion failed: {err}"))
1675 0 : })
1676 0 : }
1677 :
1678 0 : pub fn make_router(
1679 0 : service: Arc<Service>,
1680 0 : auth: Option<Arc<SwappableJwtAuth>>,
1681 0 : build_info: BuildInfo,
1682 0 : ) -> RouterBuilder<hyper::Body, ApiError> {
1683 0 : let mut router = endpoint::make_router()
1684 0 : .middleware(prologue_leadership_status_check_middleware())
1685 0 : .middleware(prologue_metrics_middleware())
1686 0 : .middleware(epilogue_metrics_middleware());
1687 0 : if auth.is_some() {
1688 0 : router = router.middleware(auth_middleware(|request| {
1689 0 : let state = get_state(request);
1690 0 : if state.allowlist_routes.contains(request.uri()) {
1691 0 : None
1692 : } else {
1693 0 : state.auth.as_deref()
1694 : }
1695 0 : }));
1696 0 : }
1697 :
1698 0 : router
1699 0 : .data(Arc::new(HttpState::new(service, auth, build_info)))
1700 0 : .get("/metrics", |r| {
1701 0 : named_request_span(r, measured_metrics_handler, RequestName("metrics"))
1702 0 : })
1703 0 : // Non-prefixed generic endpoints (status, metrics)
1704 0 : .get("/status", |r| {
1705 0 : named_request_span(r, handle_status, RequestName("status"))
1706 0 : })
1707 0 : .get("/ready", |r| {
1708 0 : named_request_span(r, handle_ready, RequestName("ready"))
1709 0 : })
1710 0 : // Upcalls for the pageserver: point the pageserver's `control_plane_api` config to this prefix
1711 0 : .post("/upcall/v1/re-attach", |r| {
1712 0 : named_request_span(r, handle_re_attach, RequestName("upcall_v1_reattach"))
1713 0 : })
1714 0 : .post("/upcall/v1/validate", |r| {
1715 0 : named_request_span(r, handle_validate, RequestName("upcall_v1_validate"))
1716 0 : })
1717 0 : // Test/dev/debug endpoints
1718 0 : .post("/debug/v1/attach-hook", |r| {
1719 0 : named_request_span(r, handle_attach_hook, RequestName("debug_v1_attach_hook"))
1720 0 : })
1721 0 : .post("/debug/v1/inspect", |r| {
1722 0 : named_request_span(r, handle_inspect, RequestName("debug_v1_inspect"))
1723 0 : })
1724 0 : .post("/debug/v1/tenant/:tenant_id/drop", |r| {
1725 0 : named_request_span(r, handle_tenant_drop, RequestName("debug_v1_tenant_drop"))
1726 0 : })
1727 0 : .post("/debug/v1/node/:node_id/drop", |r| {
1728 0 : named_request_span(r, handle_node_drop, RequestName("debug_v1_node_drop"))
1729 0 : })
1730 0 : .post("/debug/v1/tenant/:tenant_id/import", |r| {
1731 0 : named_request_span(
1732 0 : r,
1733 0 : handle_tenant_import,
1734 0 : RequestName("debug_v1_tenant_import"),
1735 0 : )
1736 0 : })
1737 0 : .get("/debug/v1/tenant", |r| {
1738 0 : named_request_span(r, handle_tenants_dump, RequestName("debug_v1_tenant"))
1739 0 : })
1740 0 : .get("/debug/v1/tenant/:tenant_id/locate", |r| {
1741 0 : tenant_service_handler(
1742 0 : r,
1743 0 : handle_tenant_locate,
1744 0 : RequestName("debug_v1_tenant_locate"),
1745 0 : )
1746 0 : })
1747 0 : .get("/debug/v1/scheduler", |r| {
1748 0 : named_request_span(r, handle_scheduler_dump, RequestName("debug_v1_scheduler"))
1749 0 : })
1750 0 : .post("/debug/v1/consistency_check", |r| {
1751 0 : named_request_span(
1752 0 : r,
1753 0 : handle_consistency_check,
1754 0 : RequestName("debug_v1_consistency_check"),
1755 0 : )
1756 0 : })
1757 0 : .post("/debug/v1/reconcile_all", |r| {
1758 0 : request_span(r, handle_reconcile_all)
1759 0 : })
1760 0 : .put("/debug/v1/failpoints", |r| {
1761 0 : request_span(r, |r| failpoints_handler(r, CancellationToken::new()))
1762 0 : })
1763 0 : // Node operations
1764 0 : .post("/control/v1/node", |r| {
1765 0 : named_request_span(r, handle_node_register, RequestName("control_v1_node"))
1766 0 : })
1767 0 : .delete("/control/v1/node/:node_id", |r| {
1768 0 : named_request_span(r, handle_node_delete, RequestName("control_v1_node_delete"))
1769 0 : })
1770 0 : .get("/control/v1/node", |r| {
1771 0 : named_request_span(r, handle_node_list, RequestName("control_v1_node"))
1772 0 : })
1773 0 : .put("/control/v1/node/:node_id/config", |r| {
1774 0 : named_request_span(
1775 0 : r,
1776 0 : handle_node_configure,
1777 0 : RequestName("control_v1_node_config"),
1778 0 : )
1779 0 : })
1780 0 : .get("/control/v1/node/:node_id", |r| {
1781 0 : named_request_span(r, handle_node_status, RequestName("control_v1_node_status"))
1782 0 : })
1783 0 : .get("/control/v1/node/:node_id/shards", |r| {
1784 0 : named_request_span(
1785 0 : r,
1786 0 : handle_node_shards,
1787 0 : RequestName("control_v1_node_describe"),
1788 0 : )
1789 0 : })
1790 0 : .get("/control/v1/leader", |r| {
1791 0 : named_request_span(r, handle_get_leader, RequestName("control_v1_get_leader"))
1792 0 : })
1793 0 : .put("/control/v1/node/:node_id/drain", |r| {
1794 0 : named_request_span(r, handle_node_drain, RequestName("control_v1_node_drain"))
1795 0 : })
1796 0 : .delete("/control/v1/node/:node_id/drain", |r| {
1797 0 : named_request_span(
1798 0 : r,
1799 0 : handle_cancel_node_drain,
1800 0 : RequestName("control_v1_cancel_node_drain"),
1801 0 : )
1802 0 : })
1803 0 : .put("/control/v1/node/:node_id/fill", |r| {
1804 0 : named_request_span(r, handle_node_fill, RequestName("control_v1_node_fill"))
1805 0 : })
1806 0 : .delete("/control/v1/node/:node_id/fill", |r| {
1807 0 : named_request_span(
1808 0 : r,
1809 0 : handle_cancel_node_fill,
1810 0 : RequestName("control_v1_cancel_node_fill"),
1811 0 : )
1812 0 : })
1813 0 : // Metadata health operations
1814 0 : .post("/control/v1/metadata_health/update", |r| {
1815 0 : named_request_span(
1816 0 : r,
1817 0 : handle_metadata_health_update,
1818 0 : RequestName("control_v1_metadata_health_update"),
1819 0 : )
1820 0 : })
1821 0 : .get("/control/v1/metadata_health/unhealthy", |r| {
1822 0 : named_request_span(
1823 0 : r,
1824 0 : handle_metadata_health_list_unhealthy,
1825 0 : RequestName("control_v1_metadata_health_list_unhealthy"),
1826 0 : )
1827 0 : })
1828 0 : .post("/control/v1/metadata_health/outdated", |r| {
1829 0 : named_request_span(
1830 0 : r,
1831 0 : handle_metadata_health_list_outdated,
1832 0 : RequestName("control_v1_metadata_health_list_outdated"),
1833 0 : )
1834 0 : })
1835 0 : // Safekeepers
1836 0 : .get("/control/v1/safekeeper", |r| {
1837 0 : named_request_span(
1838 0 : r,
1839 0 : handle_safekeeper_list,
1840 0 : RequestName("control_v1_safekeeper_list"),
1841 0 : )
1842 0 : })
1843 0 : .get("/control/v1/safekeeper/:id", |r| {
1844 0 : named_request_span(r, handle_get_safekeeper, RequestName("v1_safekeeper"))
1845 0 : })
1846 0 : .post("/control/v1/safekeeper/:id", |r| {
1847 0 : // id is in the body
1848 0 : named_request_span(r, handle_upsert_safekeeper, RequestName("v1_safekeeper"))
1849 0 : })
1850 0 : // Tenant Shard operations
1851 0 : .put("/control/v1/tenant/:tenant_shard_id/migrate", |r| {
1852 0 : tenant_service_handler(
1853 0 : r,
1854 0 : handle_tenant_shard_migrate,
1855 0 : RequestName("control_v1_tenant_migrate"),
1856 0 : )
1857 0 : })
1858 0 : .put(
1859 0 : "/control/v1/tenant/:tenant_shard_id/cancel_reconcile",
1860 0 : |r| {
1861 0 : tenant_service_handler(
1862 0 : r,
1863 0 : handle_tenant_shard_cancel_reconcile,
1864 0 : RequestName("control_v1_tenant_cancel_reconcile"),
1865 0 : )
1866 0 : },
1867 0 : )
1868 0 : .put("/control/v1/tenant/:tenant_id/shard_split", |r| {
1869 0 : tenant_service_handler(
1870 0 : r,
1871 0 : handle_tenant_shard_split,
1872 0 : RequestName("control_v1_tenant_shard_split"),
1873 0 : )
1874 0 : })
1875 0 : .get("/control/v1/tenant/:tenant_id", |r| {
1876 0 : tenant_service_handler(
1877 0 : r,
1878 0 : handle_tenant_describe,
1879 0 : RequestName("control_v1_tenant_describe"),
1880 0 : )
1881 0 : })
1882 0 : .get("/control/v1/tenant", |r| {
1883 0 : tenant_service_handler(r, handle_tenant_list, RequestName("control_v1_tenant_list"))
1884 0 : })
1885 0 : .put("/control/v1/tenant/:tenant_id/policy", |r| {
1886 0 : named_request_span(
1887 0 : r,
1888 0 : handle_tenant_update_policy,
1889 0 : RequestName("control_v1_tenant_policy"),
1890 0 : )
1891 0 : })
1892 0 : .put("/control/v1/preferred_azs", |r| {
1893 0 : named_request_span(
1894 0 : r,
1895 0 : handle_update_preferred_azs,
1896 0 : RequestName("control_v1_preferred_azs"),
1897 0 : )
1898 0 : })
1899 0 : .put("/control/v1/step_down", |r| {
1900 0 : named_request_span(r, handle_step_down, RequestName("control_v1_step_down"))
1901 0 : })
1902 0 : // Tenant operations
1903 0 : // The ^/v1/ endpoints act as a "Virtual Pageserver", enabling shard-naive clients to call into
1904 0 : // this service to manage tenants that actually consist of many tenant shards, as if they are a single entity.
1905 0 : .post("/v1/tenant", |r| {
1906 0 : tenant_service_handler(r, handle_tenant_create, RequestName("v1_tenant"))
1907 0 : })
1908 0 : .delete("/v1/tenant/:tenant_id", |r| {
1909 0 : tenant_service_handler(r, handle_tenant_delete, RequestName("v1_tenant"))
1910 0 : })
1911 0 : .patch("/v1/tenant/config", |r| {
1912 0 : tenant_service_handler(
1913 0 : r,
1914 0 : handle_tenant_config_patch,
1915 0 : RequestName("v1_tenant_config"),
1916 0 : )
1917 0 : })
1918 0 : .put("/v1/tenant/config", |r| {
1919 0 : tenant_service_handler(r, handle_tenant_config_set, RequestName("v1_tenant_config"))
1920 0 : })
1921 0 : .get("/v1/tenant/:tenant_id/config", |r| {
1922 0 : tenant_service_handler(r, handle_tenant_config_get, RequestName("v1_tenant_config"))
1923 0 : })
1924 0 : .put("/v1/tenant/:tenant_shard_id/location_config", |r| {
1925 0 : tenant_service_handler(
1926 0 : r,
1927 0 : handle_tenant_location_config,
1928 0 : RequestName("v1_tenant_location_config"),
1929 0 : )
1930 0 : })
1931 0 : .put("/v1/tenant/:tenant_id/time_travel_remote_storage", |r| {
1932 0 : tenant_service_handler(
1933 0 : r,
1934 0 : handle_tenant_time_travel_remote_storage,
1935 0 : RequestName("v1_tenant_time_travel_remote_storage"),
1936 0 : )
1937 0 : })
1938 0 : .post("/v1/tenant/:tenant_id/secondary/download", |r| {
1939 0 : tenant_service_handler(
1940 0 : r,
1941 0 : handle_tenant_secondary_download,
1942 0 : RequestName("v1_tenant_secondary_download"),
1943 0 : )
1944 0 : })
1945 0 : // Timeline operations
1946 0 : .delete("/v1/tenant/:tenant_id/timeline/:timeline_id", |r| {
1947 0 : tenant_service_handler(
1948 0 : r,
1949 0 : handle_tenant_timeline_delete,
1950 0 : RequestName("v1_tenant_timeline"),
1951 0 : )
1952 0 : })
1953 0 : .post("/v1/tenant/:tenant_id/timeline", |r| {
1954 0 : tenant_service_handler(
1955 0 : r,
1956 0 : handle_tenant_timeline_create,
1957 0 : RequestName("v1_tenant_timeline"),
1958 0 : )
1959 0 : })
1960 0 : .put(
1961 0 : "/v1/tenant/:tenant_id/timeline/:timeline_id/archival_config",
1962 0 : |r| {
1963 0 : tenant_service_handler(
1964 0 : r,
1965 0 : handle_tenant_timeline_archival_config,
1966 0 : RequestName("v1_tenant_timeline_archival_config"),
1967 0 : )
1968 0 : },
1969 0 : )
1970 0 : .put(
1971 0 : "/v1/tenant/:tenant_id/timeline/:timeline_id/detach_ancestor",
1972 0 : |r| {
1973 0 : tenant_service_handler(
1974 0 : r,
1975 0 : handle_tenant_timeline_detach_ancestor,
1976 0 : RequestName("v1_tenant_timeline_detach_ancestor"),
1977 0 : )
1978 0 : },
1979 0 : )
1980 0 : .post(
1981 0 : "/v1/tenant/:tenant_id/timeline/:timeline_id/block_gc",
1982 0 : |r| {
1983 0 : tenant_service_handler(
1984 0 : r,
1985 0 : |s, r| handle_tenant_timeline_block_unblock_gc(s, r, BlockUnblock::Block),
1986 0 : RequestName("v1_tenant_timeline_block_unblock_gc"),
1987 0 : )
1988 0 : },
1989 0 : )
1990 0 : .post(
1991 0 : "/v1/tenant/:tenant_id/timeline/:timeline_id/unblock_gc",
1992 0 : |r| {
1993 0 : tenant_service_handler(
1994 0 : r,
1995 0 : |s, r| handle_tenant_timeline_block_unblock_gc(s, r, BlockUnblock::Unblock),
1996 0 : RequestName("v1_tenant_timeline_block_unblock_gc"),
1997 0 : )
1998 0 : },
1999 0 : )
2000 0 : // Tenant detail GET passthrough to shard zero:
2001 0 : .get("/v1/tenant/:tenant_id", |r| {
2002 0 : tenant_service_handler(
2003 0 : r,
2004 0 : handle_tenant_timeline_passthrough,
2005 0 : RequestName("v1_tenant_passthrough"),
2006 0 : )
2007 0 : })
2008 0 : // The `*` in the URL is a wildcard: any tenant/timeline GET APIs on the pageserver
2009 0 : // are implicitly exposed here. This must be last in the list to avoid
2010 0 : // taking precedence over other GET methods we might implement by hand.
2011 0 : .get("/v1/tenant/:tenant_id/*", |r| {
2012 0 : tenant_service_handler(
2013 0 : r,
2014 0 : handle_tenant_timeline_passthrough,
2015 0 : RequestName("v1_tenant_passthrough"),
2016 0 : )
2017 0 : })
2018 0 : }
|