Line data Source code
1 : //!
2 : //! Import data and WAL from a PostgreSQL data directory and WAL segments into
3 : //! a neon Timeline.
4 : //!
5 : use std::path::{Path, PathBuf};
6 :
7 : use anyhow::{bail, ensure, Context, Result};
8 : use bytes::Bytes;
9 : use camino::Utf8Path;
10 : use futures::StreamExt;
11 : use pageserver_api::key::rel_block_to_key;
12 : use tokio::io::{AsyncRead, AsyncReadExt};
13 : use tokio_tar::Archive;
14 : use tracing::*;
15 : use wal_decoder::models::InterpretedWalRecord;
16 : use walkdir::WalkDir;
17 :
18 : use crate::context::RequestContext;
19 : use crate::metrics::WAL_INGEST;
20 : use crate::pgdatadir_mapping::*;
21 : use crate::tenant::Timeline;
22 : use crate::walingest::WalIngest;
23 : use pageserver_api::reltag::{RelTag, SlruKind};
24 : use postgres_ffi::pg_constants;
25 : use postgres_ffi::relfile_utils::*;
26 : use postgres_ffi::waldecoder::WalStreamDecoder;
27 : use postgres_ffi::ControlFileData;
28 : use postgres_ffi::DBState_DB_SHUTDOWNED;
29 : use postgres_ffi::Oid;
30 : use postgres_ffi::XLogFileName;
31 : use postgres_ffi::{BLCKSZ, WAL_SEGMENT_SIZE};
32 : use utils::lsn::Lsn;
33 :
34 : // Returns checkpoint LSN from controlfile
35 2 : pub fn get_lsn_from_controlfile(path: &Utf8Path) -> Result<Lsn> {
36 2 : // Read control file to extract the LSN
37 2 : let controlfile_path = path.join("global").join("pg_control");
38 2 : let controlfile_buf = std::fs::read(&controlfile_path)
39 2 : .with_context(|| format!("reading controlfile: {controlfile_path}"))?;
40 2 : let controlfile = ControlFileData::decode(&controlfile_buf)?;
41 2 : let lsn = controlfile.checkPoint;
42 2 :
43 2 : Ok(Lsn(lsn))
44 2 : }
45 :
46 : ///
47 : /// Import all relation data pages from local disk into the repository.
48 : ///
49 : /// This is currently only used to import a cluster freshly created by initdb.
50 : /// The code that deals with the checkpoint would not work right if the
51 : /// cluster was not shut down cleanly.
52 2 : pub async fn import_timeline_from_postgres_datadir(
53 2 : tline: &Timeline,
54 2 : pgdata_path: &Utf8Path,
55 2 : pgdata_lsn: Lsn,
56 2 : ctx: &RequestContext,
57 2 : ) -> Result<()> {
58 2 : let mut pg_control: Option<ControlFileData> = None;
59 2 :
60 2 : // TODO this shoud be start_lsn, which is not necessarily equal to end_lsn (aka lsn)
61 2 : // Then fishing out pg_control would be unnecessary
62 2 : let mut modification = tline.begin_modification(pgdata_lsn);
63 2 : modification.init_empty()?;
64 :
65 : // Import all but pg_wal
66 2 : let all_but_wal = WalkDir::new(pgdata_path)
67 2 : .into_iter()
68 1980 : .filter_entry(|entry| !entry.path().ends_with("pg_wal"));
69 1980 : for entry in all_but_wal {
70 1978 : let entry = entry?;
71 1978 : let metadata = entry.metadata().expect("error getting dir entry metadata");
72 1978 : if metadata.is_file() {
73 1930 : let absolute_path = entry.path();
74 1930 : let relative_path = absolute_path.strip_prefix(pgdata_path)?;
75 :
76 1930 : let mut file = tokio::fs::File::open(absolute_path).await?;
77 1930 : let len = metadata.len() as usize;
78 2 : if let Some(control_file) =
79 7378 : import_file(&mut modification, relative_path, &mut file, len, ctx).await?
80 2 : {
81 2 : pg_control = Some(control_file);
82 1928 : }
83 1930 : modification.flush(ctx).await?;
84 48 : }
85 : }
86 :
87 : // We're done importing all the data files.
88 348 : modification.commit(ctx).await?;
89 :
90 : // We expect the Postgres server to be shut down cleanly.
91 2 : let pg_control = pg_control.context("pg_control file not found")?;
92 2 : ensure!(
93 2 : pg_control.state == DBState_DB_SHUTDOWNED,
94 0 : "Postgres cluster was not shut down cleanly"
95 : );
96 2 : ensure!(
97 2 : pg_control.checkPointCopy.redo == pgdata_lsn.0,
98 0 : "unexpected checkpoint REDO pointer"
99 : );
100 :
101 : // Import WAL. This is needed even when starting from a shutdown checkpoint, because
102 : // this reads the checkpoint record itself, advancing the tip of the timeline to
103 : // *after* the checkpoint record. And crucially, it initializes the 'prev_lsn'.
104 2 : import_wal(
105 2 : &pgdata_path.join("pg_wal"),
106 2 : tline,
107 2 : Lsn(pg_control.checkPointCopy.redo),
108 2 : pgdata_lsn,
109 2 : ctx,
110 2 : )
111 1 : .await?;
112 :
113 2 : Ok(())
114 2 : }
115 :
116 : // subroutine of import_timeline_from_postgres_datadir(), to load one relation file.
117 1892 : async fn import_rel(
118 1892 : modification: &mut DatadirModification<'_>,
119 1892 : path: &Path,
120 1892 : spcoid: Oid,
121 1892 : dboid: Oid,
122 1892 : reader: &mut (impl AsyncRead + Unpin),
123 1892 : len: usize,
124 1892 : ctx: &RequestContext,
125 1892 : ) -> anyhow::Result<()> {
126 1892 : // Does it look like a relation file?
127 1892 : trace!("importing rel file {}", path.display());
128 :
129 1892 : let filename = &path
130 1892 : .file_name()
131 1892 : .expect("missing rel filename")
132 1892 : .to_string_lossy();
133 1892 : let (relnode, forknum, segno) = parse_relfilename(filename).map_err(|e| {
134 0 : warn!("unrecognized file in postgres datadir: {:?} ({})", path, e);
135 0 : e
136 1892 : })?;
137 :
138 1892 : let mut buf: [u8; 8192] = [0u8; 8192];
139 1892 :
140 1892 : ensure!(len % BLCKSZ as usize == 0);
141 1892 : let nblocks = len / BLCKSZ as usize;
142 1892 :
143 1892 : let rel = RelTag {
144 1892 : spcnode: spcoid,
145 1892 : dbnode: dboid,
146 1892 : relnode,
147 1892 : forknum,
148 1892 : };
149 1892 :
150 1892 : let mut blknum: u32 = segno * (1024 * 1024 * 1024 / BLCKSZ as u32);
151 :
152 : // Call put_rel_creation for every segment of the relation,
153 : // because there is no guarantee about the order in which we are processing segments.
154 : // ignore "relation already exists" error
155 : //
156 : // FIXME: Keep track of which relations we've already created?
157 : // https://github.com/neondatabase/neon/issues/3309
158 1892 : if let Err(e) = modification
159 1892 : .put_rel_creation(rel, nblocks as u32, ctx)
160 0 : .await
161 : {
162 0 : match e {
163 : RelationError::AlreadyExists => {
164 0 : debug!("Relation {} already exist. We must be extending it.", rel)
165 : }
166 0 : _ => return Err(e.into()),
167 : }
168 1892 : }
169 :
170 : loop {
171 7332 : let r = reader.read_exact(&mut buf).await;
172 7332 : match r {
173 : Ok(_) => {
174 5440 : let key = rel_block_to_key(rel, blknum);
175 5440 : if modification.tline.get_shard_identity().is_key_local(&key) {
176 5440 : modification.put_rel_page_image(rel, blknum, Bytes::copy_from_slice(&buf))?;
177 0 : }
178 : }
179 :
180 : // TODO: UnexpectedEof is expected
181 1892 : Err(err) => match err.kind() {
182 : std::io::ErrorKind::UnexpectedEof => {
183 : // reached EOF. That's expected.
184 1892 : let relative_blknum = blknum - segno * (1024 * 1024 * 1024 / BLCKSZ as u32);
185 1892 : ensure!(relative_blknum == nblocks as u32, "unexpected EOF");
186 1892 : break;
187 : }
188 : _ => {
189 0 : bail!("error reading file {}: {:#}", path.display(), err);
190 : }
191 : },
192 : };
193 5440 : blknum += 1;
194 : }
195 :
196 : // Update relation size
197 : //
198 : // If we process rel segments out of order,
199 : // put_rel_extend will skip the update.
200 1892 : modification.put_rel_extend(rel, blknum, ctx).await?;
201 :
202 1892 : Ok(())
203 1892 : }
204 :
205 : /// Import an SLRU segment file
206 : ///
207 6 : async fn import_slru(
208 6 : modification: &mut DatadirModification<'_>,
209 6 : slru: SlruKind,
210 6 : path: &Path,
211 6 : reader: &mut (impl AsyncRead + Unpin),
212 6 : len: usize,
213 6 : ctx: &RequestContext,
214 6 : ) -> anyhow::Result<()> {
215 6 : info!("importing slru file {path:?}");
216 :
217 6 : let mut buf: [u8; 8192] = [0u8; 8192];
218 6 : let filename = &path
219 6 : .file_name()
220 6 : .with_context(|| format!("missing slru filename for path {path:?}"))?
221 6 : .to_string_lossy();
222 6 : let segno = u32::from_str_radix(filename, 16)?;
223 :
224 6 : ensure!(len % BLCKSZ as usize == 0); // we assume SLRU block size is the same as BLCKSZ
225 6 : let nblocks = len / BLCKSZ as usize;
226 6 :
227 6 : ensure!(nblocks <= pg_constants::SLRU_PAGES_PER_SEGMENT as usize);
228 :
229 6 : modification
230 6 : .put_slru_segment_creation(slru, segno, nblocks as u32, ctx)
231 0 : .await?;
232 :
233 6 : let mut rpageno = 0;
234 : loop {
235 12 : let r = reader.read_exact(&mut buf).await;
236 12 : match r {
237 : Ok(_) => {
238 6 : modification.put_slru_page_image(
239 6 : slru,
240 6 : segno,
241 6 : rpageno,
242 6 : Bytes::copy_from_slice(&buf),
243 6 : )?;
244 : }
245 :
246 : // TODO: UnexpectedEof is expected
247 6 : Err(err) => match err.kind() {
248 : std::io::ErrorKind::UnexpectedEof => {
249 : // reached EOF. That's expected.
250 6 : ensure!(rpageno == nblocks as u32, "unexpected EOF");
251 6 : break;
252 : }
253 : _ => {
254 0 : bail!("error reading file {}: {:#}", path.display(), err);
255 : }
256 : },
257 : };
258 6 : rpageno += 1;
259 : }
260 :
261 6 : Ok(())
262 6 : }
263 :
264 : /// Scan PostgreSQL WAL files in given directory and load all records between
265 : /// 'startpoint' and 'endpoint' into the repository.
266 2 : async fn import_wal(
267 2 : walpath: &Utf8Path,
268 2 : tline: &Timeline,
269 2 : startpoint: Lsn,
270 2 : endpoint: Lsn,
271 2 : ctx: &RequestContext,
272 2 : ) -> anyhow::Result<()> {
273 2 : let mut waldecoder = WalStreamDecoder::new(startpoint, tline.pg_version);
274 2 :
275 2 : let mut segno = startpoint.segment_number(WAL_SEGMENT_SIZE);
276 2 : let mut offset = startpoint.segment_offset(WAL_SEGMENT_SIZE);
277 2 : let mut last_lsn = startpoint;
278 :
279 2 : let mut walingest = WalIngest::new(tline, startpoint, ctx).await?;
280 :
281 4 : while last_lsn <= endpoint {
282 : // FIXME: assume postgresql tli 1 for now
283 2 : let filename = XLogFileName(1, segno, WAL_SEGMENT_SIZE);
284 2 : let mut buf = Vec::new();
285 2 :
286 2 : // Read local file
287 2 : let mut path = walpath.join(&filename);
288 2 :
289 2 : // It could be as .partial
290 2 : if !PathBuf::from(&path).exists() {
291 0 : path = walpath.join(filename + ".partial");
292 2 : }
293 :
294 : // Slurp the WAL file
295 2 : let mut file = std::fs::File::open(&path)?;
296 :
297 2 : if offset > 0 {
298 2 : use std::io::Seek;
299 2 : file.seek(std::io::SeekFrom::Start(offset as u64))?;
300 0 : }
301 :
302 : use std::io::Read;
303 2 : let nread = file.read_to_end(&mut buf)?;
304 2 : if nread != WAL_SEGMENT_SIZE - offset {
305 : // Maybe allow this for .partial files?
306 0 : error!("read only {} bytes from WAL file", nread);
307 2 : }
308 :
309 2 : waldecoder.feed_bytes(&buf);
310 2 :
311 2 : let mut nrecords = 0;
312 2 : let mut modification = tline.begin_modification(last_lsn);
313 4 : while last_lsn <= endpoint {
314 2 : if let Some((lsn, recdata)) = waldecoder.poll_decode()? {
315 2 : let interpreted = InterpretedWalRecord::from_bytes_filtered(
316 2 : recdata,
317 2 : tline.get_shard_identity(),
318 2 : lsn,
319 2 : tline.pg_version,
320 2 : )?;
321 :
322 2 : walingest
323 2 : .ingest_record(interpreted, &mut modification, ctx)
324 1 : .await?;
325 2 : WAL_INGEST.records_committed.inc();
326 2 :
327 2 : modification.commit(ctx).await?;
328 2 : last_lsn = lsn;
329 2 :
330 2 : nrecords += 1;
331 2 :
332 2 : trace!("imported record at {} (end {})", lsn, endpoint);
333 0 : }
334 : }
335 :
336 2 : debug!("imported {} records up to {}", nrecords, last_lsn);
337 :
338 2 : segno += 1;
339 2 : offset = 0;
340 : }
341 :
342 2 : if last_lsn != startpoint {
343 2 : info!("reached end of WAL at {}", last_lsn);
344 : } else {
345 0 : info!("no WAL to import at {}", last_lsn);
346 : }
347 :
348 2 : Ok(())
349 2 : }
350 :
351 0 : pub async fn import_basebackup_from_tar(
352 0 : tline: &Timeline,
353 0 : reader: &mut (impl AsyncRead + Send + Sync + Unpin),
354 0 : base_lsn: Lsn,
355 0 : ctx: &RequestContext,
356 0 : ) -> Result<()> {
357 0 : info!("importing base at {base_lsn}");
358 0 : let mut modification = tline.begin_modification(base_lsn);
359 0 : modification.init_empty()?;
360 :
361 0 : let mut pg_control: Option<ControlFileData> = None;
362 :
363 : // Import base
364 0 : let mut entries = Archive::new(reader).entries()?;
365 0 : while let Some(base_tar_entry) = entries.next().await {
366 0 : let mut entry = base_tar_entry?;
367 0 : let header = entry.header();
368 0 : let len = header.entry_size()? as usize;
369 0 : let file_path = header.path()?.into_owned();
370 0 :
371 0 : match header.entry_type() {
372 : tokio_tar::EntryType::Regular => {
373 0 : if let Some(res) =
374 0 : import_file(&mut modification, file_path.as_ref(), &mut entry, len, ctx).await?
375 0 : {
376 0 : // We found the pg_control file.
377 0 : pg_control = Some(res);
378 0 : }
379 0 : modification.flush(ctx).await?;
380 : }
381 : tokio_tar::EntryType::Directory => {
382 0 : debug!("directory {:?}", file_path);
383 : }
384 : _ => {
385 0 : bail!(
386 0 : "entry {} in backup tar archive is of unexpected type: {:?}",
387 0 : file_path.display(),
388 0 : header.entry_type()
389 0 : );
390 : }
391 : }
392 : }
393 :
394 : // sanity check: ensure that pg_control is loaded
395 0 : let _pg_control = pg_control.context("pg_control file not found")?;
396 :
397 0 : modification.commit(ctx).await?;
398 0 : Ok(())
399 0 : }
400 :
401 0 : pub async fn import_wal_from_tar(
402 0 : tline: &Timeline,
403 0 : reader: &mut (impl AsyncRead + Send + Sync + Unpin),
404 0 : start_lsn: Lsn,
405 0 : end_lsn: Lsn,
406 0 : ctx: &RequestContext,
407 0 : ) -> Result<()> {
408 0 : // Set up walingest mutable state
409 0 : let mut waldecoder = WalStreamDecoder::new(start_lsn, tline.pg_version);
410 0 : let mut segno = start_lsn.segment_number(WAL_SEGMENT_SIZE);
411 0 : let mut offset = start_lsn.segment_offset(WAL_SEGMENT_SIZE);
412 0 : let mut last_lsn = start_lsn;
413 0 : let mut walingest = WalIngest::new(tline, start_lsn, ctx).await?;
414 :
415 : // Ingest wal until end_lsn
416 0 : info!("importing wal until {}", end_lsn);
417 0 : let mut pg_wal_tar = Archive::new(reader);
418 0 : let mut pg_wal_entries = pg_wal_tar.entries()?;
419 0 : while last_lsn <= end_lsn {
420 0 : let bytes = {
421 0 : let mut entry = pg_wal_entries
422 0 : .next()
423 0 : .await
424 0 : .ok_or_else(|| anyhow::anyhow!("expected more wal"))??;
425 0 : let header = entry.header();
426 0 : let file_path = header.path()?.into_owned();
427 0 :
428 0 : match header.entry_type() {
429 : tokio_tar::EntryType::Regular => {
430 : // FIXME: assume postgresql tli 1 for now
431 0 : let expected_filename = XLogFileName(1, segno, WAL_SEGMENT_SIZE);
432 0 : let file_name = file_path
433 0 : .file_name()
434 0 : .expect("missing wal filename")
435 0 : .to_string_lossy();
436 0 : ensure!(expected_filename == file_name);
437 :
438 0 : debug!("processing wal file {:?}", file_path);
439 0 : read_all_bytes(&mut entry).await?
440 : }
441 : tokio_tar::EntryType::Directory => {
442 0 : debug!("directory {:?}", file_path);
443 0 : continue;
444 : }
445 : _ => {
446 0 : bail!(
447 0 : "entry {} in WAL tar archive is of unexpected type: {:?}",
448 0 : file_path.display(),
449 0 : header.entry_type()
450 0 : );
451 : }
452 : }
453 : };
454 :
455 0 : waldecoder.feed_bytes(&bytes[offset..]);
456 0 :
457 0 : let mut modification = tline.begin_modification(last_lsn);
458 0 : while last_lsn <= end_lsn {
459 0 : if let Some((lsn, recdata)) = waldecoder.poll_decode()? {
460 0 : let interpreted = InterpretedWalRecord::from_bytes_filtered(
461 0 : recdata,
462 0 : tline.get_shard_identity(),
463 0 : lsn,
464 0 : tline.pg_version,
465 0 : )?;
466 :
467 0 : walingest
468 0 : .ingest_record(interpreted, &mut modification, ctx)
469 0 : .await?;
470 0 : modification.commit(ctx).await?;
471 0 : last_lsn = lsn;
472 0 :
473 0 : debug!("imported record at {} (end {})", lsn, end_lsn);
474 0 : }
475 : }
476 :
477 0 : debug!("imported records up to {}", last_lsn);
478 0 : segno += 1;
479 0 : offset = 0;
480 : }
481 :
482 0 : if last_lsn != start_lsn {
483 0 : info!("reached end of WAL at {}", last_lsn);
484 : } else {
485 0 : info!("there was no WAL to import at {}", last_lsn);
486 : }
487 :
488 : // Log any extra unused files
489 0 : while let Some(e) = pg_wal_entries.next().await {
490 0 : let entry = e?;
491 0 : let header = entry.header();
492 0 : let file_path = header.path()?.into_owned();
493 0 : info!("skipping {:?}", file_path);
494 : }
495 :
496 0 : Ok(())
497 0 : }
498 :
499 1930 : async fn import_file(
500 1930 : modification: &mut DatadirModification<'_>,
501 1930 : file_path: &Path,
502 1930 : reader: &mut (impl AsyncRead + Send + Sync + Unpin),
503 1930 : len: usize,
504 1930 : ctx: &RequestContext,
505 1930 : ) -> Result<Option<ControlFileData>> {
506 1930 : let file_name = match file_path.file_name() {
507 1930 : Some(name) => name.to_string_lossy(),
508 0 : None => return Ok(None),
509 : };
510 :
511 1930 : if file_name.starts_with('.') {
512 : // tar archives on macOs, created without COPYFILE_DISABLE=1 env var
513 : // will contain "fork files", skip them.
514 0 : return Ok(None);
515 1930 : }
516 1930 :
517 1930 : if file_path.starts_with("global") {
518 120 : let spcnode = postgres_ffi::pg_constants::GLOBALTABLESPACE_OID;
519 120 : let dbnode = 0;
520 120 :
521 120 : match file_name.as_ref() {
522 120 : "pg_control" => {
523 20 : let bytes = read_all_bytes(reader).await?;
524 :
525 : // Extract the checkpoint record and import it separately.
526 2 : let pg_control = ControlFileData::decode(&bytes[..])?;
527 2 : let checkpoint_bytes = pg_control.checkPointCopy.encode()?;
528 2 : modification.put_checkpoint(checkpoint_bytes)?;
529 2 : debug!("imported control file");
530 :
531 : // Import it as ControlFile
532 2 : modification.put_control_file(bytes)?;
533 2 : return Ok(Some(pg_control));
534 : }
535 118 : "pg_filenode.map" => {
536 12 : let bytes = read_all_bytes(reader).await?;
537 2 : modification
538 2 : .put_relmap_file(spcnode, dbnode, bytes, ctx)
539 0 : .await?;
540 2 : debug!("imported relmap file")
541 : }
542 116 : "PG_VERSION" => {
543 0 : debug!("ignored PG_VERSION file");
544 : }
545 : _ => {
546 240 : import_rel(modification, file_path, spcnode, dbnode, reader, len, ctx).await?;
547 116 : debug!("imported rel creation");
548 : }
549 : }
550 1810 : } else if file_path.starts_with("base") {
551 1788 : let spcnode = pg_constants::DEFAULTTABLESPACE_OID;
552 1788 : let dbnode: u32 = file_path
553 1788 : .iter()
554 1788 : .nth(1)
555 1788 : .expect("invalid file path, expected dbnode")
556 1788 : .to_string_lossy()
557 1788 : .parse()?;
558 :
559 1788 : match file_name.as_ref() {
560 1788 : "pg_filenode.map" => {
561 36 : let bytes = read_all_bytes(reader).await?;
562 6 : modification
563 6 : .put_relmap_file(spcnode, dbnode, bytes, ctx)
564 0 : .await?;
565 6 : debug!("imported relmap file")
566 : }
567 1782 : "PG_VERSION" => {
568 6 : debug!("ignored PG_VERSION file");
569 : }
570 : _ => {
571 7058 : import_rel(modification, file_path, spcnode, dbnode, reader, len, ctx).await?;
572 1776 : debug!("imported rel creation");
573 : }
574 : }
575 22 : } else if file_path.starts_with("pg_xact") {
576 2 : let slru = SlruKind::Clog;
577 2 :
578 4 : import_slru(modification, slru, file_path, reader, len, ctx).await?;
579 2 : debug!("imported clog slru");
580 20 : } else if file_path.starts_with("pg_multixact/offsets") {
581 2 : let slru = SlruKind::MultiXactOffsets;
582 2 :
583 4 : import_slru(modification, slru, file_path, reader, len, ctx).await?;
584 2 : debug!("imported multixact offsets slru");
585 18 : } else if file_path.starts_with("pg_multixact/members") {
586 2 : let slru = SlruKind::MultiXactMembers;
587 2 :
588 4 : import_slru(modification, slru, file_path, reader, len, ctx).await?;
589 2 : debug!("imported multixact members slru");
590 16 : } else if file_path.starts_with("pg_twophase") {
591 0 : let bytes = read_all_bytes(reader).await?;
592 :
593 : // In PostgreSQL v17, this is a 64-bit FullTransactionid. In previous versions,
594 : // it's a 32-bit TransactionId, which fits in u64 anyway.
595 0 : let xid = u64::from_str_radix(file_name.as_ref(), 16)?;
596 0 : modification
597 0 : .put_twophase_file(xid, Bytes::copy_from_slice(&bytes[..]), ctx)
598 0 : .await?;
599 0 : debug!("imported twophase file");
600 16 : } else if file_path.starts_with("pg_wal") {
601 0 : debug!("found wal file in base section. ignore it");
602 16 : } else if file_path.starts_with("zenith.signal") {
603 : // Parse zenith signal file to set correct previous LSN
604 0 : let bytes = read_all_bytes(reader).await?;
605 : // zenith.signal format is "PREV LSN: prev_lsn"
606 : // TODO write serialization and deserialization in the same place.
607 0 : let zenith_signal = std::str::from_utf8(&bytes)?.trim();
608 0 : let prev_lsn = match zenith_signal {
609 0 : "PREV LSN: none" => Lsn(0),
610 0 : "PREV LSN: invalid" => Lsn(0),
611 0 : other => {
612 0 : let split = other.split(':').collect::<Vec<_>>();
613 0 : split[1]
614 0 : .trim()
615 0 : .parse::<Lsn>()
616 0 : .context("can't parse zenith.signal")?
617 : }
618 : };
619 :
620 : // zenith.signal is not necessarily the last file, that we handle
621 : // but it is ok to call `finish_write()`, because final `modification.commit()`
622 : // will update lsn once more to the final one.
623 0 : let writer = modification.tline.writer().await;
624 0 : writer.finish_write(prev_lsn);
625 0 :
626 0 : debug!("imported zenith signal {}", prev_lsn);
627 16 : } else if file_path.starts_with("pg_tblspc") {
628 : // TODO Backups exported from neon won't have pg_tblspc, but we will need
629 : // this to import arbitrary postgres databases.
630 0 : bail!("Importing pg_tblspc is not implemented");
631 : } else {
632 16 : debug!(
633 0 : "ignoring unrecognized file \"{}\" in tar archive",
634 0 : file_path.display()
635 : );
636 : }
637 :
638 1928 : Ok(None)
639 1930 : }
640 :
641 10 : async fn read_all_bytes(reader: &mut (impl AsyncRead + Unpin)) -> Result<Bytes> {
642 10 : let mut buf: Vec<u8> = vec![];
643 68 : reader.read_to_end(&mut buf).await?;
644 10 : Ok(Bytes::from(buf))
645 10 : }
|