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 pageserver_api::key::Key;
7 :
8 : use super::{DeltaLayerName, ImageLayerName, LayerName};
9 :
10 : use serde::{Deserialize, Serialize};
11 :
12 : #[cfg(test)]
13 : use utils::id::TenantId;
14 :
15 : /// A unique identifier of a persistent layer.
16 : ///
17 : /// This is different from `LayerDescriptor`, which is only used in the benchmarks.
18 : /// This struct contains all necessary information to find the image / delta layer. It also provides
19 : /// a unified way to generate layer information like file name.
20 0 : #[derive(Debug, PartialEq, Eq, Clone, Serialize, Deserialize, Hash)]
21 : pub struct PersistentLayerDesc {
22 : pub tenant_shard_id: TenantShardId,
23 : pub timeline_id: TimelineId,
24 : /// Range of keys that this layer covers
25 : pub key_range: Range<Key>,
26 : /// Inclusive start, exclusive end of the LSN range that this layer holds.
27 : ///
28 : /// - For an open in-memory layer, the end bound is MAX_LSN
29 : /// - For a frozen in-memory layer or a delta layer, the end bound is a valid lsn after the
30 : /// range start
31 : /// - An image layer represents snapshot at one LSN, so end_lsn is always the snapshot LSN + 1
32 : pub lsn_range: Range<Lsn>,
33 : /// Whether this is a delta layer, and also, is this incremental.
34 : pub is_delta: bool,
35 : pub file_size: u64,
36 : }
37 :
38 : /// A unique identifier of a persistent layer within the context of one timeline.
39 : #[derive(Debug, PartialEq, Eq, Clone, Hash)]
40 : pub struct PersistentLayerKey {
41 : pub key_range: Range<Key>,
42 : pub lsn_range: Range<Lsn>,
43 : pub is_delta: bool,
44 : }
45 :
46 : impl std::fmt::Display for PersistentLayerKey {
47 44 : fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
48 44 : write!(
49 44 : f,
50 44 : "{}..{} {}..{} is_delta={}",
51 44 : self.key_range.start,
52 44 : self.key_range.end,
53 44 : self.lsn_range.start,
54 44 : self.lsn_range.end,
55 44 : self.is_delta
56 44 : )
57 44 : }
58 : }
59 :
60 : impl From<ImageLayerName> for PersistentLayerKey {
61 0 : fn from(image_layer_name: ImageLayerName) -> Self {
62 0 : Self {
63 0 : key_range: image_layer_name.key_range,
64 0 : lsn_range: PersistentLayerDesc::image_layer_lsn_range(image_layer_name.lsn),
65 0 : is_delta: false,
66 0 : }
67 0 : }
68 : }
69 :
70 : impl From<DeltaLayerName> for PersistentLayerKey {
71 0 : fn from(delta_layer_name: DeltaLayerName) -> Self {
72 0 : Self {
73 0 : key_range: delta_layer_name.key_range,
74 0 : lsn_range: delta_layer_name.lsn_range,
75 0 : is_delta: true,
76 0 : }
77 0 : }
78 : }
79 :
80 : impl From<LayerName> for PersistentLayerKey {
81 0 : fn from(layer_name: LayerName) -> Self {
82 0 : match layer_name {
83 0 : LayerName::Image(i) => i.into(),
84 0 : LayerName::Delta(d) => d.into(),
85 : }
86 0 : }
87 : }
88 : impl PersistentLayerDesc {
89 488630 : pub fn key(&self) -> PersistentLayerKey {
90 488630 : PersistentLayerKey {
91 488630 : key_range: self.key_range.clone(),
92 488630 : lsn_range: self.lsn_range.clone(),
93 488630 : is_delta: self.is_delta,
94 488630 : }
95 488630 : }
96 :
97 1968 : pub fn short_id(&self) -> impl Display {
98 1968 : self.layer_name()
99 1968 : }
100 :
101 : #[cfg(test)]
102 10 : pub fn new_test(key_range: Range<Key>, lsn_range: Range<Lsn>, is_delta: bool) -> Self {
103 10 : Self {
104 10 : tenant_shard_id: TenantShardId::unsharded(TenantId::generate()),
105 10 : timeline_id: TimelineId::generate(),
106 10 : key_range,
107 10 : lsn_range,
108 10 : is_delta,
109 10 : file_size: 0,
110 10 : }
111 10 : }
112 :
113 330 : pub fn new_img(
114 330 : tenant_shard_id: TenantShardId,
115 330 : timeline_id: TimelineId,
116 330 : key_range: Range<Key>,
117 330 : lsn: Lsn,
118 330 : file_size: u64,
119 330 : ) -> Self {
120 330 : Self {
121 330 : tenant_shard_id,
122 330 : timeline_id,
123 330 : key_range,
124 330 : lsn_range: Self::image_layer_lsn_range(lsn),
125 330 : is_delta: false,
126 330 : file_size,
127 330 : }
128 330 : }
129 :
130 1448 : pub fn new_delta(
131 1448 : tenant_shard_id: TenantShardId,
132 1448 : timeline_id: TimelineId,
133 1448 : key_range: Range<Key>,
134 1448 : lsn_range: Range<Lsn>,
135 1448 : file_size: u64,
136 1448 : ) -> Self {
137 1448 : Self {
138 1448 : tenant_shard_id,
139 1448 : timeline_id,
140 1448 : key_range,
141 1448 : lsn_range,
142 1448 : is_delta: true,
143 1448 : file_size,
144 1448 : }
145 1448 : }
146 :
147 24 : pub fn from_filename(
148 24 : tenant_shard_id: TenantShardId,
149 24 : timeline_id: TimelineId,
150 24 : filename: LayerName,
151 24 : file_size: u64,
152 24 : ) -> Self {
153 24 : match filename {
154 4 : LayerName::Image(i) => {
155 4 : Self::new_img(tenant_shard_id, timeline_id, i.key_range, i.lsn, file_size)
156 : }
157 20 : LayerName::Delta(d) => Self::new_delta(
158 20 : tenant_shard_id,
159 20 : timeline_id,
160 20 : d.key_range,
161 20 : d.lsn_range,
162 20 : file_size,
163 20 : ),
164 : }
165 24 : }
166 :
167 : /// Get the LSN that the image layer covers.
168 2540656 : pub fn image_layer_lsn(&self) -> Lsn {
169 2540656 : assert!(!self.is_delta);
170 2540656 : assert!(self.lsn_range.start + 1 == self.lsn_range.end);
171 2540656 : self.lsn_range.start
172 2540656 : }
173 :
174 : /// Get the LSN range corresponding to a single image layer LSN.
175 2076 : pub fn image_layer_lsn_range(lsn: Lsn) -> Range<Lsn> {
176 2076 : lsn..(lsn + 1)
177 2076 : }
178 :
179 : /// Get a delta layer name for this layer.
180 : ///
181 : /// Panic: if this is not a delta layer.
182 6661 : pub fn delta_layer_name(&self) -> DeltaLayerName {
183 6661 : assert!(self.is_delta);
184 6661 : DeltaLayerName {
185 6661 : key_range: self.key_range.clone(),
186 6661 : lsn_range: self.lsn_range.clone(),
187 6661 : }
188 6661 : }
189 :
190 : /// Get a image layer name for this layer.
191 : ///
192 : /// Panic: if this is not an image layer, or the lsn range is invalid
193 1268 : pub fn image_layer_name(&self) -> ImageLayerName {
194 1268 : assert!(!self.is_delta);
195 1268 : assert!(self.lsn_range.start + 1 == self.lsn_range.end);
196 1268 : ImageLayerName {
197 1268 : key_range: self.key_range.clone(),
198 1268 : lsn: self.lsn_range.start,
199 1268 : }
200 1268 : }
201 :
202 7929 : pub fn layer_name(&self) -> LayerName {
203 7929 : if self.is_delta {
204 6661 : self.delta_layer_name().into()
205 : } else {
206 1268 : self.image_layer_name().into()
207 : }
208 7929 : }
209 :
210 : // TODO: remove this in the future once we refactor timeline APIs.
211 :
212 3577083 : pub fn get_lsn_range(&self) -> Range<Lsn> {
213 3577083 : self.lsn_range.clone()
214 3577083 : }
215 :
216 94656 : pub fn get_key_range(&self) -> Range<Key> {
217 94656 : self.key_range.clone()
218 94656 : }
219 :
220 0 : pub fn get_timeline_id(&self) -> TimelineId {
221 0 : self.timeline_id
222 0 : }
223 :
224 : /// Does this layer only contain some data for the key-range (incremental),
225 : /// or does it contain a version of every page? This is important to know
226 : /// for garbage collecting old layers: an incremental layer depends on
227 : /// the previous non-incremental layer.
228 5336 : pub fn is_incremental(&self) -> bool {
229 5336 : self.is_delta
230 5336 : }
231 :
232 5704482 : pub fn is_delta(&self) -> bool {
233 5704482 : self.is_delta
234 5704482 : }
235 :
236 16 : pub fn dump(&self) {
237 16 : if self.is_delta {
238 14 : println!(
239 14 : "----- delta layer for ten {} tli {} keys {}-{} lsn {}-{} is_incremental {} size {} ----",
240 14 : self.tenant_shard_id,
241 14 : self.timeline_id,
242 14 : self.key_range.start,
243 14 : self.key_range.end,
244 14 : self.lsn_range.start,
245 14 : self.lsn_range.end,
246 14 : self.is_incremental(),
247 14 : self.file_size,
248 14 : );
249 14 : } else {
250 2 : println!(
251 2 : "----- image layer for ten {} tli {} key {}-{} at {} is_incremental {} size {} ----",
252 2 : self.tenant_shard_id,
253 2 : self.timeline_id,
254 2 : self.key_range.start,
255 2 : self.key_range.end,
256 2 : self.image_layer_lsn(),
257 2 : self.is_incremental(),
258 2 : self.file_size
259 2 : );
260 2 : }
261 16 : }
262 :
263 158 : pub fn file_size(&self) -> u64 {
264 158 : self.file_size
265 158 : }
266 : }
|