Line data Source code
1 : pub mod detach_ancestor;
2 : pub mod partitioning;
3 : pub mod utilization;
4 :
5 : use core::ops::Range;
6 : use std::collections::HashMap;
7 : use std::fmt::Display;
8 : use std::io::{BufRead, Read};
9 : use std::num::{NonZeroU32, NonZeroU64, NonZeroUsize};
10 : use std::str::FromStr;
11 : use std::time::{Duration, SystemTime};
12 :
13 : use byteorder::{BigEndian, ReadBytesExt};
14 : use bytes::{Buf, BufMut, Bytes, BytesMut};
15 : #[cfg(feature = "testing")]
16 : use camino::Utf8PathBuf;
17 : use postgres_ffi::BLCKSZ;
18 : use serde::{Deserialize, Deserializer, Serialize, Serializer};
19 : use serde_with::serde_as;
20 : pub use utilization::PageserverUtilization;
21 : use utils::id::{NodeId, TenantId, TimelineId};
22 : use utils::lsn::Lsn;
23 : use utils::postgres_client::PostgresClientProtocol;
24 : use utils::{completion, serde_system_time};
25 :
26 : use crate::key::{CompactKey, Key};
27 : use crate::reltag::RelTag;
28 : use crate::shard::{ShardCount, ShardStripeSize, TenantShardId};
29 :
30 : /// The state of a tenant in this pageserver.
31 : ///
32 : /// ```mermaid
33 : /// stateDiagram-v2
34 : ///
35 : /// [*] --> Attaching: spawn_attach()
36 : ///
37 : /// Attaching --> Activating: activate()
38 : /// Activating --> Active: infallible
39 : ///
40 : /// Attaching --> Broken: attach() failure
41 : ///
42 : /// Active --> Stopping: set_stopping(), part of shutdown & detach
43 : /// Stopping --> Broken: late error in remove_tenant_from_memory
44 : ///
45 : /// Broken --> [*]: ignore / detach / shutdown
46 : /// Stopping --> [*]: remove_from_memory complete
47 : ///
48 : /// Active --> Broken: cfg(testing)-only tenant break point
49 : /// ```
50 : #[derive(
51 : Clone,
52 : PartialEq,
53 : Eq,
54 0 : serde::Serialize,
55 1 : serde::Deserialize,
56 : strum_macros::Display,
57 : strum_macros::VariantNames,
58 : strum_macros::AsRefStr,
59 : strum_macros::IntoStaticStr,
60 : )]
61 : #[serde(tag = "slug", content = "data")]
62 : pub enum TenantState {
63 : /// This tenant is being attached to the pageserver.
64 : ///
65 : /// `set_stopping()` and `set_broken()` do not work in this state and wait for it to pass.
66 : Attaching,
67 : /// The tenant is transitioning from Loading/Attaching to Active.
68 : ///
69 : /// While in this state, the individual timelines are being activated.
70 : ///
71 : /// `set_stopping()` and `set_broken()` do not work in this state and wait for it to pass.
72 : Activating(ActivatingFrom),
73 : /// The tenant has finished activating and is open for business.
74 : ///
75 : /// Transitions out of this state are possible through `set_stopping()` and `set_broken()`.
76 : Active,
77 : /// The tenant is recognized by pageserver, but it is being detached or the
78 : /// system is being shut down.
79 : ///
80 : /// Transitions out of this state are possible through `set_broken()`.
81 : Stopping {
82 : // Because of https://github.com/serde-rs/serde/issues/2105 this has to be a named field,
83 : // otherwise it will not be skipped during deserialization
84 : #[serde(skip)]
85 : progress: completion::Barrier,
86 : },
87 : /// The tenant is recognized by the pageserver, but can no longer be used for
88 : /// any operations.
89 : ///
90 : /// If the tenant fails to load or attach, it will transition to this state
91 : /// and it is guaranteed that no background tasks are running in its name.
92 : ///
93 : /// The other way to transition into this state is from `Stopping` state
94 : /// through `set_broken()` called from `remove_tenant_from_memory()`. That happens
95 : /// if the cleanup future executed by `remove_tenant_from_memory()` fails.
96 : Broken { reason: String, backtrace: String },
97 : }
98 :
99 : impl TenantState {
100 0 : pub fn attachment_status(&self) -> TenantAttachmentStatus {
101 : use TenantAttachmentStatus::*;
102 :
103 : // Below TenantState::Activating is used as "transient" or "transparent" state for
104 : // attachment_status determining.
105 0 : match self {
106 : // The attach procedure writes the marker file before adding the Attaching tenant to the tenants map.
107 : // So, technically, we can return Attached here.
108 : // However, as soon as Console observes Attached, it will proceed with the Postgres-level health check.
109 : // But, our attach task might still be fetching the remote timelines, etc.
110 : // So, return `Maybe` while Attaching, making Console wait for the attach task to finish.
111 0 : Self::Attaching | Self::Activating(ActivatingFrom::Attaching) => Maybe,
112 : // We only reach Active after successful load / attach.
113 : // So, call atttachment status Attached.
114 0 : Self::Active => Attached,
115 : // If the (initial or resumed) attach procedure fails, the tenant becomes Broken.
116 : // However, it also becomes Broken if the regular load fails.
117 : // From Console's perspective there's no practical difference
118 : // because attachment_status is polled by console only during attach operation execution.
119 0 : Self::Broken { reason, .. } => Failed {
120 0 : reason: reason.to_owned(),
121 0 : },
122 : // Why is Stopping a Maybe case? Because, during pageserver shutdown,
123 : // we set the Stopping state irrespective of whether the tenant
124 : // has finished attaching or not.
125 0 : Self::Stopping { .. } => Maybe,
126 : }
127 0 : }
128 :
129 0 : pub fn broken_from_reason(reason: String) -> Self {
130 0 : let backtrace_str: String = format!("{}", std::backtrace::Backtrace::force_capture());
131 0 : Self::Broken {
132 0 : reason,
133 0 : backtrace: backtrace_str,
134 0 : }
135 0 : }
136 : }
137 :
138 : impl std::fmt::Debug for TenantState {
139 2 : fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
140 2 : match self {
141 2 : Self::Broken { reason, backtrace } if !reason.is_empty() => {
142 2 : write!(f, "Broken due to: {reason}. Backtrace:\n{backtrace}")
143 : }
144 0 : _ => write!(f, "{self}"),
145 : }
146 2 : }
147 : }
148 :
149 : /// A temporary lease to a specific lsn inside a timeline.
150 : /// Access to the lsn is guaranteed by the pageserver until the expiration indicated by `valid_until`.
151 : #[serde_as]
152 0 : #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
153 : pub struct LsnLease {
154 : #[serde_as(as = "SystemTimeAsRfc3339Millis")]
155 : pub valid_until: SystemTime,
156 : }
157 :
158 : serde_with::serde_conv!(
159 : SystemTimeAsRfc3339Millis,
160 : SystemTime,
161 0 : |time: &SystemTime| humantime::format_rfc3339_millis(*time).to_string(),
162 0 : |value: String| -> Result<_, humantime::TimestampError> { humantime::parse_rfc3339(&value) }
163 : );
164 :
165 : impl LsnLease {
166 : /// The default length for an explicit LSN lease request (10 minutes).
167 : pub const DEFAULT_LENGTH: Duration = Duration::from_secs(10 * 60);
168 :
169 : /// The default length for an implicit LSN lease granted during
170 : /// `get_lsn_by_timestamp` request (1 minutes).
171 : pub const DEFAULT_LENGTH_FOR_TS: Duration = Duration::from_secs(60);
172 :
173 : /// Checks whether the lease is expired.
174 12 : pub fn is_expired(&self, now: &SystemTime) -> bool {
175 12 : now > &self.valid_until
176 12 : }
177 : }
178 :
179 : /// Controls the detach ancestor behavior.
180 : /// - When set to `NoAncestorAndReparent`, we will only detach a branch if its ancestor is a root branch. It will automatically reparent any children of the ancestor before and at the branch point.
181 : /// - When set to `MultiLevelAndNoReparent`, we will detach a branch from multiple levels of ancestors, and no reparenting will happen at all.
182 : #[derive(Debug, Clone, Copy, Default)]
183 : pub enum DetachBehavior {
184 : #[default]
185 : NoAncestorAndReparent,
186 : MultiLevelAndNoReparent,
187 : }
188 :
189 : impl std::str::FromStr for DetachBehavior {
190 : type Err = &'static str;
191 :
192 0 : fn from_str(s: &str) -> Result<Self, Self::Err> {
193 0 : match s {
194 0 : "no_ancestor_and_reparent" => Ok(DetachBehavior::NoAncestorAndReparent),
195 0 : "multi_level_and_no_reparent" => Ok(DetachBehavior::MultiLevelAndNoReparent),
196 0 : "v1" => Ok(DetachBehavior::NoAncestorAndReparent),
197 0 : "v2" => Ok(DetachBehavior::MultiLevelAndNoReparent),
198 0 : _ => Err("cannot parse detach behavior"),
199 : }
200 0 : }
201 : }
202 :
203 : impl std::fmt::Display for DetachBehavior {
204 0 : fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
205 0 : match self {
206 0 : DetachBehavior::NoAncestorAndReparent => write!(f, "no_ancestor_and_reparent"),
207 0 : DetachBehavior::MultiLevelAndNoReparent => write!(f, "multi_level_and_no_reparent"),
208 : }
209 0 : }
210 : }
211 :
212 : /// The only [`TenantState`] variants we could be `TenantState::Activating` from.
213 : ///
214 : /// XXX: We used to have more variants here, but now it's just one, which makes this rather
215 : /// useless. Remove, once we've checked that there's no client code left that looks at this.
216 1 : #[derive(Clone, Copy, Debug, PartialEq, Eq, serde::Serialize, serde::Deserialize)]
217 : pub enum ActivatingFrom {
218 : /// Arrived to [`TenantState::Activating`] from [`TenantState::Attaching`]
219 : Attaching,
220 : }
221 :
222 : /// A state of a timeline in pageserver's memory.
223 0 : #[derive(Debug, Clone, PartialEq, Eq, serde::Serialize, serde::Deserialize)]
224 : pub enum TimelineState {
225 : /// The timeline is recognized by the pageserver but is not yet operational.
226 : /// In particular, the walreceiver connection loop is not running for this timeline.
227 : /// It will eventually transition to state Active or Broken.
228 : Loading,
229 : /// The timeline is fully operational.
230 : /// It can be queried, and the walreceiver connection loop is running.
231 : Active,
232 : /// The timeline was previously Loading or Active but is shutting down.
233 : /// It cannot transition back into any other state.
234 : Stopping,
235 : /// The timeline is broken and not operational (previous states: Loading or Active).
236 : Broken { reason: String, backtrace: String },
237 : }
238 :
239 : #[serde_with::serde_as]
240 0 : #[derive(Debug, Clone, serde::Deserialize, serde::Serialize)]
241 : pub struct CompactLsnRange {
242 : pub start: Lsn,
243 : pub end: Lsn,
244 : }
245 :
246 : #[serde_with::serde_as]
247 0 : #[derive(Debug, Clone, serde::Deserialize, serde::Serialize)]
248 : pub struct CompactKeyRange {
249 : #[serde_as(as = "serde_with::DisplayFromStr")]
250 : pub start: Key,
251 : #[serde_as(as = "serde_with::DisplayFromStr")]
252 : pub end: Key,
253 : }
254 :
255 : impl From<Range<Lsn>> for CompactLsnRange {
256 12 : fn from(range: Range<Lsn>) -> Self {
257 12 : Self {
258 12 : start: range.start,
259 12 : end: range.end,
260 12 : }
261 12 : }
262 : }
263 :
264 : impl From<Range<Key>> for CompactKeyRange {
265 32 : fn from(range: Range<Key>) -> Self {
266 32 : Self {
267 32 : start: range.start,
268 32 : end: range.end,
269 32 : }
270 32 : }
271 : }
272 :
273 : impl From<CompactLsnRange> for Range<Lsn> {
274 20 : fn from(range: CompactLsnRange) -> Self {
275 20 : range.start..range.end
276 20 : }
277 : }
278 :
279 : impl From<CompactKeyRange> for Range<Key> {
280 32 : fn from(range: CompactKeyRange) -> Self {
281 32 : range.start..range.end
282 32 : }
283 : }
284 :
285 : impl CompactLsnRange {
286 8 : pub fn above(lsn: Lsn) -> Self {
287 8 : Self {
288 8 : start: lsn,
289 8 : end: Lsn::MAX,
290 8 : }
291 8 : }
292 : }
293 :
294 : #[derive(Debug, Clone, Serialize)]
295 : pub struct CompactInfoResponse {
296 : pub compact_key_range: Option<CompactKeyRange>,
297 : pub compact_lsn_range: Option<CompactLsnRange>,
298 : pub sub_compaction: bool,
299 : pub running: bool,
300 : pub job_id: usize,
301 : }
302 :
303 0 : #[derive(Serialize, Deserialize, Clone)]
304 : pub struct TimelineCreateRequest {
305 : pub new_timeline_id: TimelineId,
306 : #[serde(flatten)]
307 : pub mode: TimelineCreateRequestMode,
308 : }
309 :
310 : /// Storage controller specific extensions to [`TimelineInfo`].
311 0 : #[derive(Serialize, Deserialize, Clone)]
312 : pub struct TimelineCreateResponseStorcon {
313 : #[serde(flatten)]
314 : pub timeline_info: TimelineInfo,
315 :
316 : pub safekeepers: Option<SafekeepersInfo>,
317 : }
318 :
319 : /// Safekeepers as returned in timeline creation request to storcon or pushed to
320 : /// cplane in the post migration hook.
321 0 : #[derive(Serialize, Deserialize, Clone)]
322 : pub struct SafekeepersInfo {
323 : pub tenant_id: TenantId,
324 : pub timeline_id: TimelineId,
325 : pub generation: u32,
326 : pub safekeepers: Vec<SafekeeperInfo>,
327 : }
328 :
329 0 : #[derive(Serialize, Deserialize, Clone)]
330 : pub struct SafekeeperInfo {
331 : pub id: NodeId,
332 : pub hostname: String,
333 : }
334 :
335 0 : #[derive(Serialize, Deserialize, Clone)]
336 : #[serde(untagged)]
337 : pub enum TimelineCreateRequestMode {
338 : Branch {
339 : ancestor_timeline_id: TimelineId,
340 : #[serde(default)]
341 : ancestor_start_lsn: Option<Lsn>,
342 : // TODO: cplane sets this, but, the branching code always
343 : // inherits the ancestor's pg_version. Earlier code wasn't
344 : // using a flattened enum, so, it was an accepted field, and
345 : // we continue to accept it by having it here.
346 : pg_version: Option<u32>,
347 : },
348 : ImportPgdata {
349 : import_pgdata: TimelineCreateRequestModeImportPgdata,
350 : },
351 : // NB: Bootstrap is all-optional, and thus the serde(untagged) will cause serde to stop at Bootstrap.
352 : // (serde picks the first matching enum variant, in declaration order).
353 : Bootstrap {
354 : #[serde(default)]
355 : existing_initdb_timeline_id: Option<TimelineId>,
356 : pg_version: Option<u32>,
357 : },
358 : }
359 :
360 0 : #[derive(Serialize, Deserialize, Clone)]
361 : pub struct TimelineCreateRequestModeImportPgdata {
362 : pub location: ImportPgdataLocation,
363 : pub idempotency_key: ImportPgdataIdempotencyKey,
364 : }
365 :
366 0 : #[derive(Serialize, Deserialize, Clone, Debug)]
367 : pub enum ImportPgdataLocation {
368 : #[cfg(feature = "testing")]
369 : LocalFs { path: Utf8PathBuf },
370 : AwsS3 {
371 : region: String,
372 : bucket: String,
373 : /// A better name for this would be `prefix`; changing requires coordination with cplane.
374 : /// See <https://github.com/neondatabase/cloud/issues/20646>.
375 : key: String,
376 : },
377 : }
378 :
379 0 : #[derive(Serialize, Deserialize, Clone)]
380 : #[serde(transparent)]
381 : pub struct ImportPgdataIdempotencyKey(pub String);
382 :
383 : impl ImportPgdataIdempotencyKey {
384 0 : pub fn random() -> Self {
385 : use rand::Rng;
386 : use rand::distributions::Alphanumeric;
387 0 : Self(
388 0 : rand::thread_rng()
389 0 : .sample_iter(&Alphanumeric)
390 0 : .take(20)
391 0 : .map(char::from)
392 0 : .collect(),
393 0 : )
394 0 : }
395 : }
396 :
397 0 : #[derive(Serialize, Deserialize, Clone)]
398 : pub struct LsnLeaseRequest {
399 : pub lsn: Lsn,
400 : }
401 :
402 0 : #[derive(Serialize, Deserialize)]
403 : pub struct TenantShardSplitRequest {
404 : pub new_shard_count: u8,
405 :
406 : // A tenant's stripe size is only meaningful the first time their shard count goes
407 : // above 1: therefore during a split from 1->N shards, we may modify the stripe size.
408 : //
409 : // If this is set while the stripe count is being increased from an already >1 value,
410 : // then the request will fail with 400.
411 : pub new_stripe_size: Option<ShardStripeSize>,
412 : }
413 :
414 0 : #[derive(Serialize, Deserialize)]
415 : pub struct TenantShardSplitResponse {
416 : pub new_shards: Vec<TenantShardId>,
417 : }
418 :
419 : /// Parameters that apply to all shards in a tenant. Used during tenant creation.
420 0 : #[derive(Serialize, Deserialize, Debug)]
421 : #[serde(deny_unknown_fields)]
422 : pub struct ShardParameters {
423 : pub count: ShardCount,
424 : pub stripe_size: ShardStripeSize,
425 : }
426 :
427 : impl ShardParameters {
428 : pub const DEFAULT_STRIPE_SIZE: ShardStripeSize = ShardStripeSize(256 * 1024 / 8);
429 :
430 0 : pub fn is_unsharded(&self) -> bool {
431 0 : self.count.is_unsharded()
432 0 : }
433 : }
434 :
435 : impl Default for ShardParameters {
436 453 : fn default() -> Self {
437 453 : Self {
438 453 : count: ShardCount::new(0),
439 453 : stripe_size: Self::DEFAULT_STRIPE_SIZE,
440 453 : }
441 453 : }
442 : }
443 :
444 : #[derive(Debug, Default, Clone, Eq, PartialEq)]
445 : pub enum FieldPatch<T> {
446 : Upsert(T),
447 : Remove,
448 : #[default]
449 : Noop,
450 : }
451 :
452 : impl<T> FieldPatch<T> {
453 68 : fn is_noop(&self) -> bool {
454 68 : matches!(self, FieldPatch::Noop)
455 68 : }
456 :
457 34 : pub fn apply(self, target: &mut Option<T>) {
458 34 : match self {
459 1 : Self::Upsert(v) => *target = Some(v),
460 1 : Self::Remove => *target = None,
461 32 : Self::Noop => {}
462 : }
463 34 : }
464 :
465 10 : pub fn map<U, E, F: FnOnce(T) -> Result<U, E>>(self, map: F) -> Result<FieldPatch<U>, E> {
466 10 : match self {
467 0 : Self::Upsert(v) => Ok(FieldPatch::<U>::Upsert(map(v)?)),
468 0 : Self::Remove => Ok(FieldPatch::<U>::Remove),
469 10 : Self::Noop => Ok(FieldPatch::<U>::Noop),
470 : }
471 10 : }
472 : }
473 :
474 : impl<'de, T: Deserialize<'de>> Deserialize<'de> for FieldPatch<T> {
475 2 : fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
476 2 : where
477 2 : D: Deserializer<'de>,
478 2 : {
479 2 : Option::deserialize(deserializer).map(|opt| match opt {
480 1 : None => FieldPatch::Remove,
481 1 : Some(val) => FieldPatch::Upsert(val),
482 2 : })
483 2 : }
484 : }
485 :
486 : impl<T: Serialize> Serialize for FieldPatch<T> {
487 2 : fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
488 2 : where
489 2 : S: Serializer,
490 2 : {
491 2 : match self {
492 1 : FieldPatch::Upsert(val) => serializer.serialize_some(val),
493 1 : FieldPatch::Remove => serializer.serialize_none(),
494 0 : FieldPatch::Noop => unreachable!(),
495 : }
496 2 : }
497 : }
498 :
499 2 : #[derive(Serialize, Deserialize, Debug, Default, Clone, Eq, PartialEq)]
500 : #[serde(default)]
501 : pub struct TenantConfigPatch {
502 : #[serde(skip_serializing_if = "FieldPatch::is_noop")]
503 : pub checkpoint_distance: FieldPatch<u64>,
504 : #[serde(skip_serializing_if = "FieldPatch::is_noop")]
505 : pub checkpoint_timeout: FieldPatch<String>,
506 : #[serde(skip_serializing_if = "FieldPatch::is_noop")]
507 : pub compaction_target_size: FieldPatch<u64>,
508 : #[serde(skip_serializing_if = "FieldPatch::is_noop")]
509 : pub compaction_period: FieldPatch<String>,
510 : #[serde(skip_serializing_if = "FieldPatch::is_noop")]
511 : pub compaction_threshold: FieldPatch<usize>,
512 : #[serde(skip_serializing_if = "FieldPatch::is_noop")]
513 : pub compaction_upper_limit: FieldPatch<usize>,
514 : // defer parsing compaction_algorithm, like eviction_policy
515 : #[serde(skip_serializing_if = "FieldPatch::is_noop")]
516 : pub compaction_algorithm: FieldPatch<CompactionAlgorithmSettings>,
517 : #[serde(skip_serializing_if = "FieldPatch::is_noop")]
518 : pub compaction_l0_first: FieldPatch<bool>,
519 : #[serde(skip_serializing_if = "FieldPatch::is_noop")]
520 : pub compaction_l0_semaphore: FieldPatch<bool>,
521 : #[serde(skip_serializing_if = "FieldPatch::is_noop")]
522 : pub l0_flush_delay_threshold: FieldPatch<usize>,
523 : #[serde(skip_serializing_if = "FieldPatch::is_noop")]
524 : pub l0_flush_stall_threshold: FieldPatch<usize>,
525 : #[serde(skip_serializing_if = "FieldPatch::is_noop")]
526 : pub gc_horizon: FieldPatch<u64>,
527 : #[serde(skip_serializing_if = "FieldPatch::is_noop")]
528 : pub gc_period: FieldPatch<String>,
529 : #[serde(skip_serializing_if = "FieldPatch::is_noop")]
530 : pub image_creation_threshold: FieldPatch<usize>,
531 : #[serde(skip_serializing_if = "FieldPatch::is_noop")]
532 : pub pitr_interval: FieldPatch<String>,
533 : #[serde(skip_serializing_if = "FieldPatch::is_noop")]
534 : pub walreceiver_connect_timeout: FieldPatch<String>,
535 : #[serde(skip_serializing_if = "FieldPatch::is_noop")]
536 : pub lagging_wal_timeout: FieldPatch<String>,
537 : #[serde(skip_serializing_if = "FieldPatch::is_noop")]
538 : pub max_lsn_wal_lag: FieldPatch<NonZeroU64>,
539 : #[serde(skip_serializing_if = "FieldPatch::is_noop")]
540 : pub eviction_policy: FieldPatch<EvictionPolicy>,
541 : #[serde(skip_serializing_if = "FieldPatch::is_noop")]
542 : pub min_resident_size_override: FieldPatch<u64>,
543 : #[serde(skip_serializing_if = "FieldPatch::is_noop")]
544 : pub evictions_low_residence_duration_metric_threshold: FieldPatch<String>,
545 : #[serde(skip_serializing_if = "FieldPatch::is_noop")]
546 : pub heatmap_period: FieldPatch<String>,
547 : #[serde(skip_serializing_if = "FieldPatch::is_noop")]
548 : pub lazy_slru_download: FieldPatch<bool>,
549 : #[serde(skip_serializing_if = "FieldPatch::is_noop")]
550 : pub timeline_get_throttle: FieldPatch<ThrottleConfig>,
551 : #[serde(skip_serializing_if = "FieldPatch::is_noop")]
552 : pub image_layer_creation_check_threshold: FieldPatch<u8>,
553 : #[serde(skip_serializing_if = "FieldPatch::is_noop")]
554 : pub image_creation_preempt_threshold: FieldPatch<usize>,
555 : #[serde(skip_serializing_if = "FieldPatch::is_noop")]
556 : pub lsn_lease_length: FieldPatch<String>,
557 : #[serde(skip_serializing_if = "FieldPatch::is_noop")]
558 : pub lsn_lease_length_for_ts: FieldPatch<String>,
559 : #[serde(skip_serializing_if = "FieldPatch::is_noop")]
560 : pub timeline_offloading: FieldPatch<bool>,
561 : #[serde(skip_serializing_if = "FieldPatch::is_noop")]
562 : pub wal_receiver_protocol_override: FieldPatch<PostgresClientProtocol>,
563 : #[serde(skip_serializing_if = "FieldPatch::is_noop")]
564 : pub rel_size_v2_enabled: FieldPatch<bool>,
565 : #[serde(skip_serializing_if = "FieldPatch::is_noop")]
566 : pub gc_compaction_enabled: FieldPatch<bool>,
567 : #[serde(skip_serializing_if = "FieldPatch::is_noop")]
568 : pub gc_compaction_initial_threshold_kb: FieldPatch<u64>,
569 : #[serde(skip_serializing_if = "FieldPatch::is_noop")]
570 : pub gc_compaction_ratio_percent: FieldPatch<u64>,
571 : }
572 :
573 : /// Like [`crate::config::TenantConfigToml`], but preserves the information
574 : /// about which parameters are set and which are not.
575 : ///
576 : /// Used in many places, including durably stored ones.
577 8 : #[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize, Default)]
578 : #[serde(default)] // this maps omitted fields in deserialization to None
579 : pub struct TenantConfig {
580 : #[serde(skip_serializing_if = "Option::is_none")]
581 : pub checkpoint_distance: Option<u64>,
582 :
583 : #[serde(skip_serializing_if = "Option::is_none")]
584 : #[serde(with = "humantime_serde")]
585 : pub checkpoint_timeout: Option<Duration>,
586 :
587 : #[serde(skip_serializing_if = "Option::is_none")]
588 : pub compaction_target_size: Option<u64>,
589 :
590 : #[serde(skip_serializing_if = "Option::is_none")]
591 : #[serde(with = "humantime_serde")]
592 : pub compaction_period: Option<Duration>,
593 :
594 : #[serde(skip_serializing_if = "Option::is_none")]
595 : pub compaction_threshold: Option<usize>,
596 :
597 : #[serde(skip_serializing_if = "Option::is_none")]
598 : pub compaction_upper_limit: Option<usize>,
599 :
600 : #[serde(skip_serializing_if = "Option::is_none")]
601 : pub compaction_algorithm: Option<CompactionAlgorithmSettings>,
602 :
603 : #[serde(skip_serializing_if = "Option::is_none")]
604 : pub compaction_l0_first: Option<bool>,
605 :
606 : #[serde(skip_serializing_if = "Option::is_none")]
607 : pub compaction_l0_semaphore: Option<bool>,
608 :
609 : #[serde(skip_serializing_if = "Option::is_none")]
610 : pub l0_flush_delay_threshold: Option<usize>,
611 :
612 : #[serde(skip_serializing_if = "Option::is_none")]
613 : pub l0_flush_stall_threshold: Option<usize>,
614 :
615 : #[serde(skip_serializing_if = "Option::is_none")]
616 : pub gc_horizon: Option<u64>,
617 :
618 : #[serde(skip_serializing_if = "Option::is_none")]
619 : #[serde(with = "humantime_serde")]
620 : pub gc_period: Option<Duration>,
621 :
622 : #[serde(skip_serializing_if = "Option::is_none")]
623 : pub image_creation_threshold: Option<usize>,
624 :
625 : #[serde(skip_serializing_if = "Option::is_none")]
626 : #[serde(with = "humantime_serde")]
627 : pub pitr_interval: Option<Duration>,
628 :
629 : #[serde(skip_serializing_if = "Option::is_none")]
630 : #[serde(with = "humantime_serde")]
631 : pub walreceiver_connect_timeout: Option<Duration>,
632 :
633 : #[serde(skip_serializing_if = "Option::is_none")]
634 : #[serde(with = "humantime_serde")]
635 : pub lagging_wal_timeout: Option<Duration>,
636 :
637 : #[serde(skip_serializing_if = "Option::is_none")]
638 : pub max_lsn_wal_lag: Option<NonZeroU64>,
639 :
640 : #[serde(skip_serializing_if = "Option::is_none")]
641 : pub eviction_policy: Option<EvictionPolicy>,
642 :
643 : #[serde(skip_serializing_if = "Option::is_none")]
644 : pub min_resident_size_override: Option<u64>,
645 :
646 : #[serde(skip_serializing_if = "Option::is_none")]
647 : #[serde(with = "humantime_serde")]
648 : pub evictions_low_residence_duration_metric_threshold: Option<Duration>,
649 :
650 : #[serde(skip_serializing_if = "Option::is_none")]
651 : #[serde(with = "humantime_serde")]
652 : pub heatmap_period: Option<Duration>,
653 :
654 : #[serde(skip_serializing_if = "Option::is_none")]
655 : pub lazy_slru_download: Option<bool>,
656 :
657 : #[serde(skip_serializing_if = "Option::is_none")]
658 : pub timeline_get_throttle: Option<ThrottleConfig>,
659 :
660 : #[serde(skip_serializing_if = "Option::is_none")]
661 : pub image_layer_creation_check_threshold: Option<u8>,
662 :
663 : #[serde(skip_serializing_if = "Option::is_none")]
664 : pub image_creation_preempt_threshold: Option<usize>,
665 :
666 : #[serde(skip_serializing_if = "Option::is_none")]
667 : #[serde(with = "humantime_serde")]
668 : pub lsn_lease_length: Option<Duration>,
669 :
670 : #[serde(skip_serializing_if = "Option::is_none")]
671 : #[serde(with = "humantime_serde")]
672 : pub lsn_lease_length_for_ts: Option<Duration>,
673 :
674 : #[serde(skip_serializing_if = "Option::is_none")]
675 : pub timeline_offloading: Option<bool>,
676 :
677 : #[serde(skip_serializing_if = "Option::is_none")]
678 : pub wal_receiver_protocol_override: Option<PostgresClientProtocol>,
679 :
680 : #[serde(skip_serializing_if = "Option::is_none")]
681 : pub rel_size_v2_enabled: Option<bool>,
682 :
683 : #[serde(skip_serializing_if = "Option::is_none")]
684 : pub gc_compaction_enabled: Option<bool>,
685 :
686 : #[serde(skip_serializing_if = "Option::is_none")]
687 : pub gc_compaction_initial_threshold_kb: Option<u64>,
688 :
689 : #[serde(skip_serializing_if = "Option::is_none")]
690 : pub gc_compaction_ratio_percent: Option<u64>,
691 : }
692 :
693 : impl TenantConfig {
694 1 : pub fn apply_patch(
695 1 : self,
696 1 : patch: TenantConfigPatch,
697 1 : ) -> Result<TenantConfig, humantime::DurationError> {
698 1 : let Self {
699 1 : mut checkpoint_distance,
700 1 : mut checkpoint_timeout,
701 1 : mut compaction_target_size,
702 1 : mut compaction_period,
703 1 : mut compaction_threshold,
704 1 : mut compaction_upper_limit,
705 1 : mut compaction_algorithm,
706 1 : mut compaction_l0_first,
707 1 : mut compaction_l0_semaphore,
708 1 : mut l0_flush_delay_threshold,
709 1 : mut l0_flush_stall_threshold,
710 1 : mut gc_horizon,
711 1 : mut gc_period,
712 1 : mut image_creation_threshold,
713 1 : mut pitr_interval,
714 1 : mut walreceiver_connect_timeout,
715 1 : mut lagging_wal_timeout,
716 1 : mut max_lsn_wal_lag,
717 1 : mut eviction_policy,
718 1 : mut min_resident_size_override,
719 1 : mut evictions_low_residence_duration_metric_threshold,
720 1 : mut heatmap_period,
721 1 : mut lazy_slru_download,
722 1 : mut timeline_get_throttle,
723 1 : mut image_layer_creation_check_threshold,
724 1 : mut image_creation_preempt_threshold,
725 1 : mut lsn_lease_length,
726 1 : mut lsn_lease_length_for_ts,
727 1 : mut timeline_offloading,
728 1 : mut wal_receiver_protocol_override,
729 1 : mut rel_size_v2_enabled,
730 1 : mut gc_compaction_enabled,
731 1 : mut gc_compaction_initial_threshold_kb,
732 1 : mut gc_compaction_ratio_percent,
733 1 : } = self;
734 1 :
735 1 : patch.checkpoint_distance.apply(&mut checkpoint_distance);
736 1 : patch
737 1 : .checkpoint_timeout
738 1 : .map(|v| humantime::parse_duration(&v))?
739 1 : .apply(&mut checkpoint_timeout);
740 1 : patch
741 1 : .compaction_target_size
742 1 : .apply(&mut compaction_target_size);
743 1 : patch
744 1 : .compaction_period
745 1 : .map(|v| humantime::parse_duration(&v))?
746 1 : .apply(&mut compaction_period);
747 1 : patch.compaction_threshold.apply(&mut compaction_threshold);
748 1 : patch
749 1 : .compaction_upper_limit
750 1 : .apply(&mut compaction_upper_limit);
751 1 : patch.compaction_algorithm.apply(&mut compaction_algorithm);
752 1 : patch.compaction_l0_first.apply(&mut compaction_l0_first);
753 1 : patch
754 1 : .compaction_l0_semaphore
755 1 : .apply(&mut compaction_l0_semaphore);
756 1 : patch
757 1 : .l0_flush_delay_threshold
758 1 : .apply(&mut l0_flush_delay_threshold);
759 1 : patch
760 1 : .l0_flush_stall_threshold
761 1 : .apply(&mut l0_flush_stall_threshold);
762 1 : patch.gc_horizon.apply(&mut gc_horizon);
763 1 : patch
764 1 : .gc_period
765 1 : .map(|v| humantime::parse_duration(&v))?
766 1 : .apply(&mut gc_period);
767 1 : patch
768 1 : .image_creation_threshold
769 1 : .apply(&mut image_creation_threshold);
770 1 : patch
771 1 : .pitr_interval
772 1 : .map(|v| humantime::parse_duration(&v))?
773 1 : .apply(&mut pitr_interval);
774 1 : patch
775 1 : .walreceiver_connect_timeout
776 1 : .map(|v| humantime::parse_duration(&v))?
777 1 : .apply(&mut walreceiver_connect_timeout);
778 1 : patch
779 1 : .lagging_wal_timeout
780 1 : .map(|v| humantime::parse_duration(&v))?
781 1 : .apply(&mut lagging_wal_timeout);
782 1 : patch.max_lsn_wal_lag.apply(&mut max_lsn_wal_lag);
783 1 : patch.eviction_policy.apply(&mut eviction_policy);
784 1 : patch
785 1 : .min_resident_size_override
786 1 : .apply(&mut min_resident_size_override);
787 1 : patch
788 1 : .evictions_low_residence_duration_metric_threshold
789 1 : .map(|v| humantime::parse_duration(&v))?
790 1 : .apply(&mut evictions_low_residence_duration_metric_threshold);
791 1 : patch
792 1 : .heatmap_period
793 1 : .map(|v| humantime::parse_duration(&v))?
794 1 : .apply(&mut heatmap_period);
795 1 : patch.lazy_slru_download.apply(&mut lazy_slru_download);
796 1 : patch
797 1 : .timeline_get_throttle
798 1 : .apply(&mut timeline_get_throttle);
799 1 : patch
800 1 : .image_layer_creation_check_threshold
801 1 : .apply(&mut image_layer_creation_check_threshold);
802 1 : patch
803 1 : .image_creation_preempt_threshold
804 1 : .apply(&mut image_creation_preempt_threshold);
805 1 : patch
806 1 : .lsn_lease_length
807 1 : .map(|v| humantime::parse_duration(&v))?
808 1 : .apply(&mut lsn_lease_length);
809 1 : patch
810 1 : .lsn_lease_length_for_ts
811 1 : .map(|v| humantime::parse_duration(&v))?
812 1 : .apply(&mut lsn_lease_length_for_ts);
813 1 : patch.timeline_offloading.apply(&mut timeline_offloading);
814 1 : patch
815 1 : .wal_receiver_protocol_override
816 1 : .apply(&mut wal_receiver_protocol_override);
817 1 : patch.rel_size_v2_enabled.apply(&mut rel_size_v2_enabled);
818 1 : patch
819 1 : .gc_compaction_enabled
820 1 : .apply(&mut gc_compaction_enabled);
821 1 : patch
822 1 : .gc_compaction_initial_threshold_kb
823 1 : .apply(&mut gc_compaction_initial_threshold_kb);
824 1 : patch
825 1 : .gc_compaction_ratio_percent
826 1 : .apply(&mut gc_compaction_ratio_percent);
827 1 :
828 1 : Ok(Self {
829 1 : checkpoint_distance,
830 1 : checkpoint_timeout,
831 1 : compaction_target_size,
832 1 : compaction_period,
833 1 : compaction_threshold,
834 1 : compaction_upper_limit,
835 1 : compaction_algorithm,
836 1 : compaction_l0_first,
837 1 : compaction_l0_semaphore,
838 1 : l0_flush_delay_threshold,
839 1 : l0_flush_stall_threshold,
840 1 : gc_horizon,
841 1 : gc_period,
842 1 : image_creation_threshold,
843 1 : pitr_interval,
844 1 : walreceiver_connect_timeout,
845 1 : lagging_wal_timeout,
846 1 : max_lsn_wal_lag,
847 1 : eviction_policy,
848 1 : min_resident_size_override,
849 1 : evictions_low_residence_duration_metric_threshold,
850 1 : heatmap_period,
851 1 : lazy_slru_download,
852 1 : timeline_get_throttle,
853 1 : image_layer_creation_check_threshold,
854 1 : image_creation_preempt_threshold,
855 1 : lsn_lease_length,
856 1 : lsn_lease_length_for_ts,
857 1 : timeline_offloading,
858 1 : wal_receiver_protocol_override,
859 1 : rel_size_v2_enabled,
860 1 : gc_compaction_enabled,
861 1 : gc_compaction_initial_threshold_kb,
862 1 : gc_compaction_ratio_percent,
863 1 : })
864 1 : }
865 :
866 0 : pub fn merge(
867 0 : &self,
868 0 : global_conf: crate::config::TenantConfigToml,
869 0 : ) -> crate::config::TenantConfigToml {
870 0 : crate::config::TenantConfigToml {
871 0 : checkpoint_distance: self
872 0 : .checkpoint_distance
873 0 : .unwrap_or(global_conf.checkpoint_distance),
874 0 : checkpoint_timeout: self
875 0 : .checkpoint_timeout
876 0 : .unwrap_or(global_conf.checkpoint_timeout),
877 0 : compaction_target_size: self
878 0 : .compaction_target_size
879 0 : .unwrap_or(global_conf.compaction_target_size),
880 0 : compaction_period: self
881 0 : .compaction_period
882 0 : .unwrap_or(global_conf.compaction_period),
883 0 : compaction_threshold: self
884 0 : .compaction_threshold
885 0 : .unwrap_or(global_conf.compaction_threshold),
886 0 : compaction_upper_limit: self
887 0 : .compaction_upper_limit
888 0 : .unwrap_or(global_conf.compaction_upper_limit),
889 0 : compaction_algorithm: self
890 0 : .compaction_algorithm
891 0 : .as_ref()
892 0 : .unwrap_or(&global_conf.compaction_algorithm)
893 0 : .clone(),
894 0 : compaction_l0_first: self
895 0 : .compaction_l0_first
896 0 : .unwrap_or(global_conf.compaction_l0_first),
897 0 : compaction_l0_semaphore: self
898 0 : .compaction_l0_semaphore
899 0 : .unwrap_or(global_conf.compaction_l0_semaphore),
900 0 : l0_flush_delay_threshold: self
901 0 : .l0_flush_delay_threshold
902 0 : .or(global_conf.l0_flush_delay_threshold),
903 0 : l0_flush_stall_threshold: self
904 0 : .l0_flush_stall_threshold
905 0 : .or(global_conf.l0_flush_stall_threshold),
906 0 : gc_horizon: self.gc_horizon.unwrap_or(global_conf.gc_horizon),
907 0 : gc_period: self.gc_period.unwrap_or(global_conf.gc_period),
908 0 : image_creation_threshold: self
909 0 : .image_creation_threshold
910 0 : .unwrap_or(global_conf.image_creation_threshold),
911 0 : pitr_interval: self.pitr_interval.unwrap_or(global_conf.pitr_interval),
912 0 : walreceiver_connect_timeout: self
913 0 : .walreceiver_connect_timeout
914 0 : .unwrap_or(global_conf.walreceiver_connect_timeout),
915 0 : lagging_wal_timeout: self
916 0 : .lagging_wal_timeout
917 0 : .unwrap_or(global_conf.lagging_wal_timeout),
918 0 : max_lsn_wal_lag: self.max_lsn_wal_lag.unwrap_or(global_conf.max_lsn_wal_lag),
919 0 : eviction_policy: self.eviction_policy.unwrap_or(global_conf.eviction_policy),
920 0 : min_resident_size_override: self
921 0 : .min_resident_size_override
922 0 : .or(global_conf.min_resident_size_override),
923 0 : evictions_low_residence_duration_metric_threshold: self
924 0 : .evictions_low_residence_duration_metric_threshold
925 0 : .unwrap_or(global_conf.evictions_low_residence_duration_metric_threshold),
926 0 : heatmap_period: self.heatmap_period.unwrap_or(global_conf.heatmap_period),
927 0 : lazy_slru_download: self
928 0 : .lazy_slru_download
929 0 : .unwrap_or(global_conf.lazy_slru_download),
930 0 : timeline_get_throttle: self
931 0 : .timeline_get_throttle
932 0 : .clone()
933 0 : .unwrap_or(global_conf.timeline_get_throttle),
934 0 : image_layer_creation_check_threshold: self
935 0 : .image_layer_creation_check_threshold
936 0 : .unwrap_or(global_conf.image_layer_creation_check_threshold),
937 0 : image_creation_preempt_threshold: self
938 0 : .image_creation_preempt_threshold
939 0 : .unwrap_or(global_conf.image_creation_preempt_threshold),
940 0 : lsn_lease_length: self
941 0 : .lsn_lease_length
942 0 : .unwrap_or(global_conf.lsn_lease_length),
943 0 : lsn_lease_length_for_ts: self
944 0 : .lsn_lease_length_for_ts
945 0 : .unwrap_or(global_conf.lsn_lease_length_for_ts),
946 0 : timeline_offloading: self
947 0 : .timeline_offloading
948 0 : .unwrap_or(global_conf.timeline_offloading),
949 0 : wal_receiver_protocol_override: self
950 0 : .wal_receiver_protocol_override
951 0 : .or(global_conf.wal_receiver_protocol_override),
952 0 : rel_size_v2_enabled: self
953 0 : .rel_size_v2_enabled
954 0 : .unwrap_or(global_conf.rel_size_v2_enabled),
955 0 : gc_compaction_enabled: self
956 0 : .gc_compaction_enabled
957 0 : .unwrap_or(global_conf.gc_compaction_enabled),
958 0 : gc_compaction_initial_threshold_kb: self
959 0 : .gc_compaction_initial_threshold_kb
960 0 : .unwrap_or(global_conf.gc_compaction_initial_threshold_kb),
961 0 : gc_compaction_ratio_percent: self
962 0 : .gc_compaction_ratio_percent
963 0 : .unwrap_or(global_conf.gc_compaction_ratio_percent),
964 0 : }
965 0 : }
966 : }
967 :
968 : /// The policy for the aux file storage.
969 : ///
970 : /// It can be switched through `switch_aux_file_policy` tenant config.
971 : /// When the first aux file written, the policy will be persisted in the
972 : /// `index_part.json` file and has a limited migration path.
973 : ///
974 : /// Currently, we only allow the following migration path:
975 : ///
976 : /// Unset -> V1
977 : /// -> V2
978 : /// -> CrossValidation -> V2
979 : #[derive(
980 : Eq,
981 : PartialEq,
982 : Debug,
983 : Copy,
984 : Clone,
985 0 : strum_macros::EnumString,
986 : strum_macros::Display,
987 4 : serde_with::DeserializeFromStr,
988 : serde_with::SerializeDisplay,
989 : )]
990 : #[strum(serialize_all = "kebab-case")]
991 : pub enum AuxFilePolicy {
992 : /// V1 aux file policy: store everything in AUX_FILE_KEY
993 : #[strum(ascii_case_insensitive)]
994 : V1,
995 : /// V2 aux file policy: store in the AUX_FILE keyspace
996 : #[strum(ascii_case_insensitive)]
997 : V2,
998 : /// Cross validation runs both formats on the write path and does validation
999 : /// on the read path.
1000 : #[strum(ascii_case_insensitive)]
1001 : CrossValidation,
1002 : }
1003 :
1004 0 : #[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize)]
1005 : #[serde(tag = "kind")]
1006 : pub enum EvictionPolicy {
1007 : NoEviction,
1008 : LayerAccessThreshold(EvictionPolicyLayerAccessThreshold),
1009 : OnlyImitiate(EvictionPolicyLayerAccessThreshold),
1010 : }
1011 :
1012 : impl EvictionPolicy {
1013 0 : pub fn discriminant_str(&self) -> &'static str {
1014 0 : match self {
1015 0 : EvictionPolicy::NoEviction => "NoEviction",
1016 0 : EvictionPolicy::LayerAccessThreshold(_) => "LayerAccessThreshold",
1017 0 : EvictionPolicy::OnlyImitiate(_) => "OnlyImitiate",
1018 : }
1019 0 : }
1020 : }
1021 :
1022 : #[derive(
1023 : Eq,
1024 : PartialEq,
1025 : Debug,
1026 : Copy,
1027 : Clone,
1028 0 : strum_macros::EnumString,
1029 : strum_macros::Display,
1030 0 : serde_with::DeserializeFromStr,
1031 : serde_with::SerializeDisplay,
1032 : )]
1033 : #[strum(serialize_all = "kebab-case")]
1034 : pub enum CompactionAlgorithm {
1035 : Legacy,
1036 : Tiered,
1037 : }
1038 :
1039 : #[derive(
1040 4 : Debug, Clone, Copy, PartialEq, Eq, serde_with::DeserializeFromStr, serde_with::SerializeDisplay,
1041 : )]
1042 : pub enum ImageCompressionAlgorithm {
1043 : // Disabled for writes, support decompressing during read path
1044 : Disabled,
1045 : /// Zstandard compression. Level 0 means and None mean the same (default level). Levels can be negative as well.
1046 : /// For details, see the [manual](http://facebook.github.io/zstd/zstd_manual.html).
1047 : Zstd {
1048 : level: Option<i8>,
1049 : },
1050 : }
1051 :
1052 : impl FromStr for ImageCompressionAlgorithm {
1053 : type Err = anyhow::Error;
1054 8 : fn from_str(s: &str) -> Result<Self, Self::Err> {
1055 8 : let mut components = s.split(['(', ')']);
1056 8 : let first = components
1057 8 : .next()
1058 8 : .ok_or_else(|| anyhow::anyhow!("empty string"))?;
1059 8 : match first {
1060 8 : "disabled" => Ok(ImageCompressionAlgorithm::Disabled),
1061 6 : "zstd" => {
1062 6 : let level = if let Some(v) = components.next() {
1063 4 : let v: i8 = v.parse()?;
1064 4 : Some(v)
1065 : } else {
1066 2 : None
1067 : };
1068 :
1069 6 : Ok(ImageCompressionAlgorithm::Zstd { level })
1070 : }
1071 0 : _ => anyhow::bail!("invalid specifier '{first}'"),
1072 : }
1073 8 : }
1074 : }
1075 :
1076 : impl Display for ImageCompressionAlgorithm {
1077 12 : fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
1078 12 : match self {
1079 3 : ImageCompressionAlgorithm::Disabled => write!(f, "disabled"),
1080 9 : ImageCompressionAlgorithm::Zstd { level } => {
1081 9 : if let Some(level) = level {
1082 6 : write!(f, "zstd({})", level)
1083 : } else {
1084 3 : write!(f, "zstd")
1085 : }
1086 : }
1087 : }
1088 12 : }
1089 : }
1090 :
1091 0 : #[derive(Eq, PartialEq, Debug, Clone, Serialize, Deserialize)]
1092 : pub struct CompactionAlgorithmSettings {
1093 : pub kind: CompactionAlgorithm,
1094 : }
1095 :
1096 8 : #[derive(Debug, PartialEq, Eq, Clone, Deserialize, Serialize)]
1097 : #[serde(tag = "mode", rename_all = "kebab-case", deny_unknown_fields)]
1098 : pub enum L0FlushConfig {
1099 : #[serde(rename_all = "snake_case")]
1100 : Direct { max_concurrency: NonZeroUsize },
1101 : }
1102 :
1103 0 : #[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize)]
1104 : pub struct EvictionPolicyLayerAccessThreshold {
1105 : #[serde(with = "humantime_serde")]
1106 : pub period: Duration,
1107 : #[serde(with = "humantime_serde")]
1108 : pub threshold: Duration,
1109 : }
1110 :
1111 6 : #[derive(Debug, Serialize, Deserialize, Clone, PartialEq, Eq)]
1112 : pub struct ThrottleConfig {
1113 : /// See [`ThrottleConfigTaskKinds`] for why we do the serde `rename`.
1114 : #[serde(rename = "task_kinds")]
1115 : pub enabled: ThrottleConfigTaskKinds,
1116 : pub initial: u32,
1117 : #[serde(with = "humantime_serde")]
1118 : pub refill_interval: Duration,
1119 : pub refill_amount: NonZeroU32,
1120 : pub max: u32,
1121 : }
1122 :
1123 : /// Before <https://github.com/neondatabase/neon/pull/9962>
1124 : /// the throttle was a per `Timeline::get`/`Timeline::get_vectored` call.
1125 : /// The `task_kinds` field controlled which Pageserver "Task Kind"s
1126 : /// were subject to the throttle.
1127 : ///
1128 : /// After that PR, the throttle is applied at pagestream request level
1129 : /// and the `task_kinds` field does not apply since the only task kind
1130 : /// that us subject to the throttle is that of the page service.
1131 : ///
1132 : /// However, we don't want to make a breaking config change right now
1133 : /// because it means we have to migrate all the tenant configs.
1134 : /// This will be done in a future PR.
1135 : ///
1136 : /// In the meantime, we use emptiness / non-emptsiness of the `task_kinds`
1137 : /// field to determine if the throttle is enabled or not.
1138 1 : #[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq)]
1139 : #[serde(transparent)]
1140 : pub struct ThrottleConfigTaskKinds(Vec<String>);
1141 :
1142 : impl ThrottleConfigTaskKinds {
1143 489 : pub fn disabled() -> Self {
1144 489 : Self(vec![])
1145 489 : }
1146 454 : pub fn is_enabled(&self) -> bool {
1147 454 : !self.0.is_empty()
1148 454 : }
1149 : }
1150 :
1151 : impl ThrottleConfig {
1152 489 : pub fn disabled() -> Self {
1153 489 : Self {
1154 489 : enabled: ThrottleConfigTaskKinds::disabled(),
1155 489 : // other values don't matter with emtpy `task_kinds`.
1156 489 : initial: 0,
1157 489 : refill_interval: Duration::from_millis(1),
1158 489 : refill_amount: NonZeroU32::new(1).unwrap(),
1159 489 : max: 1,
1160 489 : }
1161 489 : }
1162 : /// The requests per second allowed by the given config.
1163 0 : pub fn steady_rps(&self) -> f64 {
1164 0 : (self.refill_amount.get() as f64) / (self.refill_interval.as_secs_f64())
1165 0 : }
1166 : }
1167 :
1168 : #[cfg(test)]
1169 : mod throttle_config_tests {
1170 : use super::*;
1171 :
1172 : #[test]
1173 1 : fn test_disabled_is_disabled() {
1174 1 : let config = ThrottleConfig::disabled();
1175 1 : assert!(!config.enabled.is_enabled());
1176 1 : }
1177 : #[test]
1178 1 : fn test_enabled_backwards_compat() {
1179 1 : let input = serde_json::json!({
1180 1 : "task_kinds": ["PageRequestHandler"],
1181 1 : "initial": 40000,
1182 1 : "refill_interval": "50ms",
1183 1 : "refill_amount": 1000,
1184 1 : "max": 40000,
1185 1 : "fair": true
1186 1 : });
1187 1 : let config: ThrottleConfig = serde_json::from_value(input).unwrap();
1188 1 : assert!(config.enabled.is_enabled());
1189 1 : }
1190 : }
1191 :
1192 : /// A flattened analog of a `pagesever::tenant::LocationMode`, which
1193 : /// lists out all possible states (and the virtual "Detached" state)
1194 : /// in a flat form rather than using rust-style enums.
1195 0 : #[derive(Serialize, Deserialize, Debug, Clone, Copy, Eq, PartialEq)]
1196 : pub enum LocationConfigMode {
1197 : AttachedSingle,
1198 : AttachedMulti,
1199 : AttachedStale,
1200 : Secondary,
1201 : Detached,
1202 : }
1203 :
1204 0 : #[derive(Serialize, Deserialize, Debug, Clone, Eq, PartialEq)]
1205 : pub struct LocationConfigSecondary {
1206 : pub warm: bool,
1207 : }
1208 :
1209 : /// An alternative representation of `pageserver::tenant::LocationConf`,
1210 : /// for use in external-facing APIs.
1211 0 : #[derive(Serialize, Deserialize, Debug, Clone, Eq, PartialEq)]
1212 : pub struct LocationConfig {
1213 : pub mode: LocationConfigMode,
1214 : /// If attaching, in what generation?
1215 : #[serde(default)]
1216 : pub generation: Option<u32>,
1217 :
1218 : // If requesting mode `Secondary`, configuration for that.
1219 : #[serde(default)]
1220 : pub secondary_conf: Option<LocationConfigSecondary>,
1221 :
1222 : // Shard parameters: if shard_count is nonzero, then other shard_* fields
1223 : // must be set accurately.
1224 : #[serde(default)]
1225 : pub shard_number: u8,
1226 : #[serde(default)]
1227 : pub shard_count: u8,
1228 : #[serde(default)]
1229 : pub shard_stripe_size: u32,
1230 :
1231 : // This configuration only affects attached mode, but should be provided irrespective
1232 : // of the mode, as a secondary location might transition on startup if the response
1233 : // to the `/re-attach` control plane API requests it.
1234 : pub tenant_conf: TenantConfig,
1235 : }
1236 :
1237 0 : #[derive(Serialize, Deserialize)]
1238 : pub struct LocationConfigListResponse {
1239 : pub tenant_shards: Vec<(TenantShardId, Option<LocationConfig>)>,
1240 : }
1241 :
1242 : #[derive(Serialize)]
1243 : pub struct StatusResponse {
1244 : pub id: NodeId,
1245 : }
1246 :
1247 0 : #[derive(Serialize, Deserialize, Debug)]
1248 : #[serde(deny_unknown_fields)]
1249 : pub struct TenantLocationConfigRequest {
1250 : #[serde(flatten)]
1251 : pub config: LocationConfig, // as we have a flattened field, we should reject all unknown fields in it
1252 : }
1253 :
1254 0 : #[derive(Serialize, Deserialize, Debug)]
1255 : #[serde(deny_unknown_fields)]
1256 : pub struct TenantTimeTravelRequest {
1257 : pub shard_counts: Vec<ShardCount>,
1258 : }
1259 :
1260 0 : #[derive(Serialize, Deserialize, Debug)]
1261 : #[serde(deny_unknown_fields)]
1262 : pub struct TenantShardLocation {
1263 : pub shard_id: TenantShardId,
1264 : pub node_id: NodeId,
1265 : }
1266 :
1267 0 : #[derive(Serialize, Deserialize, Debug)]
1268 : #[serde(deny_unknown_fields)]
1269 : pub struct TenantLocationConfigResponse {
1270 : pub shards: Vec<TenantShardLocation>,
1271 : // If the shards' ShardCount count is >1, stripe_size will be set.
1272 : pub stripe_size: Option<ShardStripeSize>,
1273 : }
1274 :
1275 2 : #[derive(Serialize, Deserialize, Debug)]
1276 : #[serde(deny_unknown_fields)]
1277 : pub struct TenantConfigRequest {
1278 : pub tenant_id: TenantId,
1279 : #[serde(flatten)]
1280 : pub config: TenantConfig, // as we have a flattened field, we should reject all unknown fields in it
1281 : }
1282 :
1283 : impl std::ops::Deref for TenantConfigRequest {
1284 : type Target = TenantConfig;
1285 :
1286 0 : fn deref(&self) -> &Self::Target {
1287 0 : &self.config
1288 0 : }
1289 : }
1290 :
1291 : impl TenantConfigRequest {
1292 0 : pub fn new(tenant_id: TenantId) -> TenantConfigRequest {
1293 0 : let config = TenantConfig::default();
1294 0 : TenantConfigRequest { tenant_id, config }
1295 0 : }
1296 : }
1297 :
1298 3 : #[derive(Serialize, Deserialize, Debug)]
1299 : #[serde(deny_unknown_fields)]
1300 : pub struct TenantConfigPatchRequest {
1301 : pub tenant_id: TenantId,
1302 : #[serde(flatten)]
1303 : pub config: TenantConfigPatch, // as we have a flattened field, we should reject all unknown fields in it
1304 : }
1305 :
1306 0 : #[derive(Serialize, Deserialize, Debug)]
1307 : pub struct TenantWaitLsnRequest {
1308 : #[serde(flatten)]
1309 : pub timelines: HashMap<TimelineId, Lsn>,
1310 : pub timeout: Duration,
1311 : }
1312 :
1313 : /// See [`TenantState::attachment_status`] and the OpenAPI docs for context.
1314 0 : #[derive(Serialize, Deserialize, Clone)]
1315 : #[serde(tag = "slug", content = "data", rename_all = "snake_case")]
1316 : pub enum TenantAttachmentStatus {
1317 : Maybe,
1318 : Attached,
1319 : Failed { reason: String },
1320 : }
1321 :
1322 0 : #[derive(Serialize, Deserialize, Clone)]
1323 : pub struct TenantInfo {
1324 : pub id: TenantShardId,
1325 : // NB: intentionally not part of OpenAPI, we don't want to commit to a specific set of TenantState's
1326 : pub state: TenantState,
1327 : /// Sum of the size of all layer files.
1328 : /// If a layer is present in both local FS and S3, it counts only once.
1329 : pub current_physical_size: Option<u64>, // physical size is only included in `tenant_status` endpoint
1330 : pub attachment_status: TenantAttachmentStatus,
1331 : pub generation: u32,
1332 :
1333 : /// Opaque explanation if gc is being blocked.
1334 : ///
1335 : /// Only looked up for the individual tenant detail, not the listing.
1336 : #[serde(skip_serializing_if = "Option::is_none")]
1337 : pub gc_blocking: Option<String>,
1338 : }
1339 :
1340 0 : #[derive(Serialize, Deserialize, Clone)]
1341 : pub struct TenantDetails {
1342 : #[serde(flatten)]
1343 : pub tenant_info: TenantInfo,
1344 :
1345 : pub walredo: Option<WalRedoManagerStatus>,
1346 :
1347 : pub timelines: Vec<TimelineId>,
1348 : }
1349 :
1350 0 : #[derive(Serialize, Deserialize, PartialEq, Eq, Clone, Copy, Debug)]
1351 : pub enum TimelineArchivalState {
1352 : Archived,
1353 : Unarchived,
1354 : }
1355 :
1356 0 : #[derive(Serialize, Deserialize, PartialEq, Eq, Clone)]
1357 : pub enum TimelineVisibilityState {
1358 : Visible,
1359 : Invisible,
1360 : }
1361 :
1362 0 : #[derive(Serialize, Deserialize, PartialEq, Eq, Clone)]
1363 : pub struct TimelineArchivalConfigRequest {
1364 : pub state: TimelineArchivalState,
1365 : }
1366 :
1367 0 : #[derive(Serialize, Deserialize, PartialEq, Eq, Clone)]
1368 : pub struct TimelinePatchIndexPartRequest {
1369 : pub rel_size_migration: Option<RelSizeMigration>,
1370 : pub gc_compaction_last_completed_lsn: Option<Lsn>,
1371 : pub applied_gc_cutoff_lsn: Option<Lsn>,
1372 : #[serde(default)]
1373 : pub force_index_update: bool,
1374 : }
1375 :
1376 0 : #[derive(Debug, Serialize, Deserialize, Clone)]
1377 : pub struct TimelinesInfoAndOffloaded {
1378 : pub timelines: Vec<TimelineInfo>,
1379 : pub offloaded: Vec<OffloadedTimelineInfo>,
1380 : }
1381 :
1382 : /// Analog of [`TimelineInfo`] for offloaded timelines.
1383 0 : #[derive(Debug, Serialize, Deserialize, Clone)]
1384 : pub struct OffloadedTimelineInfo {
1385 : pub tenant_id: TenantShardId,
1386 : pub timeline_id: TimelineId,
1387 : /// Whether the timeline has a parent it has been branched off from or not
1388 : pub ancestor_timeline_id: Option<TimelineId>,
1389 : /// Whether to retain the branch lsn at the ancestor or not
1390 : pub ancestor_retain_lsn: Option<Lsn>,
1391 : /// The time point when the timeline was archived
1392 : pub archived_at: chrono::DateTime<chrono::Utc>,
1393 : }
1394 :
1395 16 : #[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
1396 : #[serde(rename_all = "camelCase")]
1397 : pub enum RelSizeMigration {
1398 : /// The tenant is using the old rel_size format.
1399 : /// Note that this enum is persisted as `Option<RelSizeMigration>` in the index part, so
1400 : /// `None` is the same as `Some(RelSizeMigration::Legacy)`.
1401 : Legacy,
1402 : /// The tenant is migrating to the new rel_size format. Both old and new rel_size format are
1403 : /// persisted in the index part. The read path will read both formats and merge them.
1404 : Migrating,
1405 : /// The tenant has migrated to the new rel_size format. Only the new rel_size format is persisted
1406 : /// in the index part, and the read path will not read the old format.
1407 : Migrated,
1408 : }
1409 :
1410 : /// This represents the output of the "timeline_detail" and "timeline_list" API calls.
1411 0 : #[derive(Debug, Serialize, Deserialize, Clone)]
1412 : pub struct TimelineInfo {
1413 : pub tenant_id: TenantShardId,
1414 : pub timeline_id: TimelineId,
1415 :
1416 : pub ancestor_timeline_id: Option<TimelineId>,
1417 : pub ancestor_lsn: Option<Lsn>,
1418 : pub last_record_lsn: Lsn,
1419 : pub prev_record_lsn: Option<Lsn>,
1420 :
1421 : /// Legacy field, retained for one version to enable old storage controller to
1422 : /// decode (it was a mandatory field).
1423 : #[serde(default, rename = "latest_gc_cutoff_lsn")]
1424 : pub _unused: Lsn,
1425 :
1426 : /// The LSN up to which GC has advanced: older data may still exist but it is not available for clients.
1427 : /// This LSN is not suitable for deciding where to create branches etc: use [`TimelineInfo::min_readable_lsn`] instead,
1428 : /// as it is easier to reason about.
1429 : #[serde(default)]
1430 : pub applied_gc_cutoff_lsn: Lsn,
1431 :
1432 : /// The upper bound of data which is either already GC'ed, or elegible to be GC'ed at any time based on PITR interval.
1433 : /// This LSN represents the "end of history" for this timeline, and callers should use it to figure out the oldest
1434 : /// LSN at which it is legal to create a branch or ephemeral endpoint.
1435 : ///
1436 : /// Note that holders of valid LSN leases may be able to create branches and read pages earlier
1437 : /// than this LSN, but new leases may not be taken out earlier than this LSN.
1438 : #[serde(default)]
1439 : pub min_readable_lsn: Lsn,
1440 :
1441 : pub disk_consistent_lsn: Lsn,
1442 :
1443 : /// The LSN that we have succesfully uploaded to remote storage
1444 : pub remote_consistent_lsn: Lsn,
1445 :
1446 : /// The LSN that we are advertizing to safekeepers
1447 : pub remote_consistent_lsn_visible: Lsn,
1448 :
1449 : /// The LSN from the start of the root timeline (never changes)
1450 : pub initdb_lsn: Lsn,
1451 :
1452 : pub current_logical_size: u64,
1453 : pub current_logical_size_is_accurate: bool,
1454 :
1455 : pub directory_entries_counts: Vec<u64>,
1456 :
1457 : /// Sum of the size of all layer files.
1458 : /// If a layer is present in both local FS and S3, it counts only once.
1459 : pub current_physical_size: Option<u64>, // is None when timeline is Unloaded
1460 : pub current_logical_size_non_incremental: Option<u64>,
1461 :
1462 : /// How many bytes of WAL are within this branch's pitr_interval. If the pitr_interval goes
1463 : /// beyond the branch's branch point, we only count up to the branch point.
1464 : pub pitr_history_size: u64,
1465 :
1466 : /// Whether this branch's branch point is within its ancestor's PITR interval (i.e. any
1467 : /// ancestor data used by this branch would have been retained anyway). If this is false, then
1468 : /// this branch may be imposing a cost on the ancestor by causing it to retain layers that it would
1469 : /// otherwise be able to GC.
1470 : pub within_ancestor_pitr: bool,
1471 :
1472 : pub timeline_dir_layer_file_size_sum: Option<u64>,
1473 :
1474 : pub wal_source_connstr: Option<String>,
1475 : pub last_received_msg_lsn: Option<Lsn>,
1476 : /// the timestamp (in microseconds) of the last received message
1477 : pub last_received_msg_ts: Option<u128>,
1478 : pub pg_version: u32,
1479 :
1480 : pub state: TimelineState,
1481 :
1482 : pub walreceiver_status: String,
1483 :
1484 : // ALWAYS add new fields at the end of the struct with `Option` to ensure forward/backward compatibility.
1485 : // Backward compatibility: you will get a JSON not containing the newly-added field.
1486 : // Forward compatibility: a previous version of the pageserver will receive a JSON. serde::Deserialize does
1487 : // not deny unknown fields by default so it's safe to set the field to some value, though it won't be
1488 : // read.
1489 : /// Whether the timeline is archived.
1490 : pub is_archived: Option<bool>,
1491 :
1492 : /// The status of the rel_size migration.
1493 : pub rel_size_migration: Option<RelSizeMigration>,
1494 :
1495 : /// Whether the timeline is invisible in synthetic size calculations.
1496 : pub is_invisible: Option<bool>,
1497 : }
1498 :
1499 0 : #[derive(Debug, Clone, Serialize, Deserialize)]
1500 : pub struct LayerMapInfo {
1501 : pub in_memory_layers: Vec<InMemoryLayerInfo>,
1502 : pub historic_layers: Vec<HistoricLayerInfo>,
1503 : }
1504 :
1505 : /// The residence status of a layer
1506 0 : #[derive(Debug, Clone, Copy, Serialize, Deserialize)]
1507 : pub enum LayerResidenceStatus {
1508 : /// Residence status for a layer file that exists locally.
1509 : /// It may also exist on the remote, we don't care here.
1510 : Resident,
1511 : /// Residence status for a layer file that only exists on the remote.
1512 : Evicted,
1513 : }
1514 :
1515 : #[serde_as]
1516 0 : #[derive(Debug, Clone, Serialize, Deserialize)]
1517 : pub struct LayerAccessStats {
1518 : #[serde_as(as = "serde_with::TimestampMilliSeconds")]
1519 : pub access_time: SystemTime,
1520 :
1521 : #[serde_as(as = "serde_with::TimestampMilliSeconds")]
1522 : pub residence_time: SystemTime,
1523 :
1524 : pub visible: bool,
1525 : }
1526 :
1527 0 : #[derive(Debug, Clone, Serialize, Deserialize)]
1528 : #[serde(tag = "kind")]
1529 : pub enum InMemoryLayerInfo {
1530 : Open { lsn_start: Lsn },
1531 : Frozen { lsn_start: Lsn, lsn_end: Lsn },
1532 : }
1533 :
1534 0 : #[derive(Debug, Clone, Serialize, Deserialize)]
1535 : #[serde(tag = "kind")]
1536 : pub enum HistoricLayerInfo {
1537 : Delta {
1538 : layer_file_name: String,
1539 : layer_file_size: u64,
1540 :
1541 : lsn_start: Lsn,
1542 : lsn_end: Lsn,
1543 : remote: bool,
1544 : access_stats: LayerAccessStats,
1545 :
1546 : l0: bool,
1547 : },
1548 : Image {
1549 : layer_file_name: String,
1550 : layer_file_size: u64,
1551 :
1552 : lsn_start: Lsn,
1553 : remote: bool,
1554 : access_stats: LayerAccessStats,
1555 : },
1556 : }
1557 :
1558 : impl HistoricLayerInfo {
1559 0 : pub fn layer_file_name(&self) -> &str {
1560 0 : match self {
1561 : HistoricLayerInfo::Delta {
1562 0 : layer_file_name, ..
1563 0 : } => layer_file_name,
1564 : HistoricLayerInfo::Image {
1565 0 : layer_file_name, ..
1566 0 : } => layer_file_name,
1567 : }
1568 0 : }
1569 0 : pub fn is_remote(&self) -> bool {
1570 0 : match self {
1571 0 : HistoricLayerInfo::Delta { remote, .. } => *remote,
1572 0 : HistoricLayerInfo::Image { remote, .. } => *remote,
1573 : }
1574 0 : }
1575 0 : pub fn set_remote(&mut self, value: bool) {
1576 0 : let field = match self {
1577 0 : HistoricLayerInfo::Delta { remote, .. } => remote,
1578 0 : HistoricLayerInfo::Image { remote, .. } => remote,
1579 : };
1580 0 : *field = value;
1581 0 : }
1582 0 : pub fn layer_file_size(&self) -> u64 {
1583 0 : match self {
1584 : HistoricLayerInfo::Delta {
1585 0 : layer_file_size, ..
1586 0 : } => *layer_file_size,
1587 : HistoricLayerInfo::Image {
1588 0 : layer_file_size, ..
1589 0 : } => *layer_file_size,
1590 : }
1591 0 : }
1592 : }
1593 :
1594 0 : #[derive(Debug, Serialize, Deserialize)]
1595 : pub struct DownloadRemoteLayersTaskSpawnRequest {
1596 : pub max_concurrent_downloads: NonZeroUsize,
1597 : }
1598 :
1599 0 : #[derive(Debug, Serialize, Deserialize)]
1600 : pub struct IngestAuxFilesRequest {
1601 : pub aux_files: HashMap<String, String>,
1602 : }
1603 :
1604 0 : #[derive(Debug, Serialize, Deserialize)]
1605 : pub struct ListAuxFilesRequest {
1606 : pub lsn: Lsn,
1607 : }
1608 :
1609 0 : #[derive(Debug, Serialize, Deserialize, Clone)]
1610 : pub struct DownloadRemoteLayersTaskInfo {
1611 : pub task_id: String,
1612 : pub state: DownloadRemoteLayersTaskState,
1613 : pub total_layer_count: u64, // stable once `completed`
1614 : pub successful_download_count: u64, // stable once `completed`
1615 : pub failed_download_count: u64, // stable once `completed`
1616 : }
1617 :
1618 0 : #[derive(Debug, Serialize, Deserialize, Clone)]
1619 : pub enum DownloadRemoteLayersTaskState {
1620 : Running,
1621 : Completed,
1622 : ShutDown,
1623 : }
1624 :
1625 0 : #[derive(Debug, Serialize, Deserialize)]
1626 : pub struct TimelineGcRequest {
1627 : pub gc_horizon: Option<u64>,
1628 : }
1629 :
1630 0 : #[derive(Debug, Clone, Serialize, Deserialize)]
1631 : pub struct WalRedoManagerProcessStatus {
1632 : pub pid: u32,
1633 : }
1634 :
1635 0 : #[derive(Debug, Clone, Serialize, Deserialize)]
1636 : pub struct WalRedoManagerStatus {
1637 : pub last_redo_at: Option<chrono::DateTime<chrono::Utc>>,
1638 : pub process: Option<WalRedoManagerProcessStatus>,
1639 : }
1640 :
1641 : /// The progress of a secondary tenant.
1642 : ///
1643 : /// It is mostly useful when doing a long running download: e.g. initiating
1644 : /// a download job, timing out while waiting for it to run, and then inspecting this status to understand
1645 : /// what's happening.
1646 0 : #[derive(Default, Debug, Serialize, Deserialize, Clone)]
1647 : pub struct SecondaryProgress {
1648 : /// The remote storage LastModified time of the heatmap object we last downloaded.
1649 : pub heatmap_mtime: Option<serde_system_time::SystemTime>,
1650 :
1651 : /// The number of layers currently on-disk
1652 : pub layers_downloaded: usize,
1653 : /// The number of layers in the most recently seen heatmap
1654 : pub layers_total: usize,
1655 :
1656 : /// The number of layer bytes currently on-disk
1657 : pub bytes_downloaded: u64,
1658 : /// The number of layer bytes in the most recently seen heatmap
1659 : pub bytes_total: u64,
1660 : }
1661 :
1662 0 : #[derive(Serialize, Deserialize, Debug)]
1663 : pub struct TenantScanRemoteStorageShard {
1664 : pub tenant_shard_id: TenantShardId,
1665 : pub generation: Option<u32>,
1666 : }
1667 :
1668 0 : #[derive(Serialize, Deserialize, Debug, Default)]
1669 : pub struct TenantScanRemoteStorageResponse {
1670 : pub shards: Vec<TenantScanRemoteStorageShard>,
1671 : }
1672 :
1673 0 : #[derive(Serialize, Deserialize, Debug, Clone)]
1674 : #[serde(rename_all = "snake_case")]
1675 : pub enum TenantSorting {
1676 : /// Total size of layers on local disk for all timelines in a shard.
1677 : ResidentSize,
1678 : /// The logical size of the largest timeline within a _tenant_ (not shard). Only tracked on
1679 : /// shard 0, contains the sum across all shards.
1680 : MaxLogicalSize,
1681 : /// The logical size of the largest timeline within a _tenant_ (not shard), divided by number of
1682 : /// shards. Only tracked on shard 0, and estimates the per-shard logical size.
1683 : MaxLogicalSizePerShard,
1684 : }
1685 :
1686 : impl Default for TenantSorting {
1687 0 : fn default() -> Self {
1688 0 : Self::ResidentSize
1689 0 : }
1690 : }
1691 :
1692 0 : #[derive(Serialize, Deserialize, Debug, Clone)]
1693 : pub struct TopTenantShardsRequest {
1694 : // How would you like to sort the tenants?
1695 : pub order_by: TenantSorting,
1696 :
1697 : // How many results?
1698 : pub limit: usize,
1699 :
1700 : // Omit tenants with more than this many shards (e.g. if this is the max number of shards
1701 : // that the caller would ever split to)
1702 : pub where_shards_lt: Option<ShardCount>,
1703 :
1704 : // Omit tenants where the ordering metric is less than this (this is an optimization to
1705 : // let us quickly exclude numerous tiny shards)
1706 : pub where_gt: Option<u64>,
1707 : }
1708 :
1709 0 : #[derive(Serialize, Deserialize, Debug, PartialEq, Eq)]
1710 : pub struct TopTenantShardItem {
1711 : pub id: TenantShardId,
1712 :
1713 : /// Total size of layers on local disk for all timelines in this shard.
1714 : pub resident_size: u64,
1715 :
1716 : /// Total size of layers in remote storage for all timelines in this shard.
1717 : pub physical_size: u64,
1718 :
1719 : /// The largest logical size of a timeline within this _tenant_ (not shard). This is only
1720 : /// tracked on shard 0, and contains the sum of the logical size across all shards.
1721 : pub max_logical_size: u64,
1722 :
1723 : /// The largest logical size of a timeline within this _tenant_ (not shard) divided by number of
1724 : /// shards. This is only tracked on shard 0, and is only an estimate as we divide it evenly by
1725 : /// shard count, rounded up.
1726 : pub max_logical_size_per_shard: u64,
1727 : }
1728 :
1729 0 : #[derive(Serialize, Deserialize, Debug, Default)]
1730 : pub struct TopTenantShardsResponse {
1731 : pub shards: Vec<TopTenantShardItem>,
1732 : }
1733 :
1734 : pub mod virtual_file {
1735 : #[derive(
1736 : Copy,
1737 : Clone,
1738 : PartialEq,
1739 : Eq,
1740 : Hash,
1741 0 : strum_macros::EnumString,
1742 : strum_macros::Display,
1743 0 : serde_with::DeserializeFromStr,
1744 : serde_with::SerializeDisplay,
1745 : Debug,
1746 : )]
1747 : #[strum(serialize_all = "kebab-case")]
1748 : pub enum IoEngineKind {
1749 : StdFs,
1750 : #[cfg(target_os = "linux")]
1751 : TokioEpollUring,
1752 : }
1753 :
1754 : /// Direct IO modes for a pageserver.
1755 : #[derive(
1756 : Copy,
1757 : Clone,
1758 : PartialEq,
1759 : Eq,
1760 : Hash,
1761 0 : strum_macros::EnumString,
1762 : strum_macros::Display,
1763 0 : serde_with::DeserializeFromStr,
1764 : serde_with::SerializeDisplay,
1765 : Debug,
1766 : )]
1767 : #[strum(serialize_all = "kebab-case")]
1768 : #[repr(u8)]
1769 : pub enum IoMode {
1770 : /// Uses buffered IO.
1771 : Buffered,
1772 : /// Uses direct IO, error out if the operation fails.
1773 : #[cfg(target_os = "linux")]
1774 : Direct,
1775 : }
1776 :
1777 : impl IoMode {
1778 488 : pub const fn preferred() -> Self {
1779 488 : Self::Buffered
1780 488 : }
1781 : }
1782 :
1783 : impl TryFrom<u8> for IoMode {
1784 : type Error = u8;
1785 :
1786 5096 : fn try_from(value: u8) -> Result<Self, Self::Error> {
1787 5096 : Ok(match value {
1788 5096 : v if v == (IoMode::Buffered as u8) => IoMode::Buffered,
1789 : #[cfg(target_os = "linux")]
1790 0 : v if v == (IoMode::Direct as u8) => IoMode::Direct,
1791 0 : x => return Err(x),
1792 : })
1793 5096 : }
1794 : }
1795 : }
1796 :
1797 0 : #[derive(Debug, Clone, Serialize, Deserialize)]
1798 : pub struct ScanDisposableKeysResponse {
1799 : pub disposable_count: usize,
1800 : pub not_disposable_count: usize,
1801 : }
1802 :
1803 : // Wrapped in libpq CopyData
1804 : #[derive(PartialEq, Eq, Debug)]
1805 : pub enum PagestreamFeMessage {
1806 : Exists(PagestreamExistsRequest),
1807 : Nblocks(PagestreamNblocksRequest),
1808 : GetPage(PagestreamGetPageRequest),
1809 : DbSize(PagestreamDbSizeRequest),
1810 : GetSlruSegment(PagestreamGetSlruSegmentRequest),
1811 : #[cfg(feature = "testing")]
1812 : Test(PagestreamTestRequest),
1813 : }
1814 :
1815 : // Wrapped in libpq CopyData
1816 : #[derive(strum_macros::EnumProperty)]
1817 : pub enum PagestreamBeMessage {
1818 : Exists(PagestreamExistsResponse),
1819 : Nblocks(PagestreamNblocksResponse),
1820 : GetPage(PagestreamGetPageResponse),
1821 : Error(PagestreamErrorResponse),
1822 : DbSize(PagestreamDbSizeResponse),
1823 : GetSlruSegment(PagestreamGetSlruSegmentResponse),
1824 : #[cfg(feature = "testing")]
1825 : Test(PagestreamTestResponse),
1826 : }
1827 :
1828 : // Keep in sync with `pagestore_client.h`
1829 : #[repr(u8)]
1830 : enum PagestreamFeMessageTag {
1831 : Exists = 0,
1832 : Nblocks = 1,
1833 : GetPage = 2,
1834 : DbSize = 3,
1835 : GetSlruSegment = 4,
1836 : /* future tags above this line */
1837 : /// For testing purposes, not available in production.
1838 : #[cfg(feature = "testing")]
1839 : Test = 99,
1840 : }
1841 :
1842 : // Keep in sync with `pagestore_client.h`
1843 : #[repr(u8)]
1844 : enum PagestreamBeMessageTag {
1845 : Exists = 100,
1846 : Nblocks = 101,
1847 : GetPage = 102,
1848 : Error = 103,
1849 : DbSize = 104,
1850 : GetSlruSegment = 105,
1851 : /* future tags above this line */
1852 : /// For testing purposes, not available in production.
1853 : #[cfg(feature = "testing")]
1854 : Test = 199,
1855 : }
1856 :
1857 : impl TryFrom<u8> for PagestreamFeMessageTag {
1858 : type Error = u8;
1859 4 : fn try_from(value: u8) -> Result<Self, u8> {
1860 4 : match value {
1861 1 : 0 => Ok(PagestreamFeMessageTag::Exists),
1862 1 : 1 => Ok(PagestreamFeMessageTag::Nblocks),
1863 1 : 2 => Ok(PagestreamFeMessageTag::GetPage),
1864 1 : 3 => Ok(PagestreamFeMessageTag::DbSize),
1865 0 : 4 => Ok(PagestreamFeMessageTag::GetSlruSegment),
1866 : #[cfg(feature = "testing")]
1867 0 : 99 => Ok(PagestreamFeMessageTag::Test),
1868 0 : _ => Err(value),
1869 : }
1870 4 : }
1871 : }
1872 :
1873 : impl TryFrom<u8> for PagestreamBeMessageTag {
1874 : type Error = u8;
1875 0 : fn try_from(value: u8) -> Result<Self, u8> {
1876 0 : match value {
1877 0 : 100 => Ok(PagestreamBeMessageTag::Exists),
1878 0 : 101 => Ok(PagestreamBeMessageTag::Nblocks),
1879 0 : 102 => Ok(PagestreamBeMessageTag::GetPage),
1880 0 : 103 => Ok(PagestreamBeMessageTag::Error),
1881 0 : 104 => Ok(PagestreamBeMessageTag::DbSize),
1882 0 : 105 => Ok(PagestreamBeMessageTag::GetSlruSegment),
1883 : #[cfg(feature = "testing")]
1884 0 : 199 => Ok(PagestreamBeMessageTag::Test),
1885 0 : _ => Err(value),
1886 : }
1887 0 : }
1888 : }
1889 :
1890 : // A GetPage request contains two LSN values:
1891 : //
1892 : // request_lsn: Get the page version at this point in time. Lsn::Max is a special value that means
1893 : // "get the latest version present". It's used by the primary server, which knows that no one else
1894 : // is writing WAL. 'not_modified_since' must be set to a proper value even if request_lsn is
1895 : // Lsn::Max. Standby servers use the current replay LSN as the request LSN.
1896 : //
1897 : // not_modified_since: Hint to the pageserver that the client knows that the page has not been
1898 : // modified between 'not_modified_since' and the request LSN. It's always correct to set
1899 : // 'not_modified_since equal' to 'request_lsn' (unless Lsn::Max is used as the 'request_lsn'), but
1900 : // passing an earlier LSN can speed up the request, by allowing the pageserver to process the
1901 : // request without waiting for 'request_lsn' to arrive.
1902 : //
1903 : // The now-defunct V1 interface contained only one LSN, and a boolean 'latest' flag. The V1 interface was
1904 : // sufficient for the primary; the 'lsn' was equivalent to the 'not_modified_since' value, and
1905 : // 'latest' was set to true. The V2 interface was added because there was no correct way for a
1906 : // standby to request a page at a particular non-latest LSN, and also include the
1907 : // 'not_modified_since' hint. That led to an awkward choice of either using an old LSN in the
1908 : // request, if the standby knows that the page hasn't been modified since, and risk getting an error
1909 : // if that LSN has fallen behind the GC horizon, or requesting the current replay LSN, which could
1910 : // require the pageserver unnecessarily to wait for the WAL to arrive up to that point. The new V2
1911 : // interface allows sending both LSNs, and let the pageserver do the right thing. There was no
1912 : // difference in the responses between V1 and V2.
1913 : //
1914 : // V3 version of protocol adds request ID to all requests. This request ID is also included in response
1915 : // as well as other fields from requests, which allows to verify that we receive response for our request.
1916 : // We copy fields from request to response to make checking more reliable: request ID is formed from process ID
1917 : // and local counter, so in principle there can be duplicated requests IDs if process PID is reused.
1918 : //
1919 : #[derive(Debug, PartialEq, Eq, Clone, Copy)]
1920 : pub enum PagestreamProtocolVersion {
1921 : V2,
1922 : V3,
1923 : }
1924 :
1925 : pub type RequestId = u64;
1926 :
1927 : #[derive(Debug, PartialEq, Eq, Clone, Copy)]
1928 : pub struct PagestreamRequest {
1929 : pub reqid: RequestId,
1930 : pub request_lsn: Lsn,
1931 : pub not_modified_since: Lsn,
1932 : }
1933 :
1934 : #[derive(Debug, PartialEq, Eq, Clone, Copy)]
1935 : pub struct PagestreamExistsRequest {
1936 : pub hdr: PagestreamRequest,
1937 : pub rel: RelTag,
1938 : }
1939 :
1940 : #[derive(Debug, PartialEq, Eq, Clone, Copy)]
1941 : pub struct PagestreamNblocksRequest {
1942 : pub hdr: PagestreamRequest,
1943 : pub rel: RelTag,
1944 : }
1945 :
1946 : #[derive(Debug, PartialEq, Eq, Clone, Copy)]
1947 : pub struct PagestreamGetPageRequest {
1948 : pub hdr: PagestreamRequest,
1949 : pub rel: RelTag,
1950 : pub blkno: u32,
1951 : }
1952 :
1953 : #[derive(Debug, PartialEq, Eq, Clone, Copy)]
1954 : pub struct PagestreamDbSizeRequest {
1955 : pub hdr: PagestreamRequest,
1956 : pub dbnode: u32,
1957 : }
1958 :
1959 : #[derive(Debug, PartialEq, Eq, Clone, Copy)]
1960 : pub struct PagestreamGetSlruSegmentRequest {
1961 : pub hdr: PagestreamRequest,
1962 : pub kind: u8,
1963 : pub segno: u32,
1964 : }
1965 :
1966 : #[derive(Debug)]
1967 : pub struct PagestreamExistsResponse {
1968 : pub req: PagestreamExistsRequest,
1969 : pub exists: bool,
1970 : }
1971 :
1972 : #[derive(Debug)]
1973 : pub struct PagestreamNblocksResponse {
1974 : pub req: PagestreamNblocksRequest,
1975 : pub n_blocks: u32,
1976 : }
1977 :
1978 : #[derive(Debug)]
1979 : pub struct PagestreamGetPageResponse {
1980 : pub req: PagestreamGetPageRequest,
1981 : pub page: Bytes,
1982 : }
1983 :
1984 : #[derive(Debug)]
1985 : pub struct PagestreamGetSlruSegmentResponse {
1986 : pub req: PagestreamGetSlruSegmentRequest,
1987 : pub segment: Bytes,
1988 : }
1989 :
1990 : #[derive(Debug)]
1991 : pub struct PagestreamErrorResponse {
1992 : pub req: PagestreamRequest,
1993 : pub message: String,
1994 : }
1995 :
1996 : #[derive(Debug)]
1997 : pub struct PagestreamDbSizeResponse {
1998 : pub req: PagestreamDbSizeRequest,
1999 : pub db_size: i64,
2000 : }
2001 :
2002 : #[cfg(feature = "testing")]
2003 : #[derive(Debug, PartialEq, Eq, Clone)]
2004 : pub struct PagestreamTestRequest {
2005 : pub hdr: PagestreamRequest,
2006 : pub batch_key: u64,
2007 : pub message: String,
2008 : }
2009 :
2010 : #[cfg(feature = "testing")]
2011 : #[derive(Debug)]
2012 : pub struct PagestreamTestResponse {
2013 : pub req: PagestreamTestRequest,
2014 : }
2015 :
2016 : // This is a cut-down version of TenantHistorySize from the pageserver crate, omitting fields
2017 : // that require pageserver-internal types. It is sufficient to get the total size.
2018 0 : #[derive(Serialize, Deserialize, Debug)]
2019 : pub struct TenantHistorySize {
2020 : pub id: TenantId,
2021 : /// Size is a mixture of WAL and logical size, so the unit is bytes.
2022 : ///
2023 : /// Will be none if `?inputs_only=true` was given.
2024 : pub size: Option<u64>,
2025 : }
2026 :
2027 : impl PagestreamFeMessage {
2028 : /// Serialize a compute -> pageserver message. This is currently only used in testing
2029 : /// tools. Always uses protocol version 3.
2030 4 : pub fn serialize(&self) -> Bytes {
2031 4 : let mut bytes = BytesMut::new();
2032 4 :
2033 4 : match self {
2034 1 : Self::Exists(req) => {
2035 1 : bytes.put_u8(PagestreamFeMessageTag::Exists as u8);
2036 1 : bytes.put_u64(req.hdr.reqid);
2037 1 : bytes.put_u64(req.hdr.request_lsn.0);
2038 1 : bytes.put_u64(req.hdr.not_modified_since.0);
2039 1 : bytes.put_u32(req.rel.spcnode);
2040 1 : bytes.put_u32(req.rel.dbnode);
2041 1 : bytes.put_u32(req.rel.relnode);
2042 1 : bytes.put_u8(req.rel.forknum);
2043 1 : }
2044 :
2045 1 : Self::Nblocks(req) => {
2046 1 : bytes.put_u8(PagestreamFeMessageTag::Nblocks as u8);
2047 1 : bytes.put_u64(req.hdr.reqid);
2048 1 : bytes.put_u64(req.hdr.request_lsn.0);
2049 1 : bytes.put_u64(req.hdr.not_modified_since.0);
2050 1 : bytes.put_u32(req.rel.spcnode);
2051 1 : bytes.put_u32(req.rel.dbnode);
2052 1 : bytes.put_u32(req.rel.relnode);
2053 1 : bytes.put_u8(req.rel.forknum);
2054 1 : }
2055 :
2056 1 : Self::GetPage(req) => {
2057 1 : bytes.put_u8(PagestreamFeMessageTag::GetPage as u8);
2058 1 : bytes.put_u64(req.hdr.reqid);
2059 1 : bytes.put_u64(req.hdr.request_lsn.0);
2060 1 : bytes.put_u64(req.hdr.not_modified_since.0);
2061 1 : bytes.put_u32(req.rel.spcnode);
2062 1 : bytes.put_u32(req.rel.dbnode);
2063 1 : bytes.put_u32(req.rel.relnode);
2064 1 : bytes.put_u8(req.rel.forknum);
2065 1 : bytes.put_u32(req.blkno);
2066 1 : }
2067 :
2068 1 : Self::DbSize(req) => {
2069 1 : bytes.put_u8(PagestreamFeMessageTag::DbSize as u8);
2070 1 : bytes.put_u64(req.hdr.reqid);
2071 1 : bytes.put_u64(req.hdr.request_lsn.0);
2072 1 : bytes.put_u64(req.hdr.not_modified_since.0);
2073 1 : bytes.put_u32(req.dbnode);
2074 1 : }
2075 :
2076 0 : Self::GetSlruSegment(req) => {
2077 0 : bytes.put_u8(PagestreamFeMessageTag::GetSlruSegment as u8);
2078 0 : bytes.put_u64(req.hdr.reqid);
2079 0 : bytes.put_u64(req.hdr.request_lsn.0);
2080 0 : bytes.put_u64(req.hdr.not_modified_since.0);
2081 0 : bytes.put_u8(req.kind);
2082 0 : bytes.put_u32(req.segno);
2083 0 : }
2084 : #[cfg(feature = "testing")]
2085 0 : Self::Test(req) => {
2086 0 : bytes.put_u8(PagestreamFeMessageTag::Test as u8);
2087 0 : bytes.put_u64(req.hdr.reqid);
2088 0 : bytes.put_u64(req.hdr.request_lsn.0);
2089 0 : bytes.put_u64(req.hdr.not_modified_since.0);
2090 0 : bytes.put_u64(req.batch_key);
2091 0 : let message = req.message.as_bytes();
2092 0 : bytes.put_u64(message.len() as u64);
2093 0 : bytes.put_slice(message);
2094 0 : }
2095 : }
2096 :
2097 4 : bytes.into()
2098 4 : }
2099 :
2100 4 : pub fn parse<R: std::io::Read>(
2101 4 : body: &mut R,
2102 4 : protocol_version: PagestreamProtocolVersion,
2103 4 : ) -> anyhow::Result<PagestreamFeMessage> {
2104 : // these correspond to the NeonMessageTag enum in pagestore_client.h
2105 : //
2106 : // TODO: consider using protobuf or serde bincode for less error prone
2107 : // serialization.
2108 4 : let msg_tag = body.read_u8()?;
2109 4 : let (reqid, request_lsn, not_modified_since) = match protocol_version {
2110 : PagestreamProtocolVersion::V2 => (
2111 : 0,
2112 0 : Lsn::from(body.read_u64::<BigEndian>()?),
2113 0 : Lsn::from(body.read_u64::<BigEndian>()?),
2114 : ),
2115 : PagestreamProtocolVersion::V3 => (
2116 4 : body.read_u64::<BigEndian>()?,
2117 4 : Lsn::from(body.read_u64::<BigEndian>()?),
2118 4 : Lsn::from(body.read_u64::<BigEndian>()?),
2119 : ),
2120 : };
2121 :
2122 4 : match PagestreamFeMessageTag::try_from(msg_tag)
2123 4 : .map_err(|tag: u8| anyhow::anyhow!("invalid tag {tag}"))?
2124 : {
2125 : PagestreamFeMessageTag::Exists => {
2126 : Ok(PagestreamFeMessage::Exists(PagestreamExistsRequest {
2127 1 : hdr: PagestreamRequest {
2128 1 : reqid,
2129 1 : request_lsn,
2130 1 : not_modified_since,
2131 1 : },
2132 1 : rel: RelTag {
2133 1 : spcnode: body.read_u32::<BigEndian>()?,
2134 1 : dbnode: body.read_u32::<BigEndian>()?,
2135 1 : relnode: body.read_u32::<BigEndian>()?,
2136 1 : forknum: body.read_u8()?,
2137 : },
2138 : }))
2139 : }
2140 : PagestreamFeMessageTag::Nblocks => {
2141 : Ok(PagestreamFeMessage::Nblocks(PagestreamNblocksRequest {
2142 1 : hdr: PagestreamRequest {
2143 1 : reqid,
2144 1 : request_lsn,
2145 1 : not_modified_since,
2146 1 : },
2147 1 : rel: RelTag {
2148 1 : spcnode: body.read_u32::<BigEndian>()?,
2149 1 : dbnode: body.read_u32::<BigEndian>()?,
2150 1 : relnode: body.read_u32::<BigEndian>()?,
2151 1 : forknum: body.read_u8()?,
2152 : },
2153 : }))
2154 : }
2155 : PagestreamFeMessageTag::GetPage => {
2156 : Ok(PagestreamFeMessage::GetPage(PagestreamGetPageRequest {
2157 1 : hdr: PagestreamRequest {
2158 1 : reqid,
2159 1 : request_lsn,
2160 1 : not_modified_since,
2161 1 : },
2162 1 : rel: RelTag {
2163 1 : spcnode: body.read_u32::<BigEndian>()?,
2164 1 : dbnode: body.read_u32::<BigEndian>()?,
2165 1 : relnode: body.read_u32::<BigEndian>()?,
2166 1 : forknum: body.read_u8()?,
2167 : },
2168 1 : blkno: body.read_u32::<BigEndian>()?,
2169 : }))
2170 : }
2171 : PagestreamFeMessageTag::DbSize => {
2172 : Ok(PagestreamFeMessage::DbSize(PagestreamDbSizeRequest {
2173 1 : hdr: PagestreamRequest {
2174 1 : reqid,
2175 1 : request_lsn,
2176 1 : not_modified_since,
2177 1 : },
2178 1 : dbnode: body.read_u32::<BigEndian>()?,
2179 : }))
2180 : }
2181 : PagestreamFeMessageTag::GetSlruSegment => Ok(PagestreamFeMessage::GetSlruSegment(
2182 : PagestreamGetSlruSegmentRequest {
2183 0 : hdr: PagestreamRequest {
2184 0 : reqid,
2185 0 : request_lsn,
2186 0 : not_modified_since,
2187 0 : },
2188 0 : kind: body.read_u8()?,
2189 0 : segno: body.read_u32::<BigEndian>()?,
2190 : },
2191 : )),
2192 : #[cfg(feature = "testing")]
2193 : PagestreamFeMessageTag::Test => Ok(PagestreamFeMessage::Test(PagestreamTestRequest {
2194 0 : hdr: PagestreamRequest {
2195 0 : reqid,
2196 0 : request_lsn,
2197 0 : not_modified_since,
2198 0 : },
2199 0 : batch_key: body.read_u64::<BigEndian>()?,
2200 : message: {
2201 0 : let len = body.read_u64::<BigEndian>()?;
2202 0 : let mut buf = vec![0; len as usize];
2203 0 : body.read_exact(&mut buf)?;
2204 0 : String::from_utf8(buf)?
2205 : },
2206 : })),
2207 : }
2208 4 : }
2209 : }
2210 :
2211 : impl PagestreamBeMessage {
2212 0 : pub fn serialize(&self, protocol_version: PagestreamProtocolVersion) -> Bytes {
2213 0 : let mut bytes = BytesMut::new();
2214 :
2215 : use PagestreamBeMessageTag as Tag;
2216 0 : match protocol_version {
2217 : PagestreamProtocolVersion::V2 => {
2218 0 : match self {
2219 0 : Self::Exists(resp) => {
2220 0 : bytes.put_u8(Tag::Exists as u8);
2221 0 : bytes.put_u8(resp.exists as u8);
2222 0 : }
2223 :
2224 0 : Self::Nblocks(resp) => {
2225 0 : bytes.put_u8(Tag::Nblocks as u8);
2226 0 : bytes.put_u32(resp.n_blocks);
2227 0 : }
2228 :
2229 0 : Self::GetPage(resp) => {
2230 0 : bytes.put_u8(Tag::GetPage as u8);
2231 0 : bytes.put(&resp.page[..])
2232 : }
2233 :
2234 0 : Self::Error(resp) => {
2235 0 : bytes.put_u8(Tag::Error as u8);
2236 0 : bytes.put(resp.message.as_bytes());
2237 0 : bytes.put_u8(0); // null terminator
2238 0 : }
2239 0 : Self::DbSize(resp) => {
2240 0 : bytes.put_u8(Tag::DbSize as u8);
2241 0 : bytes.put_i64(resp.db_size);
2242 0 : }
2243 :
2244 0 : Self::GetSlruSegment(resp) => {
2245 0 : bytes.put_u8(Tag::GetSlruSegment as u8);
2246 0 : bytes.put_u32((resp.segment.len() / BLCKSZ as usize) as u32);
2247 0 : bytes.put(&resp.segment[..]);
2248 0 : }
2249 :
2250 : #[cfg(feature = "testing")]
2251 0 : Self::Test(resp) => {
2252 0 : bytes.put_u8(Tag::Test as u8);
2253 0 : bytes.put_u64(resp.req.batch_key);
2254 0 : let message = resp.req.message.as_bytes();
2255 0 : bytes.put_u64(message.len() as u64);
2256 0 : bytes.put_slice(message);
2257 0 : }
2258 : }
2259 : }
2260 : PagestreamProtocolVersion::V3 => {
2261 0 : match self {
2262 0 : Self::Exists(resp) => {
2263 0 : bytes.put_u8(Tag::Exists as u8);
2264 0 : bytes.put_u64(resp.req.hdr.reqid);
2265 0 : bytes.put_u64(resp.req.hdr.request_lsn.0);
2266 0 : bytes.put_u64(resp.req.hdr.not_modified_since.0);
2267 0 : bytes.put_u32(resp.req.rel.spcnode);
2268 0 : bytes.put_u32(resp.req.rel.dbnode);
2269 0 : bytes.put_u32(resp.req.rel.relnode);
2270 0 : bytes.put_u8(resp.req.rel.forknum);
2271 0 : bytes.put_u8(resp.exists as u8);
2272 0 : }
2273 :
2274 0 : Self::Nblocks(resp) => {
2275 0 : bytes.put_u8(Tag::Nblocks as u8);
2276 0 : bytes.put_u64(resp.req.hdr.reqid);
2277 0 : bytes.put_u64(resp.req.hdr.request_lsn.0);
2278 0 : bytes.put_u64(resp.req.hdr.not_modified_since.0);
2279 0 : bytes.put_u32(resp.req.rel.spcnode);
2280 0 : bytes.put_u32(resp.req.rel.dbnode);
2281 0 : bytes.put_u32(resp.req.rel.relnode);
2282 0 : bytes.put_u8(resp.req.rel.forknum);
2283 0 : bytes.put_u32(resp.n_blocks);
2284 0 : }
2285 :
2286 0 : Self::GetPage(resp) => {
2287 0 : bytes.put_u8(Tag::GetPage as u8);
2288 0 : bytes.put_u64(resp.req.hdr.reqid);
2289 0 : bytes.put_u64(resp.req.hdr.request_lsn.0);
2290 0 : bytes.put_u64(resp.req.hdr.not_modified_since.0);
2291 0 : bytes.put_u32(resp.req.rel.spcnode);
2292 0 : bytes.put_u32(resp.req.rel.dbnode);
2293 0 : bytes.put_u32(resp.req.rel.relnode);
2294 0 : bytes.put_u8(resp.req.rel.forknum);
2295 0 : bytes.put_u32(resp.req.blkno);
2296 0 : bytes.put(&resp.page[..])
2297 : }
2298 :
2299 0 : Self::Error(resp) => {
2300 0 : bytes.put_u8(Tag::Error as u8);
2301 0 : bytes.put_u64(resp.req.reqid);
2302 0 : bytes.put_u64(resp.req.request_lsn.0);
2303 0 : bytes.put_u64(resp.req.not_modified_since.0);
2304 0 : bytes.put(resp.message.as_bytes());
2305 0 : bytes.put_u8(0); // null terminator
2306 0 : }
2307 0 : Self::DbSize(resp) => {
2308 0 : bytes.put_u8(Tag::DbSize as u8);
2309 0 : bytes.put_u64(resp.req.hdr.reqid);
2310 0 : bytes.put_u64(resp.req.hdr.request_lsn.0);
2311 0 : bytes.put_u64(resp.req.hdr.not_modified_since.0);
2312 0 : bytes.put_u32(resp.req.dbnode);
2313 0 : bytes.put_i64(resp.db_size);
2314 0 : }
2315 :
2316 0 : Self::GetSlruSegment(resp) => {
2317 0 : bytes.put_u8(Tag::GetSlruSegment as u8);
2318 0 : bytes.put_u64(resp.req.hdr.reqid);
2319 0 : bytes.put_u64(resp.req.hdr.request_lsn.0);
2320 0 : bytes.put_u64(resp.req.hdr.not_modified_since.0);
2321 0 : bytes.put_u8(resp.req.kind);
2322 0 : bytes.put_u32(resp.req.segno);
2323 0 : bytes.put_u32((resp.segment.len() / BLCKSZ as usize) as u32);
2324 0 : bytes.put(&resp.segment[..]);
2325 0 : }
2326 :
2327 : #[cfg(feature = "testing")]
2328 0 : Self::Test(resp) => {
2329 0 : bytes.put_u8(Tag::Test as u8);
2330 0 : bytes.put_u64(resp.req.hdr.reqid);
2331 0 : bytes.put_u64(resp.req.hdr.request_lsn.0);
2332 0 : bytes.put_u64(resp.req.hdr.not_modified_since.0);
2333 0 : bytes.put_u64(resp.req.batch_key);
2334 0 : let message = resp.req.message.as_bytes();
2335 0 : bytes.put_u64(message.len() as u64);
2336 0 : bytes.put_slice(message);
2337 0 : }
2338 : }
2339 : }
2340 : }
2341 0 : bytes.into()
2342 0 : }
2343 :
2344 0 : pub fn deserialize(buf: Bytes) -> anyhow::Result<Self> {
2345 0 : let mut buf = buf.reader();
2346 0 : let msg_tag = buf.read_u8()?;
2347 :
2348 : use PagestreamBeMessageTag as Tag;
2349 0 : let ok =
2350 0 : match Tag::try_from(msg_tag).map_err(|tag: u8| anyhow::anyhow!("invalid tag {tag}"))? {
2351 : Tag::Exists => {
2352 0 : let reqid = buf.read_u64::<BigEndian>()?;
2353 0 : let request_lsn = Lsn(buf.read_u64::<BigEndian>()?);
2354 0 : let not_modified_since = Lsn(buf.read_u64::<BigEndian>()?);
2355 0 : let rel = RelTag {
2356 0 : spcnode: buf.read_u32::<BigEndian>()?,
2357 0 : dbnode: buf.read_u32::<BigEndian>()?,
2358 0 : relnode: buf.read_u32::<BigEndian>()?,
2359 0 : forknum: buf.read_u8()?,
2360 : };
2361 0 : let exists = buf.read_u8()? != 0;
2362 0 : Self::Exists(PagestreamExistsResponse {
2363 0 : req: PagestreamExistsRequest {
2364 0 : hdr: PagestreamRequest {
2365 0 : reqid,
2366 0 : request_lsn,
2367 0 : not_modified_since,
2368 0 : },
2369 0 : rel,
2370 0 : },
2371 0 : exists,
2372 0 : })
2373 : }
2374 : Tag::Nblocks => {
2375 0 : let reqid = buf.read_u64::<BigEndian>()?;
2376 0 : let request_lsn = Lsn(buf.read_u64::<BigEndian>()?);
2377 0 : let not_modified_since = Lsn(buf.read_u64::<BigEndian>()?);
2378 0 : let rel = RelTag {
2379 0 : spcnode: buf.read_u32::<BigEndian>()?,
2380 0 : dbnode: buf.read_u32::<BigEndian>()?,
2381 0 : relnode: buf.read_u32::<BigEndian>()?,
2382 0 : forknum: buf.read_u8()?,
2383 : };
2384 0 : let n_blocks = buf.read_u32::<BigEndian>()?;
2385 0 : Self::Nblocks(PagestreamNblocksResponse {
2386 0 : req: PagestreamNblocksRequest {
2387 0 : hdr: PagestreamRequest {
2388 0 : reqid,
2389 0 : request_lsn,
2390 0 : not_modified_since,
2391 0 : },
2392 0 : rel,
2393 0 : },
2394 0 : n_blocks,
2395 0 : })
2396 : }
2397 : Tag::GetPage => {
2398 0 : let reqid = buf.read_u64::<BigEndian>()?;
2399 0 : let request_lsn = Lsn(buf.read_u64::<BigEndian>()?);
2400 0 : let not_modified_since = Lsn(buf.read_u64::<BigEndian>()?);
2401 0 : let rel = RelTag {
2402 0 : spcnode: buf.read_u32::<BigEndian>()?,
2403 0 : dbnode: buf.read_u32::<BigEndian>()?,
2404 0 : relnode: buf.read_u32::<BigEndian>()?,
2405 0 : forknum: buf.read_u8()?,
2406 : };
2407 0 : let blkno = buf.read_u32::<BigEndian>()?;
2408 0 : let mut page = vec![0; 8192]; // TODO: use MaybeUninit
2409 0 : buf.read_exact(&mut page)?;
2410 0 : Self::GetPage(PagestreamGetPageResponse {
2411 0 : req: PagestreamGetPageRequest {
2412 0 : hdr: PagestreamRequest {
2413 0 : reqid,
2414 0 : request_lsn,
2415 0 : not_modified_since,
2416 0 : },
2417 0 : rel,
2418 0 : blkno,
2419 0 : },
2420 0 : page: page.into(),
2421 0 : })
2422 : }
2423 : Tag::Error => {
2424 0 : let reqid = buf.read_u64::<BigEndian>()?;
2425 0 : let request_lsn = Lsn(buf.read_u64::<BigEndian>()?);
2426 0 : let not_modified_since = Lsn(buf.read_u64::<BigEndian>()?);
2427 0 : let mut msg = Vec::new();
2428 0 : buf.read_until(0, &mut msg)?;
2429 0 : let cstring = std::ffi::CString::from_vec_with_nul(msg)?;
2430 0 : let rust_str = cstring.to_str()?;
2431 0 : Self::Error(PagestreamErrorResponse {
2432 0 : req: PagestreamRequest {
2433 0 : reqid,
2434 0 : request_lsn,
2435 0 : not_modified_since,
2436 0 : },
2437 0 : message: rust_str.to_owned(),
2438 0 : })
2439 : }
2440 : Tag::DbSize => {
2441 0 : let reqid = buf.read_u64::<BigEndian>()?;
2442 0 : let request_lsn = Lsn(buf.read_u64::<BigEndian>()?);
2443 0 : let not_modified_since = Lsn(buf.read_u64::<BigEndian>()?);
2444 0 : let dbnode = buf.read_u32::<BigEndian>()?;
2445 0 : let db_size = buf.read_i64::<BigEndian>()?;
2446 0 : Self::DbSize(PagestreamDbSizeResponse {
2447 0 : req: PagestreamDbSizeRequest {
2448 0 : hdr: PagestreamRequest {
2449 0 : reqid,
2450 0 : request_lsn,
2451 0 : not_modified_since,
2452 0 : },
2453 0 : dbnode,
2454 0 : },
2455 0 : db_size,
2456 0 : })
2457 : }
2458 : Tag::GetSlruSegment => {
2459 0 : let reqid = buf.read_u64::<BigEndian>()?;
2460 0 : let request_lsn = Lsn(buf.read_u64::<BigEndian>()?);
2461 0 : let not_modified_since = Lsn(buf.read_u64::<BigEndian>()?);
2462 0 : let kind = buf.read_u8()?;
2463 0 : let segno = buf.read_u32::<BigEndian>()?;
2464 0 : let n_blocks = buf.read_u32::<BigEndian>()?;
2465 0 : let mut segment = vec![0; n_blocks as usize * BLCKSZ as usize];
2466 0 : buf.read_exact(&mut segment)?;
2467 0 : Self::GetSlruSegment(PagestreamGetSlruSegmentResponse {
2468 0 : req: PagestreamGetSlruSegmentRequest {
2469 0 : hdr: PagestreamRequest {
2470 0 : reqid,
2471 0 : request_lsn,
2472 0 : not_modified_since,
2473 0 : },
2474 0 : kind,
2475 0 : segno,
2476 0 : },
2477 0 : segment: segment.into(),
2478 0 : })
2479 : }
2480 : #[cfg(feature = "testing")]
2481 : Tag::Test => {
2482 0 : let reqid = buf.read_u64::<BigEndian>()?;
2483 0 : let request_lsn = Lsn(buf.read_u64::<BigEndian>()?);
2484 0 : let not_modified_since = Lsn(buf.read_u64::<BigEndian>()?);
2485 0 : let batch_key = buf.read_u64::<BigEndian>()?;
2486 0 : let len = buf.read_u64::<BigEndian>()?;
2487 0 : let mut msg = vec![0; len as usize];
2488 0 : buf.read_exact(&mut msg)?;
2489 0 : let message = String::from_utf8(msg)?;
2490 0 : Self::Test(PagestreamTestResponse {
2491 0 : req: PagestreamTestRequest {
2492 0 : hdr: PagestreamRequest {
2493 0 : reqid,
2494 0 : request_lsn,
2495 0 : not_modified_since,
2496 0 : },
2497 0 : batch_key,
2498 0 : message,
2499 0 : },
2500 0 : })
2501 : }
2502 : };
2503 0 : let remaining = buf.into_inner();
2504 0 : if !remaining.is_empty() {
2505 0 : anyhow::bail!(
2506 0 : "remaining bytes in msg with tag={msg_tag}: {}",
2507 0 : remaining.len()
2508 0 : );
2509 0 : }
2510 0 : Ok(ok)
2511 0 : }
2512 :
2513 0 : pub fn kind(&self) -> &'static str {
2514 0 : match self {
2515 0 : Self::Exists(_) => "Exists",
2516 0 : Self::Nblocks(_) => "Nblocks",
2517 0 : Self::GetPage(_) => "GetPage",
2518 0 : Self::Error(_) => "Error",
2519 0 : Self::DbSize(_) => "DbSize",
2520 0 : Self::GetSlruSegment(_) => "GetSlruSegment",
2521 : #[cfg(feature = "testing")]
2522 0 : Self::Test(_) => "Test",
2523 : }
2524 0 : }
2525 : }
2526 :
2527 0 : #[derive(Debug, Serialize, Deserialize)]
2528 : pub struct PageTraceEvent {
2529 : pub key: CompactKey,
2530 : pub effective_lsn: Lsn,
2531 : pub time: SystemTime,
2532 : }
2533 :
2534 : impl Default for PageTraceEvent {
2535 0 : fn default() -> Self {
2536 0 : Self {
2537 0 : key: Default::default(),
2538 0 : effective_lsn: Default::default(),
2539 0 : time: std::time::UNIX_EPOCH,
2540 0 : }
2541 0 : }
2542 : }
2543 :
2544 : #[cfg(test)]
2545 : mod tests {
2546 : use std::str::FromStr;
2547 :
2548 : use serde_json::json;
2549 :
2550 : use super::*;
2551 :
2552 : #[test]
2553 1 : fn test_pagestream() {
2554 1 : // Test serialization/deserialization of PagestreamFeMessage
2555 1 : let messages = vec![
2556 1 : PagestreamFeMessage::Exists(PagestreamExistsRequest {
2557 1 : hdr: PagestreamRequest {
2558 1 : reqid: 0,
2559 1 : request_lsn: Lsn(4),
2560 1 : not_modified_since: Lsn(3),
2561 1 : },
2562 1 : rel: RelTag {
2563 1 : forknum: 1,
2564 1 : spcnode: 2,
2565 1 : dbnode: 3,
2566 1 : relnode: 4,
2567 1 : },
2568 1 : }),
2569 1 : PagestreamFeMessage::Nblocks(PagestreamNblocksRequest {
2570 1 : hdr: PagestreamRequest {
2571 1 : reqid: 0,
2572 1 : request_lsn: Lsn(4),
2573 1 : not_modified_since: Lsn(4),
2574 1 : },
2575 1 : rel: RelTag {
2576 1 : forknum: 1,
2577 1 : spcnode: 2,
2578 1 : dbnode: 3,
2579 1 : relnode: 4,
2580 1 : },
2581 1 : }),
2582 1 : PagestreamFeMessage::GetPage(PagestreamGetPageRequest {
2583 1 : hdr: PagestreamRequest {
2584 1 : reqid: 0,
2585 1 : request_lsn: Lsn(4),
2586 1 : not_modified_since: Lsn(3),
2587 1 : },
2588 1 : rel: RelTag {
2589 1 : forknum: 1,
2590 1 : spcnode: 2,
2591 1 : dbnode: 3,
2592 1 : relnode: 4,
2593 1 : },
2594 1 : blkno: 7,
2595 1 : }),
2596 1 : PagestreamFeMessage::DbSize(PagestreamDbSizeRequest {
2597 1 : hdr: PagestreamRequest {
2598 1 : reqid: 0,
2599 1 : request_lsn: Lsn(4),
2600 1 : not_modified_since: Lsn(3),
2601 1 : },
2602 1 : dbnode: 7,
2603 1 : }),
2604 1 : ];
2605 5 : for msg in messages {
2606 4 : let bytes = msg.serialize();
2607 4 : let reconstructed =
2608 4 : PagestreamFeMessage::parse(&mut bytes.reader(), PagestreamProtocolVersion::V3)
2609 4 : .unwrap();
2610 4 : assert!(msg == reconstructed);
2611 : }
2612 1 : }
2613 :
2614 : #[test]
2615 1 : fn test_tenantinfo_serde() {
2616 1 : // Test serialization/deserialization of TenantInfo
2617 1 : let original_active = TenantInfo {
2618 1 : id: TenantShardId::unsharded(TenantId::generate()),
2619 1 : state: TenantState::Active,
2620 1 : current_physical_size: Some(42),
2621 1 : attachment_status: TenantAttachmentStatus::Attached,
2622 1 : generation: 1,
2623 1 : gc_blocking: None,
2624 1 : };
2625 1 : let expected_active = json!({
2626 1 : "id": original_active.id.to_string(),
2627 1 : "state": {
2628 1 : "slug": "Active",
2629 1 : },
2630 1 : "current_physical_size": 42,
2631 1 : "attachment_status": {
2632 1 : "slug":"attached",
2633 1 : },
2634 1 : "generation" : 1
2635 1 : });
2636 1 :
2637 1 : let original_broken = TenantInfo {
2638 1 : id: TenantShardId::unsharded(TenantId::generate()),
2639 1 : state: TenantState::Broken {
2640 1 : reason: "reason".into(),
2641 1 : backtrace: "backtrace info".into(),
2642 1 : },
2643 1 : current_physical_size: Some(42),
2644 1 : attachment_status: TenantAttachmentStatus::Attached,
2645 1 : generation: 1,
2646 1 : gc_blocking: None,
2647 1 : };
2648 1 : let expected_broken = json!({
2649 1 : "id": original_broken.id.to_string(),
2650 1 : "state": {
2651 1 : "slug": "Broken",
2652 1 : "data": {
2653 1 : "backtrace": "backtrace info",
2654 1 : "reason": "reason",
2655 1 : }
2656 1 : },
2657 1 : "current_physical_size": 42,
2658 1 : "attachment_status": {
2659 1 : "slug":"attached",
2660 1 : },
2661 1 : "generation" : 1
2662 1 : });
2663 1 :
2664 1 : assert_eq!(
2665 1 : serde_json::to_value(&original_active).unwrap(),
2666 1 : expected_active
2667 1 : );
2668 :
2669 1 : assert_eq!(
2670 1 : serde_json::to_value(&original_broken).unwrap(),
2671 1 : expected_broken
2672 1 : );
2673 1 : assert!(format!("{:?}", &original_broken.state).contains("reason"));
2674 1 : assert!(format!("{:?}", &original_broken.state).contains("backtrace info"));
2675 1 : }
2676 :
2677 : #[test]
2678 1 : fn test_reject_unknown_field() {
2679 1 : let id = TenantId::generate();
2680 1 : let config_request = json!({
2681 1 : "tenant_id": id.to_string(),
2682 1 : "unknown_field": "unknown_value".to_string(),
2683 1 : });
2684 1 : let err = serde_json::from_value::<TenantConfigRequest>(config_request).unwrap_err();
2685 1 : assert!(
2686 1 : err.to_string().contains("unknown field `unknown_field`"),
2687 0 : "expect unknown field `unknown_field` error, got: {}",
2688 : err
2689 : );
2690 1 : }
2691 :
2692 : #[test]
2693 1 : fn tenantstatus_activating_serde() {
2694 1 : let states = [TenantState::Activating(ActivatingFrom::Attaching)];
2695 1 : let expected = "[{\"slug\":\"Activating\",\"data\":\"Attaching\"}]";
2696 1 :
2697 1 : let actual = serde_json::to_string(&states).unwrap();
2698 1 :
2699 1 : assert_eq!(actual, expected);
2700 :
2701 1 : let parsed = serde_json::from_str::<Vec<TenantState>>(&actual).unwrap();
2702 1 :
2703 1 : assert_eq!(states.as_slice(), &parsed);
2704 1 : }
2705 :
2706 : #[test]
2707 1 : fn tenantstatus_activating_strum() {
2708 1 : // tests added, because we use these for metrics
2709 1 : let examples = [
2710 1 : (line!(), TenantState::Attaching, "Attaching"),
2711 1 : (
2712 1 : line!(),
2713 1 : TenantState::Activating(ActivatingFrom::Attaching),
2714 1 : "Activating",
2715 1 : ),
2716 1 : (line!(), TenantState::Active, "Active"),
2717 1 : (
2718 1 : line!(),
2719 1 : TenantState::Stopping {
2720 1 : progress: utils::completion::Barrier::default(),
2721 1 : },
2722 1 : "Stopping",
2723 1 : ),
2724 1 : (
2725 1 : line!(),
2726 1 : TenantState::Broken {
2727 1 : reason: "Example".into(),
2728 1 : backtrace: "Looooong backtrace".into(),
2729 1 : },
2730 1 : "Broken",
2731 1 : ),
2732 1 : ];
2733 :
2734 6 : for (line, rendered, expected) in examples {
2735 5 : let actual: &'static str = rendered.into();
2736 5 : assert_eq!(actual, expected, "example on {line}");
2737 : }
2738 1 : }
2739 :
2740 : #[test]
2741 1 : fn test_image_compression_algorithm_parsing() {
2742 : use ImageCompressionAlgorithm::*;
2743 1 : let cases = [
2744 1 : ("disabled", Disabled),
2745 1 : ("zstd", Zstd { level: None }),
2746 1 : ("zstd(18)", Zstd { level: Some(18) }),
2747 1 : ("zstd(-3)", Zstd { level: Some(-3) }),
2748 1 : ];
2749 :
2750 5 : for (display, expected) in cases {
2751 4 : assert_eq!(
2752 4 : ImageCompressionAlgorithm::from_str(display).unwrap(),
2753 : expected,
2754 0 : "parsing works"
2755 : );
2756 4 : assert_eq!(format!("{expected}"), display, "Display FromStr roundtrip");
2757 :
2758 4 : let ser = serde_json::to_string(&expected).expect("serialization");
2759 4 : assert_eq!(
2760 4 : serde_json::from_str::<ImageCompressionAlgorithm>(&ser).unwrap(),
2761 : expected,
2762 0 : "serde roundtrip"
2763 : );
2764 :
2765 4 : assert_eq!(
2766 4 : serde_json::Value::String(display.to_string()),
2767 4 : serde_json::to_value(expected).unwrap(),
2768 0 : "Display is the serde serialization"
2769 : );
2770 : }
2771 1 : }
2772 :
2773 : #[test]
2774 1 : fn test_tenant_config_patch_request_serde() {
2775 1 : let patch_request = TenantConfigPatchRequest {
2776 1 : tenant_id: TenantId::from_str("17c6d121946a61e5ab0fe5a2fd4d8215").unwrap(),
2777 1 : config: TenantConfigPatch {
2778 1 : checkpoint_distance: FieldPatch::Upsert(42),
2779 1 : gc_horizon: FieldPatch::Remove,
2780 1 : compaction_threshold: FieldPatch::Noop,
2781 1 : ..TenantConfigPatch::default()
2782 1 : },
2783 1 : };
2784 1 :
2785 1 : let json = serde_json::to_string(&patch_request).unwrap();
2786 1 :
2787 1 : let expected = r#"{"tenant_id":"17c6d121946a61e5ab0fe5a2fd4d8215","checkpoint_distance":42,"gc_horizon":null}"#;
2788 1 : assert_eq!(json, expected);
2789 :
2790 1 : let decoded: TenantConfigPatchRequest = serde_json::from_str(&json).unwrap();
2791 1 : assert_eq!(decoded.tenant_id, patch_request.tenant_id);
2792 1 : assert_eq!(decoded.config, patch_request.config);
2793 :
2794 : // Now apply the patch to a config to demonstrate semantics
2795 :
2796 1 : let base = TenantConfig {
2797 1 : checkpoint_distance: Some(28),
2798 1 : gc_horizon: Some(100),
2799 1 : compaction_target_size: Some(1024),
2800 1 : ..Default::default()
2801 1 : };
2802 1 :
2803 1 : let expected = TenantConfig {
2804 1 : checkpoint_distance: Some(42),
2805 1 : gc_horizon: None,
2806 1 : ..base.clone()
2807 1 : };
2808 1 :
2809 1 : let patched = base.apply_patch(decoded.config).unwrap();
2810 1 :
2811 1 : assert_eq!(patched, expected);
2812 1 : }
2813 : }
|