Line data Source code
1 : //! In-memory index to track the tenant files on the remote storage.
2 : //!
3 : //! Able to restore itself from the storage index parts, that are located in every timeline's remote directory and contain all data about
4 : //! remote timeline layers and its metadata.
5 :
6 : use std::collections::HashMap;
7 :
8 : use chrono::NaiveDateTime;
9 : use pageserver_api::models::AuxFilePolicy;
10 : use pageserver_api::models::RelSizeMigration;
11 : use pageserver_api::shard::ShardIndex;
12 : use serde::{Deserialize, Serialize};
13 : use utils::id::TimelineId;
14 : use utils::lsn::Lsn;
15 :
16 : use super::is_same_remote_layer_path;
17 : use crate::tenant::Generation;
18 : use crate::tenant::metadata::TimelineMetadata;
19 : use crate::tenant::storage_layer::LayerName;
20 : use crate::tenant::timeline::import_pgdata;
21 :
22 : /// In-memory representation of an `index_part.json` file
23 : ///
24 : /// Contains the data about all files in the timeline, present remotely and its metadata.
25 : ///
26 : /// This type needs to be backwards and forwards compatible. When changing the fields,
27 : /// remember to add a test case for the changed version.
28 6068 : #[derive(Debug, PartialEq, Eq, Clone, Serialize, Deserialize)]
29 : pub struct IndexPart {
30 : /// Debugging aid describing the version of this type.
31 : #[serde(default)]
32 : version: usize,
33 :
34 : #[serde(default)]
35 : #[serde(skip_serializing_if = "Option::is_none")]
36 : pub deleted_at: Option<NaiveDateTime>,
37 :
38 : #[serde(default)]
39 : #[serde(skip_serializing_if = "Option::is_none")]
40 : pub archived_at: Option<NaiveDateTime>,
41 :
42 : /// This field supports import-from-pgdata ("fast imports" platform feature).
43 : /// We don't currently use fast imports, so, this field is None for all production timelines.
44 : /// See <https://github.com/neondatabase/neon/pull/9218> for more information.
45 : #[serde(default)]
46 : #[serde(skip_serializing_if = "Option::is_none")]
47 : pub import_pgdata: Option<import_pgdata::index_part_format::Root>,
48 :
49 : /// Layer filenames and metadata. For an index persisted in remote storage, all layers must
50 : /// exist in remote storage.
51 : pub layer_metadata: HashMap<LayerName, LayerFileMetadata>,
52 :
53 : /// Because of the trouble of eyeballing the legacy "metadata" field, we copied the
54 : /// "disk_consistent_lsn" out. After version 7 this is no longer needed, but the name cannot be
55 : /// reused.
56 : pub(super) disk_consistent_lsn: Lsn,
57 :
58 : // TODO: rename as "metadata" next week, keep the alias = "metadata_bytes", bump version Adding
59 : // the "alias = metadata" was forgotten in #7693, so we have to use "rewrite = metadata_bytes"
60 : // for backwards compatibility.
61 : #[serde(
62 : rename = "metadata_bytes",
63 : alias = "metadata",
64 : with = "crate::tenant::metadata::modern_serde"
65 : )]
66 : pub metadata: TimelineMetadata,
67 :
68 : #[serde(default)]
69 : pub(crate) lineage: Lineage,
70 :
71 : #[serde(skip_serializing_if = "Option::is_none", default)]
72 : pub(crate) gc_blocking: Option<GcBlocking>,
73 :
74 : /// Describes the kind of aux files stored in the timeline.
75 : ///
76 : /// The value is modified during file ingestion when the latest wanted value communicated via tenant config is applied if it is acceptable.
77 : /// A V1 setting after V2 files have been committed is not accepted.
78 : ///
79 : /// None means no aux files have been written to the storage before the point
80 : /// when this flag is introduced.
81 : ///
82 : /// This flag is not used any more as all tenants have been transitioned to the new aux file policy.
83 : #[serde(skip_serializing_if = "Option::is_none", default)]
84 : pub(crate) last_aux_file_policy: Option<AuxFilePolicy>,
85 :
86 : #[serde(skip_serializing_if = "Option::is_none", default)]
87 : pub(crate) rel_size_migration: Option<RelSizeMigration>,
88 :
89 : /// Not used anymore -- kept here for backwards compatibility. Merged into the `gc_compaction` field.
90 : #[serde(skip_serializing_if = "Option::is_none", default)]
91 : l2_lsn: Option<Lsn>,
92 :
93 : /// State for the garbage-collecting compaction pass.
94 : ///
95 : /// Garbage-collecting compaction (gc-compaction) prunes `Value`s that are outside
96 : /// the PITR window and not needed by child timelines.
97 : ///
98 : /// A commonly used synonym for this compaction pass is
99 : /// "bottommost-compaction" because the affected LSN range
100 : /// is the "bottom" of the (key,lsn) map.
101 : ///
102 : /// Gc-compaction is a quite expensive operation; that's why we use
103 : /// trigger condition.
104 : /// This field here holds the state pertaining to that trigger condition
105 : /// and (in future) to the progress of the gc-compaction, so that it's
106 : /// resumable across restarts & migrations.
107 : ///
108 : /// Note that the underlying algorithm is _also_ called `gc-compaction`
109 : /// in most places & design docs; but in fact it is more flexible than
110 : /// just the specific use case here; it needs a new name.
111 : #[serde(skip_serializing_if = "Option::is_none", default)]
112 : pub(crate) gc_compaction: Option<GcCompactionState>,
113 :
114 : /// The timestamp when the timeline was marked invisible in synthetic size calculations.
115 : #[serde(skip_serializing_if = "Option::is_none", default)]
116 : pub(crate) marked_invisible_at: Option<NaiveDateTime>,
117 : }
118 :
119 8 : #[derive(Debug, PartialEq, Eq, Clone, Serialize, Deserialize)]
120 : pub struct GcCompactionState {
121 : /// The upper bound of the last completed garbage-collecting compaction, aka. L2 LSN.
122 : pub(crate) last_completed_lsn: Lsn,
123 : }
124 :
125 : impl IndexPart {
126 : /// When adding or modifying any parts of `IndexPart`, increment the version so that it can be
127 : /// used to understand later versions.
128 : ///
129 : /// Version is currently informative only.
130 : /// Version history
131 : /// - 2: added `deleted_at`
132 : /// - 3: no longer deserialize `timeline_layers` (serialized format is the same, but timeline_layers
133 : /// is always generated from the keys of `layer_metadata`)
134 : /// - 4: timeline_layers is fully removed.
135 : /// - 5: lineage was added
136 : /// - 6: last_aux_file_policy is added.
137 : /// - 7: metadata_bytes is no longer written, but still read
138 : /// - 8: added `archived_at`
139 : /// - 9: +gc_blocking
140 : /// - 10: +import_pgdata
141 : /// - 11: +rel_size_migration
142 : /// - 12: +l2_lsn
143 : /// - 13: +gc_compaction
144 : /// - 14: +marked_invisible_at
145 : const LATEST_VERSION: usize = 14;
146 :
147 : // Versions we may see when reading from a bucket.
148 : pub const KNOWN_VERSIONS: &'static [usize] = &[1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14];
149 :
150 : pub const FILE_NAME: &'static str = "index_part.json";
151 :
152 1060 : pub fn empty(metadata: TimelineMetadata) -> Self {
153 1060 : IndexPart {
154 1060 : version: Self::LATEST_VERSION,
155 1060 : layer_metadata: Default::default(),
156 1060 : disk_consistent_lsn: metadata.disk_consistent_lsn(),
157 1060 : metadata,
158 1060 : deleted_at: None,
159 1060 : archived_at: None,
160 1060 : lineage: Default::default(),
161 1060 : gc_blocking: None,
162 1060 : last_aux_file_policy: None,
163 1060 : import_pgdata: None,
164 1060 : rel_size_migration: None,
165 1060 : l2_lsn: None,
166 1060 : gc_compaction: None,
167 1060 : marked_invisible_at: None,
168 1060 : }
169 1060 : }
170 :
171 0 : pub fn version(&self) -> usize {
172 0 : self.version
173 0 : }
174 :
175 : /// If you want this under normal operations, read it from self.metadata:
176 : /// this method is just for the scrubber to use when validating an index.
177 0 : pub fn duplicated_disk_consistent_lsn(&self) -> Lsn {
178 0 : self.disk_consistent_lsn
179 0 : }
180 :
181 56 : pub fn from_json_bytes(bytes: &[u8]) -> Result<Self, serde_json::Error> {
182 56 : serde_json::from_slice::<IndexPart>(bytes)
183 56 : }
184 :
185 2952 : pub fn to_json_bytes(&self) -> serde_json::Result<Vec<u8>> {
186 2952 : serde_json::to_vec(self)
187 2952 : }
188 :
189 : #[cfg(test)]
190 56 : pub(crate) fn example() -> Self {
191 56 : Self::empty(TimelineMetadata::example())
192 56 : }
193 :
194 : /// Returns true if the index contains a reference to the given layer (i.e. file path).
195 : ///
196 : /// TODO: there should be a variant of LayerName for the physical remote path that contains
197 : /// information about the shard and generation, to avoid passing in metadata.
198 69577 : pub fn references(&self, name: &LayerName, metadata: &LayerFileMetadata) -> bool {
199 69577 : let Some(index_metadata) = self.layer_metadata.get(name) else {
200 34535 : return false;
201 : };
202 35042 : is_same_remote_layer_path(name, metadata, name, index_metadata)
203 69577 : }
204 :
205 : /// Check for invariants in the index: this is useful when uploading an index to ensure that if
206 : /// we encounter a bug, we do not persist buggy metadata.
207 5408 : pub(crate) fn validate(&self) -> Result<(), String> {
208 5408 : if self.import_pgdata.is_none()
209 5408 : && self.metadata.ancestor_timeline().is_none()
210 4010 : && self.layer_metadata.is_empty()
211 : {
212 : // Unless we're in the middle of a raw pgdata import, or this is a child timeline,the index must
213 : // always have at least one layer.
214 0 : return Err("Index has no ancestor and no layers".to_string());
215 5408 : }
216 5408 :
217 5408 : Ok(())
218 5408 : }
219 : }
220 :
221 : /// Metadata gathered for each of the layer files.
222 : ///
223 : /// Fields have to be `Option`s because remote [`IndexPart`]'s can be from different version, which
224 : /// might have less or more metadata depending if upgrading or rolling back an upgrade.
225 18976 : #[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Serialize, Deserialize)]
226 : pub struct LayerFileMetadata {
227 : pub file_size: u64,
228 :
229 : #[serde(default = "Generation::none")]
230 : #[serde(skip_serializing_if = "Generation::is_none")]
231 : pub generation: Generation,
232 :
233 : #[serde(default = "ShardIndex::unsharded")]
234 : #[serde(skip_serializing_if = "ShardIndex::is_unsharded")]
235 : pub shard: ShardIndex,
236 : }
237 :
238 : impl LayerFileMetadata {
239 6341 : pub fn new(file_size: u64, generation: Generation, shard: ShardIndex) -> Self {
240 6341 : LayerFileMetadata {
241 6341 : file_size,
242 6341 : generation,
243 6341 : shard,
244 6341 : }
245 6341 : }
246 : /// Helper to get both generation and file size in a tuple
247 0 : pub fn generation_file_size(&self) -> (Generation, u64) {
248 0 : (self.generation, self.file_size)
249 0 : }
250 : }
251 :
252 : /// Limited history of earlier ancestors.
253 : ///
254 : /// A timeline can have more than 1 earlier ancestor, in the rare case that it was repeatedly
255 : /// reparented by having an later timeline be detached from it's ancestor.
256 16 : #[derive(Debug, PartialEq, Eq, Clone, Serialize, Deserialize, Default)]
257 : pub(crate) struct Lineage {
258 : /// Has the `reparenting_history` been truncated to [`Lineage::REMEMBER_AT_MOST`].
259 : #[serde(skip_serializing_if = "is_false", default)]
260 : reparenting_history_truncated: bool,
261 :
262 : /// Earlier ancestors, truncated when [`Self::reparenting_history_truncated`]
263 : ///
264 : /// These are stored in case we want to support WAL based DR on the timeline. There can be many
265 : /// of these and at most one [`Self::original_ancestor`]. There cannot be more reparentings
266 : /// after [`Self::original_ancestor`] has been set.
267 : #[serde(skip_serializing_if = "Vec::is_empty", default)]
268 : reparenting_history: Vec<TimelineId>,
269 :
270 : /// The ancestor from which this timeline has been detached from and when.
271 : ///
272 : /// If you are adding support for detaching from a hierarchy, consider changing the ancestry
273 : /// into a `Vec<(TimelineId, Lsn)>` to be a path instead.
274 : // FIXME: this is insufficient even for path of two timelines for future wal recovery
275 : // purposes:
276 : //
277 : // assuming a "old main" which has received most of the WAL, and has a branch "new main",
278 : // starting a bit before "old main" last_record_lsn. the current version works fine,
279 : // because we will know to replay wal and branch at the recorded Lsn to do wal recovery.
280 : //
281 : // then assuming "new main" would similarly receive a branch right before its last_record_lsn,
282 : // "new new main". the current implementation would just store ("new main", ancestor_lsn, _)
283 : // here. however, we cannot recover from WAL using only that information, we would need the
284 : // whole ancestry here:
285 : //
286 : // ```json
287 : // [
288 : // ["old main", ancestor_lsn("new main"), _],
289 : // ["new main", ancestor_lsn("new new main"), _]
290 : // ]
291 : // ```
292 : #[serde(skip_serializing_if = "Option::is_none", default)]
293 : original_ancestor: Option<(TimelineId, Lsn, NaiveDateTime)>,
294 : }
295 :
296 12136 : fn is_false(b: &bool) -> bool {
297 12136 : !b
298 12136 : }
299 :
300 : impl Lineage {
301 : const REMEMBER_AT_MOST: usize = 100;
302 :
303 0 : pub(crate) fn record_previous_ancestor(&mut self, old_ancestor: &TimelineId) -> bool {
304 0 : if self.reparenting_history.last() == Some(old_ancestor) {
305 : // do not re-record it
306 0 : false
307 : } else {
308 : #[cfg(feature = "testing")]
309 : {
310 0 : let existing = self
311 0 : .reparenting_history
312 0 : .iter()
313 0 : .position(|x| x == old_ancestor);
314 0 : assert_eq!(
315 : existing, None,
316 0 : "we cannot reparent onto and off and onto the same timeline twice"
317 : );
318 : }
319 0 : let drop_oldest = self.reparenting_history.len() + 1 >= Self::REMEMBER_AT_MOST;
320 0 :
321 0 : self.reparenting_history_truncated |= drop_oldest;
322 0 : if drop_oldest {
323 0 : self.reparenting_history.remove(0);
324 0 : }
325 0 : self.reparenting_history.push(*old_ancestor);
326 0 : true
327 : }
328 0 : }
329 :
330 : /// Returns true if anything changed.
331 0 : pub(crate) fn record_detaching(&mut self, branchpoint: &(TimelineId, Lsn)) -> bool {
332 0 : if let Some((id, lsn, _)) = self.original_ancestor {
333 0 : assert_eq!(
334 0 : &(id, lsn),
335 : branchpoint,
336 0 : "detaching attempt has to be for the same ancestor we are already detached from"
337 : );
338 0 : false
339 : } else {
340 0 : self.original_ancestor =
341 0 : Some((branchpoint.0, branchpoint.1, chrono::Utc::now().naive_utc()));
342 0 : true
343 : }
344 0 : }
345 :
346 : /// The queried lsn is most likely the basebackup lsn, and this answers question "is it allowed
347 : /// to start a read/write primary at this lsn".
348 : ///
349 : /// Returns true if the Lsn was previously our branch point.
350 0 : pub(crate) fn is_previous_ancestor_lsn(&self, lsn: Lsn) -> bool {
351 0 : self.original_ancestor
352 0 : .is_some_and(|(_, ancestor_lsn, _)| ancestor_lsn == lsn)
353 0 : }
354 :
355 : /// Returns true if the timeline originally had an ancestor, and no longer has one.
356 0 : pub(crate) fn is_detached_from_ancestor(&self) -> bool {
357 0 : self.original_ancestor.is_some()
358 0 : }
359 :
360 : /// Returns original ancestor timeline id and lsn that this timeline has been detached from.
361 0 : pub(crate) fn detached_previous_ancestor(&self) -> Option<(TimelineId, Lsn)> {
362 0 : self.original_ancestor.map(|(id, lsn, _)| (id, lsn))
363 0 : }
364 :
365 0 : pub(crate) fn is_reparented(&self) -> bool {
366 0 : !self.reparenting_history.is_empty()
367 0 : }
368 : }
369 :
370 40 : #[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
371 : pub(crate) struct GcBlocking {
372 : pub(crate) started_at: NaiveDateTime,
373 : pub(crate) reasons: enumset::EnumSet<GcBlockingReason>,
374 : }
375 :
376 20 : #[derive(Debug, enumset::EnumSetType, serde::Serialize, serde::Deserialize)]
377 : #[enumset(serialize_repr = "list")]
378 : pub(crate) enum GcBlockingReason {
379 : Manual,
380 : DetachAncestor,
381 : }
382 :
383 : impl GcBlocking {
384 0 : pub(super) fn started_now_for(reason: GcBlockingReason) -> Self {
385 0 : GcBlocking {
386 0 : started_at: chrono::Utc::now().naive_utc(),
387 0 : reasons: enumset::EnumSet::only(reason),
388 0 : }
389 0 : }
390 :
391 : /// Returns true if the given reason is one of the reasons why the gc is blocked.
392 0 : pub(crate) fn blocked_by(&self, reason: GcBlockingReason) -> bool {
393 0 : self.reasons.contains(reason)
394 0 : }
395 :
396 : /// Returns a version of self with the given reason.
397 0 : pub(super) fn with_reason(&self, reason: GcBlockingReason) -> Self {
398 0 : assert!(!self.blocked_by(reason));
399 0 : let mut reasons = self.reasons;
400 0 : reasons.insert(reason);
401 0 :
402 0 : Self {
403 0 : started_at: self.started_at,
404 0 : reasons,
405 0 : }
406 0 : }
407 :
408 : /// Returns a version of self without the given reason. Assumption is that if
409 : /// there are no more reasons, we can unblock the gc by returning `None`.
410 0 : pub(super) fn without_reason(&self, reason: GcBlockingReason) -> Option<Self> {
411 0 : assert!(self.blocked_by(reason));
412 :
413 0 : if self.reasons.len() == 1 {
414 0 : None
415 : } else {
416 0 : let mut reasons = self.reasons;
417 0 : assert!(reasons.remove(reason));
418 0 : assert!(!reasons.is_empty());
419 :
420 0 : Some(Self {
421 0 : started_at: self.started_at,
422 0 : reasons,
423 0 : })
424 : }
425 0 : }
426 : }
427 :
428 : #[cfg(test)]
429 : mod tests {
430 : use std::str::FromStr;
431 :
432 : use utils::id::TimelineId;
433 :
434 : use super::*;
435 :
436 : #[test]
437 4 : fn v1_indexpart_is_parsed() {
438 4 : let example = r#"{
439 4 : "version":1,
440 4 : "timeline_layers":["000000000000000000000000000000000000-FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF__0000000001696070-00000000016960E9"],
441 4 : "layer_metadata":{
442 4 : "000000000000000000000000000000000000-FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF__0000000001696070-00000000016960E9": { "file_size": 25600000 },
443 4 : "000000000000000000000000000000000000-FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF__00000000016B59D8-00000000016B5A51": { "file_size": 9007199254741001 }
444 4 : },
445 4 : "disk_consistent_lsn":"0/16960E8",
446 4 : "metadata_bytes":[113,11,159,210,0,54,0,4,0,0,0,0,1,105,96,232,1,0,0,0,0,1,105,96,112,0,0,0,0,0,0,0,0,0,0,0,0,0,1,105,96,112,0,0,0,0,1,105,96,112,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]
447 4 : }"#;
448 4 :
449 4 : let expected = IndexPart {
450 4 : // note this is not verified, could be anything, but exists for humans debugging.. could be the git version instead?
451 4 : version: 1,
452 4 : layer_metadata: HashMap::from([
453 4 : ("000000000000000000000000000000000000-FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF__0000000001696070-00000000016960E9".parse().unwrap(), LayerFileMetadata {
454 4 : file_size: 25600000,
455 4 : generation: Generation::none(),
456 4 : shard: ShardIndex::unsharded()
457 4 : }),
458 4 : ("000000000000000000000000000000000000-FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF__00000000016B59D8-00000000016B5A51".parse().unwrap(), LayerFileMetadata {
459 4 : // serde_json should always parse this but this might be a double with jq for
460 4 : // example.
461 4 : file_size: 9007199254741001,
462 4 : generation: Generation::none(),
463 4 : shard: ShardIndex::unsharded()
464 4 : })
465 4 : ]),
466 4 : disk_consistent_lsn: "0/16960E8".parse::<Lsn>().unwrap(),
467 4 : metadata: TimelineMetadata::from_bytes(&[113,11,159,210,0,54,0,4,0,0,0,0,1,105,96,232,1,0,0,0,0,1,105,96,112,0,0,0,0,0,0,0,0,0,0,0,0,0,1,105,96,112,0,0,0,0,1,105,96,112,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]).unwrap(),
468 4 : deleted_at: None,
469 4 : archived_at: None,
470 4 : lineage: Lineage::default(),
471 4 : gc_blocking: None,
472 4 : last_aux_file_policy: None,
473 4 : import_pgdata: None,
474 4 : rel_size_migration: None,
475 4 : l2_lsn: None,
476 4 : gc_compaction: None,
477 4 : marked_invisible_at: None,
478 4 : };
479 4 :
480 4 : let part = IndexPart::from_json_bytes(example.as_bytes()).unwrap();
481 4 : assert_eq!(part, expected);
482 4 : }
483 :
484 : #[test]
485 4 : fn v1_indexpart_is_parsed_with_optional_missing_layers() {
486 4 : let example = r#"{
487 4 : "version":1,
488 4 : "timeline_layers":["000000000000000000000000000000000000-FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF__0000000001696070-00000000016960E9"],
489 4 : "missing_layers":["This shouldn't fail deserialization"],
490 4 : "layer_metadata":{
491 4 : "000000000000000000000000000000000000-FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF__0000000001696070-00000000016960E9": { "file_size": 25600000 },
492 4 : "000000000000000000000000000000000000-FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF__00000000016B59D8-00000000016B5A51": { "file_size": 9007199254741001 }
493 4 : },
494 4 : "disk_consistent_lsn":"0/16960E8",
495 4 : "metadata_bytes":[113,11,159,210,0,54,0,4,0,0,0,0,1,105,96,232,1,0,0,0,0,1,105,96,112,0,0,0,0,0,0,0,0,0,0,0,0,0,1,105,96,112,0,0,0,0,1,105,96,112,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]
496 4 : }"#;
497 4 :
498 4 : let expected = IndexPart {
499 4 : // note this is not verified, could be anything, but exists for humans debugging.. could be the git version instead?
500 4 : version: 1,
501 4 : layer_metadata: HashMap::from([
502 4 : ("000000000000000000000000000000000000-FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF__0000000001696070-00000000016960E9".parse().unwrap(), LayerFileMetadata {
503 4 : file_size: 25600000,
504 4 : generation: Generation::none(),
505 4 : shard: ShardIndex::unsharded()
506 4 : }),
507 4 : ("000000000000000000000000000000000000-FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF__00000000016B59D8-00000000016B5A51".parse().unwrap(), LayerFileMetadata {
508 4 : // serde_json should always parse this but this might be a double with jq for
509 4 : // example.
510 4 : file_size: 9007199254741001,
511 4 : generation: Generation::none(),
512 4 : shard: ShardIndex::unsharded()
513 4 : })
514 4 : ]),
515 4 : disk_consistent_lsn: "0/16960E8".parse::<Lsn>().unwrap(),
516 4 : metadata: TimelineMetadata::from_bytes(&[113,11,159,210,0,54,0,4,0,0,0,0,1,105,96,232,1,0,0,0,0,1,105,96,112,0,0,0,0,0,0,0,0,0,0,0,0,0,1,105,96,112,0,0,0,0,1,105,96,112,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]).unwrap(),
517 4 : deleted_at: None,
518 4 : archived_at: None,
519 4 : lineage: Lineage::default(),
520 4 : gc_blocking: None,
521 4 : last_aux_file_policy: None,
522 4 : import_pgdata: None,
523 4 : rel_size_migration: None,
524 4 : l2_lsn: None,
525 4 : gc_compaction: None,
526 4 : marked_invisible_at: None,
527 4 : };
528 4 :
529 4 : let part = IndexPart::from_json_bytes(example.as_bytes()).unwrap();
530 4 : assert_eq!(part, expected);
531 4 : }
532 :
533 : #[test]
534 4 : fn v2_indexpart_is_parsed_with_deleted_at() {
535 4 : let example = r#"{
536 4 : "version":2,
537 4 : "timeline_layers":["000000000000000000000000000000000000-FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF__0000000001696070-00000000016960E9"],
538 4 : "missing_layers":["This shouldn't fail deserialization"],
539 4 : "layer_metadata":{
540 4 : "000000000000000000000000000000000000-FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF__0000000001696070-00000000016960E9": { "file_size": 25600000 },
541 4 : "000000000000000000000000000000000000-FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF__00000000016B59D8-00000000016B5A51": { "file_size": 9007199254741001 }
542 4 : },
543 4 : "disk_consistent_lsn":"0/16960E8",
544 4 : "metadata_bytes":[113,11,159,210,0,54,0,4,0,0,0,0,1,105,96,232,1,0,0,0,0,1,105,96,112,0,0,0,0,0,0,0,0,0,0,0,0,0,1,105,96,112,0,0,0,0,1,105,96,112,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],
545 4 : "deleted_at": "2023-07-31T09:00:00.123"
546 4 : }"#;
547 4 :
548 4 : let expected = IndexPart {
549 4 : // note this is not verified, could be anything, but exists for humans debugging.. could be the git version instead?
550 4 : version: 2,
551 4 : layer_metadata: HashMap::from([
552 4 : ("000000000000000000000000000000000000-FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF__0000000001696070-00000000016960E9".parse().unwrap(), LayerFileMetadata {
553 4 : file_size: 25600000,
554 4 : generation: Generation::none(),
555 4 : shard: ShardIndex::unsharded()
556 4 : }),
557 4 : ("000000000000000000000000000000000000-FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF__00000000016B59D8-00000000016B5A51".parse().unwrap(), LayerFileMetadata {
558 4 : // serde_json should always parse this but this might be a double with jq for
559 4 : // example.
560 4 : file_size: 9007199254741001,
561 4 : generation: Generation::none(),
562 4 : shard: ShardIndex::unsharded()
563 4 : })
564 4 : ]),
565 4 : disk_consistent_lsn: "0/16960E8".parse::<Lsn>().unwrap(),
566 4 : metadata: TimelineMetadata::from_bytes(&[113,11,159,210,0,54,0,4,0,0,0,0,1,105,96,232,1,0,0,0,0,1,105,96,112,0,0,0,0,0,0,0,0,0,0,0,0,0,1,105,96,112,0,0,0,0,1,105,96,112,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]).unwrap(),
567 4 : deleted_at: Some(parse_naive_datetime("2023-07-31T09:00:00.123000000")),
568 4 : archived_at: None,
569 4 : lineage: Lineage::default(),
570 4 : gc_blocking: None,
571 4 : last_aux_file_policy: None,
572 4 : import_pgdata: None,
573 4 : rel_size_migration: None,
574 4 : l2_lsn: None,
575 4 : gc_compaction: None,
576 4 : marked_invisible_at: None,
577 4 : };
578 4 :
579 4 : let part = IndexPart::from_json_bytes(example.as_bytes()).unwrap();
580 4 : assert_eq!(part, expected);
581 4 : }
582 :
583 : #[test]
584 4 : fn empty_layers_are_parsed() {
585 4 : let empty_layers_json = r#"{
586 4 : "version":1,
587 4 : "timeline_layers":[],
588 4 : "layer_metadata":{},
589 4 : "disk_consistent_lsn":"0/2532648",
590 4 : "metadata_bytes":[136,151,49,208,0,70,0,4,0,0,0,0,2,83,38,72,1,0,0,0,0,2,83,38,32,1,87,198,240,135,97,119,45,125,38,29,155,161,140,141,255,210,0,0,0,0,2,83,38,72,0,0,0,0,1,73,240,192,0,0,0,0,1,73,240,192,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]
591 4 : }"#;
592 4 :
593 4 : let expected = IndexPart {
594 4 : version: 1,
595 4 : layer_metadata: HashMap::new(),
596 4 : disk_consistent_lsn: "0/2532648".parse::<Lsn>().unwrap(),
597 4 : metadata: TimelineMetadata::from_bytes(&[
598 4 : 136, 151, 49, 208, 0, 70, 0, 4, 0, 0, 0, 0, 2, 83, 38, 72, 1, 0, 0, 0, 0, 2, 83,
599 4 : 38, 32, 1, 87, 198, 240, 135, 97, 119, 45, 125, 38, 29, 155, 161, 140, 141, 255,
600 4 : 210, 0, 0, 0, 0, 2, 83, 38, 72, 0, 0, 0, 0, 1, 73, 240, 192, 0, 0, 0, 0, 1, 73,
601 4 : 240, 192, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
602 4 : 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
603 4 : 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
604 4 : 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
605 4 : 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
606 4 : 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
607 4 : 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
608 4 : 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
609 4 : 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
610 4 : 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
611 4 : 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
612 4 : 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
613 4 : 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
614 4 : 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
615 4 : 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
616 4 : 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
617 4 : 0, 0,
618 4 : ])
619 4 : .unwrap(),
620 4 : deleted_at: None,
621 4 : archived_at: None,
622 4 : lineage: Lineage::default(),
623 4 : gc_blocking: None,
624 4 : last_aux_file_policy: None,
625 4 : import_pgdata: None,
626 4 : rel_size_migration: None,
627 4 : l2_lsn: None,
628 4 : gc_compaction: None,
629 4 : marked_invisible_at: None,
630 4 : };
631 4 :
632 4 : let empty_layers_parsed = IndexPart::from_json_bytes(empty_layers_json.as_bytes()).unwrap();
633 4 :
634 4 : assert_eq!(empty_layers_parsed, expected);
635 4 : }
636 :
637 : #[test]
638 4 : fn v4_indexpart_is_parsed() {
639 4 : let example = r#"{
640 4 : "version":4,
641 4 : "layer_metadata":{
642 4 : "000000000000000000000000000000000000-FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF__0000000001696070-00000000016960E9": { "file_size": 25600000 },
643 4 : "000000000000000000000000000000000000-FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF__00000000016B59D8-00000000016B5A51": { "file_size": 9007199254741001 }
644 4 : },
645 4 : "disk_consistent_lsn":"0/16960E8",
646 4 : "metadata_bytes":[113,11,159,210,0,54,0,4,0,0,0,0,1,105,96,232,1,0,0,0,0,1,105,96,112,0,0,0,0,0,0,0,0,0,0,0,0,0,1,105,96,112,0,0,0,0,1,105,96,112,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],
647 4 : "deleted_at": "2023-07-31T09:00:00.123"
648 4 : }"#;
649 4 :
650 4 : let expected = IndexPart {
651 4 : version: 4,
652 4 : layer_metadata: HashMap::from([
653 4 : ("000000000000000000000000000000000000-FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF__0000000001696070-00000000016960E9".parse().unwrap(), LayerFileMetadata {
654 4 : file_size: 25600000,
655 4 : generation: Generation::none(),
656 4 : shard: ShardIndex::unsharded()
657 4 : }),
658 4 : ("000000000000000000000000000000000000-FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF__00000000016B59D8-00000000016B5A51".parse().unwrap(), LayerFileMetadata {
659 4 : // serde_json should always parse this but this might be a double with jq for
660 4 : // example.
661 4 : file_size: 9007199254741001,
662 4 : generation: Generation::none(),
663 4 : shard: ShardIndex::unsharded()
664 4 : })
665 4 : ]),
666 4 : disk_consistent_lsn: "0/16960E8".parse::<Lsn>().unwrap(),
667 4 : metadata: TimelineMetadata::from_bytes(&[113,11,159,210,0,54,0,4,0,0,0,0,1,105,96,232,1,0,0,0,0,1,105,96,112,0,0,0,0,0,0,0,0,0,0,0,0,0,1,105,96,112,0,0,0,0,1,105,96,112,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]).unwrap(),
668 4 : deleted_at: Some(parse_naive_datetime("2023-07-31T09:00:00.123000000")),
669 4 : archived_at: None,
670 4 : lineage: Lineage::default(),
671 4 : gc_blocking: None,
672 4 : last_aux_file_policy: None,
673 4 : import_pgdata: None,
674 4 : rel_size_migration: None,
675 4 : l2_lsn: None,
676 4 : gc_compaction: None,
677 4 : marked_invisible_at: None,
678 4 : };
679 4 :
680 4 : let part = IndexPart::from_json_bytes(example.as_bytes()).unwrap();
681 4 : assert_eq!(part, expected);
682 4 : }
683 :
684 : #[test]
685 4 : fn v5_indexpart_is_parsed() {
686 4 : let example = r#"{
687 4 : "version":5,
688 4 : "layer_metadata":{
689 4 : "000000000000000000000000000000000000-FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF__00000000014EF420-00000000014EF499":{"file_size":23289856,"generation":1},
690 4 : "000000000000000000000000000000000000-FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF__00000000014EF499-00000000015A7619":{"file_size":1015808,"generation":1}},
691 4 : "disk_consistent_lsn":"0/15A7618",
692 4 : "metadata_bytes":[226,88,25,241,0,46,0,4,0,0,0,0,1,90,118,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,78,244,32,0,0,0,0,1,78,244,32,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],
693 4 : "lineage":{
694 4 : "original_ancestor":["e2bfd8c633d713d279e6fcd2bcc15b6d","0/15A7618","2024-05-07T18:52:36.322426563"],
695 4 : "reparenting_history":["e1bfd8c633d713d279e6fcd2bcc15b6d"]
696 4 : }
697 4 : }"#;
698 4 :
699 4 : let expected = IndexPart {
700 4 : version: 5,
701 4 : layer_metadata: HashMap::from([
702 4 : ("000000000000000000000000000000000000-FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF__00000000014EF420-00000000014EF499".parse().unwrap(), LayerFileMetadata {
703 4 : file_size: 23289856,
704 4 : generation: Generation::new(1),
705 4 : shard: ShardIndex::unsharded(),
706 4 : }),
707 4 : ("000000000000000000000000000000000000-FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF__00000000014EF499-00000000015A7619".parse().unwrap(), LayerFileMetadata {
708 4 : file_size: 1015808,
709 4 : generation: Generation::new(1),
710 4 : shard: ShardIndex::unsharded(),
711 4 : })
712 4 : ]),
713 4 : disk_consistent_lsn: Lsn::from_str("0/15A7618").unwrap(),
714 4 : metadata: TimelineMetadata::from_bytes(&[226,88,25,241,0,46,0,4,0,0,0,0,1,90,118,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,78,244,32,0,0,0,0,1,78,244,32,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]).unwrap(),
715 4 : deleted_at: None,
716 4 : archived_at: None,
717 4 : lineage: Lineage {
718 4 : reparenting_history_truncated: false,
719 4 : reparenting_history: vec![TimelineId::from_str("e1bfd8c633d713d279e6fcd2bcc15b6d").unwrap()],
720 4 : original_ancestor: Some((TimelineId::from_str("e2bfd8c633d713d279e6fcd2bcc15b6d").unwrap(), Lsn::from_str("0/15A7618").unwrap(), parse_naive_datetime("2024-05-07T18:52:36.322426563"))),
721 4 : },
722 4 : gc_blocking: None,
723 4 : last_aux_file_policy: None,
724 4 : import_pgdata: None,
725 4 : rel_size_migration: None,
726 4 : l2_lsn: None,
727 4 : gc_compaction: None,
728 4 : marked_invisible_at: None,
729 4 : };
730 4 :
731 4 : let part = IndexPart::from_json_bytes(example.as_bytes()).unwrap();
732 4 : assert_eq!(part, expected);
733 4 : }
734 :
735 : #[test]
736 4 : fn v6_indexpart_is_parsed() {
737 4 : let example = r#"{
738 4 : "version":6,
739 4 : "layer_metadata":{
740 4 : "000000000000000000000000000000000000-FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF__0000000001696070-00000000016960E9": { "file_size": 25600000 },
741 4 : "000000000000000000000000000000000000-FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF__00000000016B59D8-00000000016B5A51": { "file_size": 9007199254741001 }
742 4 : },
743 4 : "disk_consistent_lsn":"0/16960E8",
744 4 : "metadata_bytes":[113,11,159,210,0,54,0,4,0,0,0,0,1,105,96,232,1,0,0,0,0,1,105,96,112,0,0,0,0,0,0,0,0,0,0,0,0,0,1,105,96,112,0,0,0,0,1,105,96,112,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],
745 4 : "deleted_at": "2023-07-31T09:00:00.123",
746 4 : "lineage":{
747 4 : "original_ancestor":["e2bfd8c633d713d279e6fcd2bcc15b6d","0/15A7618","2024-05-07T18:52:36.322426563"],
748 4 : "reparenting_history":["e1bfd8c633d713d279e6fcd2bcc15b6d"]
749 4 : },
750 4 : "last_aux_file_policy": "V2"
751 4 : }"#;
752 4 :
753 4 : let expected = IndexPart {
754 4 : version: 6,
755 4 : layer_metadata: HashMap::from([
756 4 : ("000000000000000000000000000000000000-FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF__0000000001696070-00000000016960E9".parse().unwrap(), LayerFileMetadata {
757 4 : file_size: 25600000,
758 4 : generation: Generation::none(),
759 4 : shard: ShardIndex::unsharded()
760 4 : }),
761 4 : ("000000000000000000000000000000000000-FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF__00000000016B59D8-00000000016B5A51".parse().unwrap(), LayerFileMetadata {
762 4 : // serde_json should always parse this but this might be a double with jq for
763 4 : // example.
764 4 : file_size: 9007199254741001,
765 4 : generation: Generation::none(),
766 4 : shard: ShardIndex::unsharded()
767 4 : })
768 4 : ]),
769 4 : disk_consistent_lsn: "0/16960E8".parse::<Lsn>().unwrap(),
770 4 : metadata: TimelineMetadata::from_bytes(&[113,11,159,210,0,54,0,4,0,0,0,0,1,105,96,232,1,0,0,0,0,1,105,96,112,0,0,0,0,0,0,0,0,0,0,0,0,0,1,105,96,112,0,0,0,0,1,105,96,112,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]).unwrap(),
771 4 : deleted_at: Some(parse_naive_datetime("2023-07-31T09:00:00.123000000")),
772 4 : archived_at: None,
773 4 : lineage: Lineage {
774 4 : reparenting_history_truncated: false,
775 4 : reparenting_history: vec![TimelineId::from_str("e1bfd8c633d713d279e6fcd2bcc15b6d").unwrap()],
776 4 : original_ancestor: Some((TimelineId::from_str("e2bfd8c633d713d279e6fcd2bcc15b6d").unwrap(), Lsn::from_str("0/15A7618").unwrap(), parse_naive_datetime("2024-05-07T18:52:36.322426563"))),
777 4 : },
778 4 : gc_blocking: None,
779 4 : last_aux_file_policy: Some(AuxFilePolicy::V2),
780 4 : import_pgdata: None,
781 4 : rel_size_migration: None,
782 4 : l2_lsn: None,
783 4 : gc_compaction: None,
784 4 : marked_invisible_at: None,
785 4 : };
786 4 :
787 4 : let part = IndexPart::from_json_bytes(example.as_bytes()).unwrap();
788 4 : assert_eq!(part, expected);
789 4 : }
790 :
791 : #[test]
792 4 : fn v7_indexpart_is_parsed() {
793 4 : let example = r#"{
794 4 : "version": 7,
795 4 : "layer_metadata":{
796 4 : "000000000000000000000000000000000000-FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF__0000000001696070-00000000016960E9": { "file_size": 25600000 },
797 4 : "000000000000000000000000000000000000-FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF__00000000016B59D8-00000000016B5A51": { "file_size": 9007199254741001 }
798 4 : },
799 4 : "disk_consistent_lsn":"0/16960E8",
800 4 : "metadata": {
801 4 : "disk_consistent_lsn": "0/16960E8",
802 4 : "prev_record_lsn": "0/1696070",
803 4 : "ancestor_timeline": "e45a7f37d3ee2ff17dc14bf4f4e3f52e",
804 4 : "ancestor_lsn": "0/0",
805 4 : "latest_gc_cutoff_lsn": "0/1696070",
806 4 : "initdb_lsn": "0/1696070",
807 4 : "pg_version": 14
808 4 : },
809 4 : "deleted_at": "2023-07-31T09:00:00.123"
810 4 : }"#;
811 4 :
812 4 : let expected = IndexPart {
813 4 : version: 7,
814 4 : layer_metadata: HashMap::from([
815 4 : ("000000000000000000000000000000000000-FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF__0000000001696070-00000000016960E9".parse().unwrap(), LayerFileMetadata {
816 4 : file_size: 25600000,
817 4 : generation: Generation::none(),
818 4 : shard: ShardIndex::unsharded()
819 4 : }),
820 4 : ("000000000000000000000000000000000000-FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF__00000000016B59D8-00000000016B5A51".parse().unwrap(), LayerFileMetadata {
821 4 : file_size: 9007199254741001,
822 4 : generation: Generation::none(),
823 4 : shard: ShardIndex::unsharded()
824 4 : })
825 4 : ]),
826 4 : disk_consistent_lsn: "0/16960E8".parse::<Lsn>().unwrap(),
827 4 : metadata: TimelineMetadata::new(
828 4 : Lsn::from_str("0/16960E8").unwrap(),
829 4 : Some(Lsn::from_str("0/1696070").unwrap()),
830 4 : Some(TimelineId::from_str("e45a7f37d3ee2ff17dc14bf4f4e3f52e").unwrap()),
831 4 : Lsn::INVALID,
832 4 : Lsn::from_str("0/1696070").unwrap(),
833 4 : Lsn::from_str("0/1696070").unwrap(),
834 4 : 14,
835 4 : ).with_recalculated_checksum().unwrap(),
836 4 : deleted_at: Some(parse_naive_datetime("2023-07-31T09:00:00.123000000")),
837 4 : archived_at: None,
838 4 : lineage: Default::default(),
839 4 : gc_blocking: None,
840 4 : last_aux_file_policy: Default::default(),
841 4 : import_pgdata: None,
842 4 : rel_size_migration: None,
843 4 : l2_lsn: None,
844 4 : gc_compaction: None,
845 4 : marked_invisible_at: None,
846 4 : };
847 4 :
848 4 : let part = IndexPart::from_json_bytes(example.as_bytes()).unwrap();
849 4 : assert_eq!(part, expected);
850 4 : }
851 :
852 : #[test]
853 4 : fn v8_indexpart_is_parsed() {
854 4 : let example = r#"{
855 4 : "version": 8,
856 4 : "layer_metadata":{
857 4 : "000000000000000000000000000000000000-FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF__0000000001696070-00000000016960E9": { "file_size": 25600000 },
858 4 : "000000000000000000000000000000000000-FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF__00000000016B59D8-00000000016B5A51": { "file_size": 9007199254741001 }
859 4 : },
860 4 : "disk_consistent_lsn":"0/16960E8",
861 4 : "metadata": {
862 4 : "disk_consistent_lsn": "0/16960E8",
863 4 : "prev_record_lsn": "0/1696070",
864 4 : "ancestor_timeline": "e45a7f37d3ee2ff17dc14bf4f4e3f52e",
865 4 : "ancestor_lsn": "0/0",
866 4 : "latest_gc_cutoff_lsn": "0/1696070",
867 4 : "initdb_lsn": "0/1696070",
868 4 : "pg_version": 14
869 4 : },
870 4 : "deleted_at": "2023-07-31T09:00:00.123",
871 4 : "archived_at": "2023-04-29T09:00:00.123"
872 4 : }"#;
873 4 :
874 4 : let expected = IndexPart {
875 4 : version: 8,
876 4 : layer_metadata: HashMap::from([
877 4 : ("000000000000000000000000000000000000-FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF__0000000001696070-00000000016960E9".parse().unwrap(), LayerFileMetadata {
878 4 : file_size: 25600000,
879 4 : generation: Generation::none(),
880 4 : shard: ShardIndex::unsharded()
881 4 : }),
882 4 : ("000000000000000000000000000000000000-FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF__00000000016B59D8-00000000016B5A51".parse().unwrap(), LayerFileMetadata {
883 4 : file_size: 9007199254741001,
884 4 : generation: Generation::none(),
885 4 : shard: ShardIndex::unsharded()
886 4 : })
887 4 : ]),
888 4 : disk_consistent_lsn: "0/16960E8".parse::<Lsn>().unwrap(),
889 4 : metadata: TimelineMetadata::new(
890 4 : Lsn::from_str("0/16960E8").unwrap(),
891 4 : Some(Lsn::from_str("0/1696070").unwrap()),
892 4 : Some(TimelineId::from_str("e45a7f37d3ee2ff17dc14bf4f4e3f52e").unwrap()),
893 4 : Lsn::INVALID,
894 4 : Lsn::from_str("0/1696070").unwrap(),
895 4 : Lsn::from_str("0/1696070").unwrap(),
896 4 : 14,
897 4 : ).with_recalculated_checksum().unwrap(),
898 4 : deleted_at: Some(parse_naive_datetime("2023-07-31T09:00:00.123000000")),
899 4 : archived_at: Some(parse_naive_datetime("2023-04-29T09:00:00.123000000")),
900 4 : lineage: Default::default(),
901 4 : gc_blocking: None,
902 4 : last_aux_file_policy: Default::default(),
903 4 : import_pgdata: None,
904 4 : rel_size_migration: None,
905 4 : l2_lsn: None,
906 4 : gc_compaction: None,
907 4 : marked_invisible_at: None,
908 4 : };
909 4 :
910 4 : let part = IndexPart::from_json_bytes(example.as_bytes()).unwrap();
911 4 : assert_eq!(part, expected);
912 4 : }
913 :
914 : #[test]
915 4 : fn v9_indexpart_is_parsed() {
916 4 : let example = r#"{
917 4 : "version": 9,
918 4 : "layer_metadata":{
919 4 : "000000000000000000000000000000000000-FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF__0000000001696070-00000000016960E9": { "file_size": 25600000 },
920 4 : "000000000000000000000000000000000000-FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF__00000000016B59D8-00000000016B5A51": { "file_size": 9007199254741001 }
921 4 : },
922 4 : "disk_consistent_lsn":"0/16960E8",
923 4 : "metadata": {
924 4 : "disk_consistent_lsn": "0/16960E8",
925 4 : "prev_record_lsn": "0/1696070",
926 4 : "ancestor_timeline": "e45a7f37d3ee2ff17dc14bf4f4e3f52e",
927 4 : "ancestor_lsn": "0/0",
928 4 : "latest_gc_cutoff_lsn": "0/1696070",
929 4 : "initdb_lsn": "0/1696070",
930 4 : "pg_version": 14
931 4 : },
932 4 : "gc_blocking": {
933 4 : "started_at": "2024-07-19T09:00:00.123",
934 4 : "reasons": ["DetachAncestor"]
935 4 : }
936 4 : }"#;
937 4 :
938 4 : let expected = IndexPart {
939 4 : version: 9,
940 4 : layer_metadata: HashMap::from([
941 4 : ("000000000000000000000000000000000000-FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF__0000000001696070-00000000016960E9".parse().unwrap(), LayerFileMetadata {
942 4 : file_size: 25600000,
943 4 : generation: Generation::none(),
944 4 : shard: ShardIndex::unsharded()
945 4 : }),
946 4 : ("000000000000000000000000000000000000-FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF__00000000016B59D8-00000000016B5A51".parse().unwrap(), LayerFileMetadata {
947 4 : file_size: 9007199254741001,
948 4 : generation: Generation::none(),
949 4 : shard: ShardIndex::unsharded()
950 4 : })
951 4 : ]),
952 4 : disk_consistent_lsn: "0/16960E8".parse::<Lsn>().unwrap(),
953 4 : metadata: TimelineMetadata::new(
954 4 : Lsn::from_str("0/16960E8").unwrap(),
955 4 : Some(Lsn::from_str("0/1696070").unwrap()),
956 4 : Some(TimelineId::from_str("e45a7f37d3ee2ff17dc14bf4f4e3f52e").unwrap()),
957 4 : Lsn::INVALID,
958 4 : Lsn::from_str("0/1696070").unwrap(),
959 4 : Lsn::from_str("0/1696070").unwrap(),
960 4 : 14,
961 4 : ).with_recalculated_checksum().unwrap(),
962 4 : deleted_at: None,
963 4 : lineage: Default::default(),
964 4 : gc_blocking: Some(GcBlocking {
965 4 : started_at: parse_naive_datetime("2024-07-19T09:00:00.123000000"),
966 4 : reasons: enumset::EnumSet::from_iter([GcBlockingReason::DetachAncestor]),
967 4 : }),
968 4 : last_aux_file_policy: Default::default(),
969 4 : archived_at: None,
970 4 : import_pgdata: None,
971 4 : rel_size_migration: None,
972 4 : l2_lsn: None,
973 4 : gc_compaction: None,
974 4 : marked_invisible_at: None,
975 4 : };
976 4 :
977 4 : let part = IndexPart::from_json_bytes(example.as_bytes()).unwrap();
978 4 : assert_eq!(part, expected);
979 4 : }
980 :
981 : #[test]
982 4 : fn v10_importpgdata_is_parsed() {
983 4 : let example = r#"{
984 4 : "version": 10,
985 4 : "layer_metadata":{
986 4 : "000000000000000000000000000000000000-FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF__0000000001696070-00000000016960E9": { "file_size": 25600000 },
987 4 : "000000000000000000000000000000000000-FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF__00000000016B59D8-00000000016B5A51": { "file_size": 9007199254741001 }
988 4 : },
989 4 : "disk_consistent_lsn":"0/16960E8",
990 4 : "metadata": {
991 4 : "disk_consistent_lsn": "0/16960E8",
992 4 : "prev_record_lsn": "0/1696070",
993 4 : "ancestor_timeline": "e45a7f37d3ee2ff17dc14bf4f4e3f52e",
994 4 : "ancestor_lsn": "0/0",
995 4 : "latest_gc_cutoff_lsn": "0/1696070",
996 4 : "initdb_lsn": "0/1696070",
997 4 : "pg_version": 14
998 4 : },
999 4 : "gc_blocking": {
1000 4 : "started_at": "2024-07-19T09:00:00.123",
1001 4 : "reasons": ["DetachAncestor"]
1002 4 : },
1003 4 : "import_pgdata": {
1004 4 : "V1": {
1005 4 : "Done": {
1006 4 : "idempotency_key": "specified-by-client-218a5213-5044-4562-a28d-d024c5f057f5",
1007 4 : "started_at": "2024-11-13T09:23:42.123",
1008 4 : "finished_at": "2024-11-13T09:42:23.123"
1009 4 : }
1010 4 : }
1011 4 : }
1012 4 : }"#;
1013 4 :
1014 4 : let expected = IndexPart {
1015 4 : version: 10,
1016 4 : layer_metadata: HashMap::from([
1017 4 : ("000000000000000000000000000000000000-FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF__0000000001696070-00000000016960E9".parse().unwrap(), LayerFileMetadata {
1018 4 : file_size: 25600000,
1019 4 : generation: Generation::none(),
1020 4 : shard: ShardIndex::unsharded()
1021 4 : }),
1022 4 : ("000000000000000000000000000000000000-FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF__00000000016B59D8-00000000016B5A51".parse().unwrap(), LayerFileMetadata {
1023 4 : file_size: 9007199254741001,
1024 4 : generation: Generation::none(),
1025 4 : shard: ShardIndex::unsharded()
1026 4 : })
1027 4 : ]),
1028 4 : disk_consistent_lsn: "0/16960E8".parse::<Lsn>().unwrap(),
1029 4 : metadata: TimelineMetadata::new(
1030 4 : Lsn::from_str("0/16960E8").unwrap(),
1031 4 : Some(Lsn::from_str("0/1696070").unwrap()),
1032 4 : Some(TimelineId::from_str("e45a7f37d3ee2ff17dc14bf4f4e3f52e").unwrap()),
1033 4 : Lsn::INVALID,
1034 4 : Lsn::from_str("0/1696070").unwrap(),
1035 4 : Lsn::from_str("0/1696070").unwrap(),
1036 4 : 14,
1037 4 : ).with_recalculated_checksum().unwrap(),
1038 4 : deleted_at: None,
1039 4 : lineage: Default::default(),
1040 4 : gc_blocking: Some(GcBlocking {
1041 4 : started_at: parse_naive_datetime("2024-07-19T09:00:00.123000000"),
1042 4 : reasons: enumset::EnumSet::from_iter([GcBlockingReason::DetachAncestor]),
1043 4 : }),
1044 4 : last_aux_file_policy: Default::default(),
1045 4 : archived_at: None,
1046 4 : import_pgdata: Some(import_pgdata::index_part_format::Root::V1(import_pgdata::index_part_format::V1::Done(import_pgdata::index_part_format::Done{
1047 4 : started_at: parse_naive_datetime("2024-11-13T09:23:42.123000000"),
1048 4 : finished_at: parse_naive_datetime("2024-11-13T09:42:23.123000000"),
1049 4 : idempotency_key: import_pgdata::index_part_format::IdempotencyKey::new("specified-by-client-218a5213-5044-4562-a28d-d024c5f057f5".to_string()),
1050 4 : }))),
1051 4 : rel_size_migration: None,
1052 4 : l2_lsn: None,
1053 4 : gc_compaction: None,
1054 4 : marked_invisible_at: None,
1055 4 : };
1056 4 :
1057 4 : let part = IndexPart::from_json_bytes(example.as_bytes()).unwrap();
1058 4 : assert_eq!(part, expected);
1059 4 : }
1060 :
1061 : #[test]
1062 4 : fn v11_rel_size_migration_is_parsed() {
1063 4 : let example = r#"{
1064 4 : "version": 11,
1065 4 : "layer_metadata":{
1066 4 : "000000000000000000000000000000000000-FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF__0000000001696070-00000000016960E9": { "file_size": 25600000 },
1067 4 : "000000000000000000000000000000000000-FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF__00000000016B59D8-00000000016B5A51": { "file_size": 9007199254741001 }
1068 4 : },
1069 4 : "disk_consistent_lsn":"0/16960E8",
1070 4 : "metadata": {
1071 4 : "disk_consistent_lsn": "0/16960E8",
1072 4 : "prev_record_lsn": "0/1696070",
1073 4 : "ancestor_timeline": "e45a7f37d3ee2ff17dc14bf4f4e3f52e",
1074 4 : "ancestor_lsn": "0/0",
1075 4 : "latest_gc_cutoff_lsn": "0/1696070",
1076 4 : "initdb_lsn": "0/1696070",
1077 4 : "pg_version": 14
1078 4 : },
1079 4 : "gc_blocking": {
1080 4 : "started_at": "2024-07-19T09:00:00.123",
1081 4 : "reasons": ["DetachAncestor"]
1082 4 : },
1083 4 : "import_pgdata": {
1084 4 : "V1": {
1085 4 : "Done": {
1086 4 : "idempotency_key": "specified-by-client-218a5213-5044-4562-a28d-d024c5f057f5",
1087 4 : "started_at": "2024-11-13T09:23:42.123",
1088 4 : "finished_at": "2024-11-13T09:42:23.123"
1089 4 : }
1090 4 : }
1091 4 : },
1092 4 : "rel_size_migration": "legacy"
1093 4 : }"#;
1094 4 :
1095 4 : let expected = IndexPart {
1096 4 : version: 11,
1097 4 : layer_metadata: HashMap::from([
1098 4 : ("000000000000000000000000000000000000-FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF__0000000001696070-00000000016960E9".parse().unwrap(), LayerFileMetadata {
1099 4 : file_size: 25600000,
1100 4 : generation: Generation::none(),
1101 4 : shard: ShardIndex::unsharded()
1102 4 : }),
1103 4 : ("000000000000000000000000000000000000-FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF__00000000016B59D8-00000000016B5A51".parse().unwrap(), LayerFileMetadata {
1104 4 : file_size: 9007199254741001,
1105 4 : generation: Generation::none(),
1106 4 : shard: ShardIndex::unsharded()
1107 4 : })
1108 4 : ]),
1109 4 : disk_consistent_lsn: "0/16960E8".parse::<Lsn>().unwrap(),
1110 4 : metadata: TimelineMetadata::new(
1111 4 : Lsn::from_str("0/16960E8").unwrap(),
1112 4 : Some(Lsn::from_str("0/1696070").unwrap()),
1113 4 : Some(TimelineId::from_str("e45a7f37d3ee2ff17dc14bf4f4e3f52e").unwrap()),
1114 4 : Lsn::INVALID,
1115 4 : Lsn::from_str("0/1696070").unwrap(),
1116 4 : Lsn::from_str("0/1696070").unwrap(),
1117 4 : 14,
1118 4 : ).with_recalculated_checksum().unwrap(),
1119 4 : deleted_at: None,
1120 4 : lineage: Default::default(),
1121 4 : gc_blocking: Some(GcBlocking {
1122 4 : started_at: parse_naive_datetime("2024-07-19T09:00:00.123000000"),
1123 4 : reasons: enumset::EnumSet::from_iter([GcBlockingReason::DetachAncestor]),
1124 4 : }),
1125 4 : last_aux_file_policy: Default::default(),
1126 4 : archived_at: None,
1127 4 : import_pgdata: Some(import_pgdata::index_part_format::Root::V1(import_pgdata::index_part_format::V1::Done(import_pgdata::index_part_format::Done{
1128 4 : started_at: parse_naive_datetime("2024-11-13T09:23:42.123000000"),
1129 4 : finished_at: parse_naive_datetime("2024-11-13T09:42:23.123000000"),
1130 4 : idempotency_key: import_pgdata::index_part_format::IdempotencyKey::new("specified-by-client-218a5213-5044-4562-a28d-d024c5f057f5".to_string()),
1131 4 : }))),
1132 4 : rel_size_migration: Some(RelSizeMigration::Legacy),
1133 4 : l2_lsn: None,
1134 4 : gc_compaction: None,
1135 4 : marked_invisible_at: None,
1136 4 : };
1137 4 :
1138 4 : let part = IndexPart::from_json_bytes(example.as_bytes()).unwrap();
1139 4 : assert_eq!(part, expected);
1140 4 : }
1141 :
1142 : #[test]
1143 4 : fn v12_v13_l2_gc_ompaction_is_parsed() {
1144 4 : let example = r#"{
1145 4 : "version": 13,
1146 4 : "layer_metadata":{
1147 4 : "000000000000000000000000000000000000-FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF__0000000001696070-00000000016960E9": { "file_size": 25600000 },
1148 4 : "000000000000000000000000000000000000-FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF__00000000016B59D8-00000000016B5A51": { "file_size": 9007199254741001 }
1149 4 : },
1150 4 : "disk_consistent_lsn":"0/16960E8",
1151 4 : "metadata": {
1152 4 : "disk_consistent_lsn": "0/16960E8",
1153 4 : "prev_record_lsn": "0/1696070",
1154 4 : "ancestor_timeline": "e45a7f37d3ee2ff17dc14bf4f4e3f52e",
1155 4 : "ancestor_lsn": "0/0",
1156 4 : "latest_gc_cutoff_lsn": "0/1696070",
1157 4 : "initdb_lsn": "0/1696070",
1158 4 : "pg_version": 14
1159 4 : },
1160 4 : "gc_blocking": {
1161 4 : "started_at": "2024-07-19T09:00:00.123",
1162 4 : "reasons": ["DetachAncestor"]
1163 4 : },
1164 4 : "import_pgdata": {
1165 4 : "V1": {
1166 4 : "Done": {
1167 4 : "idempotency_key": "specified-by-client-218a5213-5044-4562-a28d-d024c5f057f5",
1168 4 : "started_at": "2024-11-13T09:23:42.123",
1169 4 : "finished_at": "2024-11-13T09:42:23.123"
1170 4 : }
1171 4 : }
1172 4 : },
1173 4 : "rel_size_migration": "legacy",
1174 4 : "l2_lsn": "0/16960E8",
1175 4 : "gc_compaction": {
1176 4 : "last_completed_lsn": "0/16960E8"
1177 4 : }
1178 4 : }"#;
1179 4 :
1180 4 : let expected = IndexPart {
1181 4 : version: 13,
1182 4 : layer_metadata: HashMap::from([
1183 4 : ("000000000000000000000000000000000000-FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF__0000000001696070-00000000016960E9".parse().unwrap(), LayerFileMetadata {
1184 4 : file_size: 25600000,
1185 4 : generation: Generation::none(),
1186 4 : shard: ShardIndex::unsharded()
1187 4 : }),
1188 4 : ("000000000000000000000000000000000000-FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF__00000000016B59D8-00000000016B5A51".parse().unwrap(), LayerFileMetadata {
1189 4 : file_size: 9007199254741001,
1190 4 : generation: Generation::none(),
1191 4 : shard: ShardIndex::unsharded()
1192 4 : })
1193 4 : ]),
1194 4 : disk_consistent_lsn: "0/16960E8".parse::<Lsn>().unwrap(),
1195 4 : metadata: TimelineMetadata::new(
1196 4 : Lsn::from_str("0/16960E8").unwrap(),
1197 4 : Some(Lsn::from_str("0/1696070").unwrap()),
1198 4 : Some(TimelineId::from_str("e45a7f37d3ee2ff17dc14bf4f4e3f52e").unwrap()),
1199 4 : Lsn::INVALID,
1200 4 : Lsn::from_str("0/1696070").unwrap(),
1201 4 : Lsn::from_str("0/1696070").unwrap(),
1202 4 : 14,
1203 4 : ).with_recalculated_checksum().unwrap(),
1204 4 : deleted_at: None,
1205 4 : lineage: Default::default(),
1206 4 : gc_blocking: Some(GcBlocking {
1207 4 : started_at: parse_naive_datetime("2024-07-19T09:00:00.123000000"),
1208 4 : reasons: enumset::EnumSet::from_iter([GcBlockingReason::DetachAncestor]),
1209 4 : }),
1210 4 : last_aux_file_policy: Default::default(),
1211 4 : archived_at: None,
1212 4 : import_pgdata: Some(import_pgdata::index_part_format::Root::V1(import_pgdata::index_part_format::V1::Done(import_pgdata::index_part_format::Done{
1213 4 : started_at: parse_naive_datetime("2024-11-13T09:23:42.123000000"),
1214 4 : finished_at: parse_naive_datetime("2024-11-13T09:42:23.123000000"),
1215 4 : idempotency_key: import_pgdata::index_part_format::IdempotencyKey::new("specified-by-client-218a5213-5044-4562-a28d-d024c5f057f5".to_string()),
1216 4 : }))),
1217 4 : rel_size_migration: Some(RelSizeMigration::Legacy),
1218 4 : l2_lsn: Some("0/16960E8".parse::<Lsn>().unwrap()),
1219 4 : gc_compaction: Some(GcCompactionState {
1220 4 : last_completed_lsn: "0/16960E8".parse::<Lsn>().unwrap(),
1221 4 : }),
1222 4 : marked_invisible_at: None,
1223 4 : };
1224 4 :
1225 4 : let part = IndexPart::from_json_bytes(example.as_bytes()).unwrap();
1226 4 : assert_eq!(part, expected);
1227 4 : }
1228 :
1229 : #[test]
1230 4 : fn v14_marked_invisible_at_is_parsed() {
1231 4 : let example = r#"{
1232 4 : "version": 14,
1233 4 : "layer_metadata":{
1234 4 : "000000000000000000000000000000000000-FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF__0000000001696070-00000000016960E9": { "file_size": 25600000 },
1235 4 : "000000000000000000000000000000000000-FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF__00000000016B59D8-00000000016B5A51": { "file_size": 9007199254741001 }
1236 4 : },
1237 4 : "disk_consistent_lsn":"0/16960E8",
1238 4 : "metadata": {
1239 4 : "disk_consistent_lsn": "0/16960E8",
1240 4 : "prev_record_lsn": "0/1696070",
1241 4 : "ancestor_timeline": "e45a7f37d3ee2ff17dc14bf4f4e3f52e",
1242 4 : "ancestor_lsn": "0/0",
1243 4 : "latest_gc_cutoff_lsn": "0/1696070",
1244 4 : "initdb_lsn": "0/1696070",
1245 4 : "pg_version": 14
1246 4 : },
1247 4 : "gc_blocking": {
1248 4 : "started_at": "2024-07-19T09:00:00.123",
1249 4 : "reasons": ["DetachAncestor"]
1250 4 : },
1251 4 : "import_pgdata": {
1252 4 : "V1": {
1253 4 : "Done": {
1254 4 : "idempotency_key": "specified-by-client-218a5213-5044-4562-a28d-d024c5f057f5",
1255 4 : "started_at": "2024-11-13T09:23:42.123",
1256 4 : "finished_at": "2024-11-13T09:42:23.123"
1257 4 : }
1258 4 : }
1259 4 : },
1260 4 : "rel_size_migration": "legacy",
1261 4 : "l2_lsn": "0/16960E8",
1262 4 : "gc_compaction": {
1263 4 : "last_completed_lsn": "0/16960E8"
1264 4 : },
1265 4 : "marked_invisible_at": "2023-07-31T09:00:00.123"
1266 4 : }"#;
1267 4 :
1268 4 : let expected = IndexPart {
1269 4 : version: 14,
1270 4 : layer_metadata: HashMap::from([
1271 4 : ("000000000000000000000000000000000000-FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF__0000000001696070-00000000016960E9".parse().unwrap(), LayerFileMetadata {
1272 4 : file_size: 25600000,
1273 4 : generation: Generation::none(),
1274 4 : shard: ShardIndex::unsharded()
1275 4 : }),
1276 4 : ("000000000000000000000000000000000000-FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF__00000000016B59D8-00000000016B5A51".parse().unwrap(), LayerFileMetadata {
1277 4 : file_size: 9007199254741001,
1278 4 : generation: Generation::none(),
1279 4 : shard: ShardIndex::unsharded()
1280 4 : })
1281 4 : ]),
1282 4 : disk_consistent_lsn: "0/16960E8".parse::<Lsn>().unwrap(),
1283 4 : metadata: TimelineMetadata::new(
1284 4 : Lsn::from_str("0/16960E8").unwrap(),
1285 4 : Some(Lsn::from_str("0/1696070").unwrap()),
1286 4 : Some(TimelineId::from_str("e45a7f37d3ee2ff17dc14bf4f4e3f52e").unwrap()),
1287 4 : Lsn::INVALID,
1288 4 : Lsn::from_str("0/1696070").unwrap(),
1289 4 : Lsn::from_str("0/1696070").unwrap(),
1290 4 : 14,
1291 4 : ).with_recalculated_checksum().unwrap(),
1292 4 : deleted_at: None,
1293 4 : lineage: Default::default(),
1294 4 : gc_blocking: Some(GcBlocking {
1295 4 : started_at: parse_naive_datetime("2024-07-19T09:00:00.123000000"),
1296 4 : reasons: enumset::EnumSet::from_iter([GcBlockingReason::DetachAncestor]),
1297 4 : }),
1298 4 : last_aux_file_policy: Default::default(),
1299 4 : archived_at: None,
1300 4 : import_pgdata: Some(import_pgdata::index_part_format::Root::V1(import_pgdata::index_part_format::V1::Done(import_pgdata::index_part_format::Done{
1301 4 : started_at: parse_naive_datetime("2024-11-13T09:23:42.123000000"),
1302 4 : finished_at: parse_naive_datetime("2024-11-13T09:42:23.123000000"),
1303 4 : idempotency_key: import_pgdata::index_part_format::IdempotencyKey::new("specified-by-client-218a5213-5044-4562-a28d-d024c5f057f5".to_string()),
1304 4 : }))),
1305 4 : rel_size_migration: Some(RelSizeMigration::Legacy),
1306 4 : l2_lsn: Some("0/16960E8".parse::<Lsn>().unwrap()),
1307 4 : gc_compaction: Some(GcCompactionState {
1308 4 : last_completed_lsn: "0/16960E8".parse::<Lsn>().unwrap(),
1309 4 : }),
1310 4 : marked_invisible_at: Some(parse_naive_datetime("2023-07-31T09:00:00.123000000")),
1311 4 : };
1312 4 :
1313 4 : let part = IndexPart::from_json_bytes(example.as_bytes()).unwrap();
1314 4 : assert_eq!(part, expected);
1315 4 : }
1316 :
1317 88 : fn parse_naive_datetime(s: &str) -> NaiveDateTime {
1318 88 : chrono::NaiveDateTime::parse_from_str(s, "%Y-%m-%dT%H:%M:%S.%f").unwrap()
1319 88 : }
1320 : }
|