Line data Source code
1 : use core::fmt::Display;
2 : use pageserver_api::shard::TenantShardId;
3 : use std::ops::Range;
4 : use utils::{id::TimelineId, lsn::Lsn};
5 :
6 : use crate::repository::Key;
7 :
8 : use super::{DeltaFileName, ImageFileName, LayerFileName};
9 :
10 : use serde::{Deserialize, Serialize};
11 :
12 : #[cfg(test)]
13 : use utils::id::TenantId;
14 :
15 : /// A unique identifier of a persistent layer. This is different from `LayerDescriptor`, which is only used in the
16 : /// benchmarks. This struct contains all necessary information to find the image / delta layer. It also provides
17 : /// a unified way to generate layer information like file name.
18 81497 : #[derive(Debug, PartialEq, Eq, Clone, Serialize, Deserialize)]
19 : pub struct PersistentLayerDesc {
20 : pub tenant_shard_id: TenantShardId,
21 : pub timeline_id: TimelineId,
22 : /// Range of keys that this layer covers
23 : pub key_range: Range<Key>,
24 : /// Inclusive start, exclusive end of the LSN range that this layer holds.
25 : ///
26 : /// - For an open in-memory layer, the end bound is MAX_LSN
27 : /// - For a frozen in-memory layer or a delta layer, the end bound is a valid lsn after the
28 : /// range start
29 : /// - An image layer represents snapshot at one LSN, so end_lsn is always the snapshot LSN + 1
30 : pub lsn_range: Range<Lsn>,
31 : /// Whether this is a delta layer, and also, is this incremental.
32 : pub is_delta: bool,
33 : pub file_size: u64,
34 : }
35 :
36 : /// A unique identifier of a persistent layer within the context of one timeline.
37 17082083 : #[derive(Debug, PartialEq, Eq, Clone, Hash)]
38 : pub struct PersistentLayerKey {
39 : pub key_range: Range<Key>,
40 : pub lsn_range: Range<Lsn>,
41 : pub is_delta: bool,
42 : }
43 :
44 : impl PersistentLayerDesc {
45 17029988 : pub fn key(&self) -> PersistentLayerKey {
46 17029988 : PersistentLayerKey {
47 17029988 : key_range: self.key_range.clone(),
48 17029988 : lsn_range: self.lsn_range.clone(),
49 17029988 : is_delta: self.is_delta,
50 17029988 : }
51 17029988 : }
52 :
53 56373 : pub fn short_id(&self) -> impl Display {
54 56373 : self.filename()
55 56373 : }
56 :
57 : #[cfg(test)]
58 10 : pub fn new_test(key_range: Range<Key>, lsn_range: Range<Lsn>, is_delta: bool) -> Self {
59 10 : Self {
60 10 : tenant_shard_id: TenantShardId::unsharded(TenantId::generate()),
61 10 : timeline_id: TimelineId::generate(),
62 10 : key_range,
63 10 : lsn_range,
64 10 : is_delta,
65 10 : file_size: 0,
66 10 : }
67 10 : }
68 :
69 36598 : pub fn new_img(
70 36598 : tenant_shard_id: TenantShardId,
71 36598 : timeline_id: TimelineId,
72 36598 : key_range: Range<Key>,
73 36598 : lsn: Lsn,
74 36598 : file_size: u64,
75 36598 : ) -> Self {
76 36598 : Self {
77 36598 : tenant_shard_id,
78 36598 : timeline_id,
79 36598 : key_range,
80 36598 : lsn_range: Self::image_layer_lsn_range(lsn),
81 36598 : is_delta: false,
82 36598 : file_size,
83 36598 : }
84 36598 : }
85 :
86 38758 : pub fn new_delta(
87 38758 : tenant_shard_id: TenantShardId,
88 38758 : timeline_id: TimelineId,
89 38758 : key_range: Range<Key>,
90 38758 : lsn_range: Range<Lsn>,
91 38758 : file_size: u64,
92 38758 : ) -> Self {
93 38758 : Self {
94 38758 : tenant_shard_id,
95 38758 : timeline_id,
96 38758 : key_range,
97 38758 : lsn_range,
98 38758 : is_delta: true,
99 38758 : file_size,
100 38758 : }
101 38758 : }
102 :
103 53052 : pub fn from_filename(
104 53052 : tenant_shard_id: TenantShardId,
105 53052 : timeline_id: TimelineId,
106 53052 : filename: LayerFileName,
107 53052 : file_size: u64,
108 53052 : ) -> Self {
109 53052 : match filename {
110 30123 : LayerFileName::Image(i) => {
111 30123 : Self::new_img(tenant_shard_id, timeline_id, i.key_range, i.lsn, file_size)
112 : }
113 22929 : LayerFileName::Delta(d) => Self::new_delta(
114 22929 : tenant_shard_id,
115 22929 : timeline_id,
116 22929 : d.key_range,
117 22929 : d.lsn_range,
118 22929 : file_size,
119 22929 : ),
120 : }
121 53052 : }
122 :
123 : /// Get the LSN that the image layer covers.
124 877923 : pub fn image_layer_lsn(&self) -> Lsn {
125 877923 : assert!(!self.is_delta);
126 877923 : assert!(self.lsn_range.start + 1 == self.lsn_range.end);
127 877923 : self.lsn_range.start
128 877923 : }
129 :
130 : /// Get the LSN range corresponding to a single image layer LSN.
131 36598 : pub fn image_layer_lsn_range(lsn: Lsn) -> Range<Lsn> {
132 36598 : lsn..(lsn + 1)
133 36598 : }
134 :
135 : /// Get a delta file name for this layer.
136 : ///
137 : /// Panic: if this is not a delta layer.
138 541680 : pub fn delta_file_name(&self) -> DeltaFileName {
139 541680 : assert!(self.is_delta);
140 541680 : DeltaFileName {
141 541680 : key_range: self.key_range.clone(),
142 541680 : lsn_range: self.lsn_range.clone(),
143 541680 : }
144 541680 : }
145 :
146 : /// Get a delta file name for this layer.
147 : ///
148 : /// Panic: if this is not an image layer, or the lsn range is invalid
149 410489 : pub fn image_file_name(&self) -> ImageFileName {
150 410489 : assert!(!self.is_delta);
151 410489 : assert!(self.lsn_range.start + 1 == self.lsn_range.end);
152 410489 : ImageFileName {
153 410489 : key_range: self.key_range.clone(),
154 410489 : lsn: self.lsn_range.start,
155 410489 : }
156 410489 : }
157 :
158 952169 : pub fn filename(&self) -> LayerFileName {
159 952169 : if self.is_delta {
160 541680 : self.delta_file_name().into()
161 : } else {
162 410489 : self.image_file_name().into()
163 : }
164 952169 : }
165 :
166 : // TODO: remove this in the future once we refactor timeline APIs.
167 :
168 29284995 : pub fn get_lsn_range(&self) -> Range<Lsn> {
169 29284995 : self.lsn_range.clone()
170 29284995 : }
171 :
172 2383136 : pub fn get_key_range(&self) -> Range<Key> {
173 2383136 : self.key_range.clone()
174 2383136 : }
175 :
176 0 : pub fn get_timeline_id(&self) -> TimelineId {
177 0 : self.timeline_id
178 0 : }
179 :
180 : /// Does this layer only contain some data for the key-range (incremental),
181 : /// or does it contain a version of every page? This is important to know
182 : /// for garbage collecting old layers: an incremental layer depends on
183 : /// the previous non-incremental layer.
184 80513 : pub fn is_incremental(&self) -> bool {
185 80513 : self.is_delta
186 80513 : }
187 :
188 18908216 : pub fn is_delta(&self) -> bool {
189 18908216 : self.is_delta
190 18908216 : }
191 :
192 4 : pub fn dump(&self) {
193 4 : if self.is_delta {
194 4 : println!(
195 4 : "----- delta layer for ten {} tli {} keys {}-{} lsn {}-{} is_incremental {} size {} ----",
196 4 : self.tenant_shard_id,
197 4 : self.timeline_id,
198 4 : self.key_range.start,
199 4 : self.key_range.end,
200 4 : self.lsn_range.start,
201 4 : self.lsn_range.end,
202 4 : self.is_incremental(),
203 4 : self.file_size,
204 4 : );
205 4 : } else {
206 0 : println!(
207 0 : "----- image layer for ten {} tli {} key {}-{} at {} is_incremental {} size {} ----",
208 0 : self.tenant_shard_id,
209 0 : self.timeline_id,
210 0 : self.key_range.start,
211 0 : self.key_range.end,
212 0 : self.image_layer_lsn(),
213 0 : self.is_incremental(),
214 0 : self.file_size
215 0 : );
216 0 : }
217 4 : }
218 :
219 325484 : pub fn file_size(&self) -> u64 {
220 325484 : self.file_size
221 325484 : }
222 : }
|