LCOV - code coverage report
Current view: top level - safekeeper/src - wal_storage.rs (source / functions) Coverage Total Hit
Test: 49aa928ec5b4b510172d8b5c6d154da28e70a46c.info Lines: 0.0 % 473 0
Test Date: 2024-11-13 18:23:39 Functions: 0.0 % 47 0

            Line data    Source code
       1              : //! This module has everything to deal with WAL -- reading and writing to disk.
       2              : //!
       3              : //! Safekeeper WAL is stored in the timeline directory, in format similar to pg_wal.
       4              : //! PG timeline is always 1, so WAL segments are usually have names like this:
       5              : //! - 000000010000000000000001
       6              : //! - 000000010000000000000002.partial
       7              : //!
       8              : //! Note that last file has `.partial` suffix, that's different from postgres.
       9              : 
      10              : use anyhow::{bail, Context, Result};
      11              : use bytes::Bytes;
      12              : use camino::{Utf8Path, Utf8PathBuf};
      13              : use futures::future::BoxFuture;
      14              : use postgres_ffi::v14::xlog_utils::{IsPartialXLogFileName, IsXLogFileName, XLogFromFileName};
      15              : use postgres_ffi::{dispatch_pgversion, XLogSegNo, PG_TLI};
      16              : use remote_storage::RemotePath;
      17              : use std::cmp::{max, min};
      18              : use std::future::Future;
      19              : use std::io::{self, SeekFrom};
      20              : use std::pin::Pin;
      21              : use tokio::fs::{self, remove_file, File, OpenOptions};
      22              : use tokio::io::{AsyncRead, AsyncWriteExt};
      23              : use tokio::io::{AsyncReadExt, AsyncSeekExt};
      24              : use tracing::*;
      25              : use utils::crashsafe::durable_rename;
      26              : 
      27              : use crate::metrics::{
      28              :     time_io_closure, WalStorageMetrics, REMOVED_WAL_SEGMENTS, WAL_STORAGE_OPERATION_SECONDS,
      29              : };
      30              : use crate::state::TimelinePersistentState;
      31              : use crate::wal_backup::{read_object, remote_timeline_path};
      32              : use postgres_ffi::waldecoder::WalStreamDecoder;
      33              : use postgres_ffi::XLogFileName;
      34              : use pq_proto::SystemId;
      35              : use utils::{id::TenantTimelineId, lsn::Lsn};
      36              : 
      37              : pub trait Storage {
      38              :     // Last written LSN.
      39              :     fn write_lsn(&self) -> Lsn;
      40              :     /// LSN of last durably stored WAL record.
      41              :     fn flush_lsn(&self) -> Lsn;
      42              : 
      43              :     /// Initialize segment by creating proper long header at the beginning of
      44              :     /// the segment and short header at the page of given LSN. This is only used
      45              :     /// for timeline initialization because compute will stream data only since
      46              :     /// init_lsn. Other segment headers are included in compute stream.
      47              :     fn initialize_first_segment(
      48              :         &mut self,
      49              :         init_lsn: Lsn,
      50              :     ) -> impl Future<Output = Result<()>> + Send;
      51              : 
      52              :     /// Write piece of WAL from buf to disk, but not necessarily sync it.
      53              :     fn write_wal(&mut self, startpos: Lsn, buf: &[u8]) -> impl Future<Output = Result<()>> + Send;
      54              : 
      55              :     /// Truncate WAL at specified LSN, which must be the end of WAL record.
      56              :     fn truncate_wal(&mut self, end_pos: Lsn) -> impl Future<Output = Result<()>> + Send;
      57              : 
      58              :     /// Durably store WAL on disk, up to the last written WAL record.
      59              :     fn flush_wal(&mut self) -> impl Future<Output = Result<()>> + Send;
      60              : 
      61              :     /// Remove all segments <= given segno. Returns function doing that as we
      62              :     /// want to perform it without timeline lock.
      63              :     fn remove_up_to(&self, segno_up_to: XLogSegNo) -> BoxFuture<'static, anyhow::Result<()>>;
      64              : 
      65              :     /// Release resources associated with the storage -- technically, close FDs.
      66              :     /// Currently we don't remove timelines until restart (#3146), so need to
      67              :     /// spare descriptors. This would be useful for temporary tli detach as
      68              :     /// well.
      69            0 :     fn close(&mut self) {}
      70              : 
      71              :     /// Get metrics for this timeline.
      72              :     fn get_metrics(&self) -> WalStorageMetrics;
      73              : }
      74              : 
      75              : /// PhysicalStorage is a storage that stores WAL on disk. Writes are separated from flushes
      76              : /// for better performance. Storage is initialized in the constructor.
      77              : ///
      78              : /// WAL is stored in segments, each segment is a file. Last segment has ".partial" suffix in
      79              : /// its filename and may be not fully flushed.
      80              : ///
      81              : /// Relationship of LSNs:
      82              : /// `write_lsn` >= `write_record_lsn` >= `flush_record_lsn`
      83              : ///
      84              : /// When storage is created first time, all LSNs are zeroes and there are no segments on disk.
      85              : pub struct PhysicalStorage {
      86              :     metrics: WalStorageMetrics,
      87              :     timeline_dir: Utf8PathBuf,
      88              : 
      89              :     /// Disables fsync if true.
      90              :     no_sync: bool,
      91              : 
      92              :     /// Size of WAL segment in bytes.
      93              :     wal_seg_size: usize,
      94              :     pg_version: u32,
      95              :     system_id: u64,
      96              : 
      97              :     /// Written to disk, but possibly still in the cache and not fully persisted.
      98              :     /// Also can be ahead of record_lsn, if happen to be in the middle of a WAL record.
      99              :     write_lsn: Lsn,
     100              : 
     101              :     /// The LSN of the last WAL record written to disk. Still can be not fully
     102              :     /// flushed.
     103              :     ///
     104              :     /// Note: Normally it (and flush_record_lsn) is <= write_lsn, but after xlog
     105              :     /// switch ingest the reverse is true because we don't bump write_lsn up to
     106              :     /// the next segment: WAL stream from the compute doesn't have the gap and
     107              :     /// for simplicity / as a sanity check we disallow any non-sequential
     108              :     /// writes, so write zeros as is.
     109              :     ///
     110              :     /// Similar effect is in theory possible due to LSN alignment: if record
     111              :     /// ends at *2, decoder will report end lsn as *8 even though we haven't
     112              :     /// written these zeros yet. In practice compute likely never sends
     113              :     /// non-aligned chunks of data.
     114              :     write_record_lsn: Lsn,
     115              : 
     116              :     /// The LSN of the last WAL record flushed to disk.
     117              :     flush_record_lsn: Lsn,
     118              : 
     119              :     /// Decoder is required for detecting boundaries of WAL records.
     120              :     decoder: WalStreamDecoder,
     121              : 
     122              :     /// Cached open file for the last segment.
     123              :     ///
     124              :     /// If Some(file) is open, then it always:
     125              :     /// - has ".partial" suffix
     126              :     /// - points to write_lsn, so no seek is needed for writing
     127              :     /// - doesn't point to the end of the segment
     128              :     file: Option<File>,
     129              : 
     130              :     /// When false, we have just initialized storage using the LSN from find_end_of_wal().
     131              :     /// In this case, [`write_lsn`] can be less than actually written WAL on disk. In particular,
     132              :     /// there can be a case with unexpected .partial file.
     133              :     ///
     134              :     /// Imagine the following:
     135              :     /// - 000000010000000000000001
     136              :     ///   - it was fully written, but the last record is split between 2 segments
     137              :     ///   - after restart, `find_end_of_wal()` returned 0/1FFFFF0, which is in the end of this segment
     138              :     ///   - `write_lsn`, `write_record_lsn` and `flush_record_lsn` were initialized to 0/1FFFFF0
     139              :     /// - 000000010000000000000002.partial
     140              :     ///   - it has only 1 byte written, which is not enough to make a full WAL record
     141              :     ///
     142              :     /// Partial segment 002 has no WAL records, and it will be removed by the next truncate_wal().
     143              :     /// This flag will be set to true after the first truncate_wal() call.
     144              :     ///
     145              :     /// [`write_lsn`]: Self::write_lsn
     146              :     is_truncated_after_restart: bool,
     147              : }
     148              : 
     149              : impl PhysicalStorage {
     150              :     /// Create new storage. If commit_lsn is not zero, flush_lsn is tried to be restored from
     151              :     /// the disk. Otherwise, all LSNs are set to zero.
     152            0 :     pub fn new(
     153            0 :         ttid: &TenantTimelineId,
     154            0 :         timeline_dir: &Utf8Path,
     155            0 :         state: &TimelinePersistentState,
     156            0 :         no_sync: bool,
     157            0 :     ) -> Result<PhysicalStorage> {
     158            0 :         let wal_seg_size = state.server.wal_seg_size as usize;
     159              : 
     160              :         // Find out where stored WAL ends, starting at commit_lsn which is a
     161              :         // known recent record boundary (unless we don't have WAL at all).
     162              :         //
     163              :         // NB: find_end_of_wal MUST be backwards compatible with the previously
     164              :         // written WAL. If find_end_of_wal fails to read any WAL written by an
     165              :         // older version of the code, we could lose data forever.
     166            0 :         let write_lsn = if state.commit_lsn == Lsn(0) {
     167            0 :             Lsn(0)
     168              :         } else {
     169            0 :             let version = state.server.pg_version / 10000;
     170            0 : 
     171            0 :             dispatch_pgversion!(
     172            0 :                 version,
     173            0 :                 pgv::xlog_utils::find_end_of_wal(
     174            0 :                     timeline_dir.as_std_path(),
     175            0 :                     wal_seg_size,
     176            0 :                     state.commit_lsn,
     177            0 :                 )?,
     178            0 :                 bail!("unsupported postgres version: {}", version)
     179              :             )
     180              :         };
     181              : 
     182              :         // note: this assumes we fsync'ed whole datadir on start.
     183            0 :         let flush_lsn = write_lsn;
     184            0 : 
     185            0 :         debug!(
     186            0 :             "initialized storage for timeline {}, flush_lsn={}, commit_lsn={}, peer_horizon_lsn={}",
     187              :             ttid.timeline_id, flush_lsn, state.commit_lsn, state.peer_horizon_lsn,
     188              :         );
     189            0 :         if flush_lsn < state.commit_lsn {
     190            0 :             bail!("timeline {} potential data loss: flush_lsn {} by find_end_of_wal is less than commit_lsn  {} from control file", ttid.timeline_id, flush_lsn, state.commit_lsn);
     191            0 :         }
     192            0 :         if flush_lsn < state.peer_horizon_lsn {
     193            0 :             warn!(
     194            0 :                 "timeline {}: flush_lsn {} is less than cfile peer_horizon_lsn {}",
     195              :                 ttid.timeline_id, flush_lsn, state.peer_horizon_lsn
     196              :             );
     197            0 :         }
     198              : 
     199            0 :         Ok(PhysicalStorage {
     200            0 :             metrics: WalStorageMetrics::default(),
     201            0 :             timeline_dir: timeline_dir.to_path_buf(),
     202            0 :             no_sync,
     203            0 :             wal_seg_size,
     204            0 :             pg_version: state.server.pg_version,
     205            0 :             system_id: state.server.system_id,
     206            0 :             write_lsn,
     207            0 :             write_record_lsn: write_lsn,
     208            0 :             flush_record_lsn: flush_lsn,
     209            0 :             decoder: WalStreamDecoder::new(write_lsn, state.server.pg_version / 10000),
     210            0 :             file: None,
     211            0 :             is_truncated_after_restart: false,
     212            0 :         })
     213            0 :     }
     214              : 
     215              :     /// Get all known state of the storage.
     216            0 :     pub fn internal_state(&self) -> (Lsn, Lsn, Lsn, bool) {
     217            0 :         (
     218            0 :             self.write_lsn,
     219            0 :             self.write_record_lsn,
     220            0 :             self.flush_record_lsn,
     221            0 :             self.file.is_some(),
     222            0 :         )
     223            0 :     }
     224              : 
     225              :     /// Call fsync if config requires so.
     226            0 :     async fn fsync_file(&mut self, file: &File) -> Result<()> {
     227            0 :         if !self.no_sync {
     228            0 :             self.metrics
     229            0 :                 .observe_flush_seconds(time_io_closure(file.sync_all()).await?);
     230            0 :         }
     231            0 :         Ok(())
     232            0 :     }
     233              : 
     234              :     /// Call fdatasync if config requires so.
     235            0 :     async fn fdatasync_file(&mut self, file: &File) -> Result<()> {
     236            0 :         if !self.no_sync {
     237            0 :             self.metrics
     238            0 :                 .observe_flush_seconds(time_io_closure(file.sync_data()).await?);
     239            0 :         }
     240            0 :         Ok(())
     241            0 :     }
     242              : 
     243              :     /// Open or create WAL segment file. Caller must call seek to the wanted position.
     244              :     /// Returns `file` and `is_partial`.
     245            0 :     async fn open_or_create(&mut self, segno: XLogSegNo) -> Result<(File, bool)> {
     246            0 :         let (wal_file_path, wal_file_partial_path) =
     247            0 :             wal_file_paths(&self.timeline_dir, segno, self.wal_seg_size);
     248              : 
     249              :         // Try to open already completed segment
     250            0 :         if let Ok(file) = OpenOptions::new().write(true).open(&wal_file_path).await {
     251            0 :             Ok((file, false))
     252            0 :         } else if let Ok(file) = OpenOptions::new()
     253            0 :             .write(true)
     254            0 :             .open(&wal_file_partial_path)
     255            0 :             .await
     256              :         {
     257              :             // Try to open existing partial file
     258            0 :             Ok((file, true))
     259              :         } else {
     260            0 :             let _timer = WAL_STORAGE_OPERATION_SECONDS
     261            0 :                 .with_label_values(&["initialize_segment"])
     262            0 :                 .start_timer();
     263            0 :             // Create and fill new partial file
     264            0 :             //
     265            0 :             // We're using fdatasync during WAL writing, so file size must not
     266            0 :             // change; to this end it is filled with zeros here. To avoid using
     267            0 :             // half initialized segment, first bake it under tmp filename and
     268            0 :             // then rename.
     269            0 :             let tmp_path = self.timeline_dir.join("waltmp");
     270            0 :             let file = File::create(&tmp_path)
     271            0 :                 .await
     272            0 :                 .with_context(|| format!("Failed to open tmp wal file {:?}", &tmp_path))?;
     273              : 
     274            0 :             fail::fail_point!("sk-zero-segment", |_| {
     275            0 :                 info!("sk-zero-segment failpoint hit");
     276            0 :                 Err(anyhow::anyhow!("failpoint: sk-zero-segment"))
     277            0 :             });
     278            0 :             file.set_len(self.wal_seg_size as u64).await?;
     279              : 
     280            0 :             if let Err(e) = durable_rename(&tmp_path, &wal_file_partial_path, !self.no_sync).await {
     281              :                 // Probably rename succeeded, but fsync of it failed. Remove
     282              :                 // the file then to avoid using it.
     283            0 :                 remove_file(wal_file_partial_path)
     284            0 :                     .await
     285            0 :                     .or_else(utils::fs_ext::ignore_not_found)?;
     286            0 :                 return Err(e.into());
     287            0 :             }
     288            0 :             Ok((file, true))
     289              :         }
     290            0 :     }
     291              : 
     292              :     /// Write WAL bytes, which are known to be located in a single WAL segment.
     293            0 :     async fn write_in_segment(&mut self, segno: u64, xlogoff: usize, buf: &[u8]) -> Result<()> {
     294            0 :         let mut file = if let Some(file) = self.file.take() {
     295            0 :             file
     296              :         } else {
     297            0 :             let (mut file, is_partial) = self.open_or_create(segno).await?;
     298            0 :             assert!(is_partial, "unexpected write into non-partial segment file");
     299            0 :             file.seek(SeekFrom::Start(xlogoff as u64)).await?;
     300            0 :             file
     301              :         };
     302              : 
     303            0 :         file.write_all(buf).await?;
     304              :         // Note: flush just ensures write above reaches the OS (this is not
     305              :         // needed in case of sync IO as Write::write there calls directly write
     306              :         // syscall, but needed in case of async). It does *not* fsyncs the file.
     307            0 :         file.flush().await?;
     308              : 
     309            0 :         if xlogoff + buf.len() == self.wal_seg_size {
     310              :             // If we reached the end of a WAL segment, flush and close it.
     311            0 :             self.fdatasync_file(&file).await?;
     312              : 
     313              :             // Rename partial file to completed file
     314            0 :             let (wal_file_path, wal_file_partial_path) =
     315            0 :                 wal_file_paths(&self.timeline_dir, segno, self.wal_seg_size);
     316            0 :             fs::rename(wal_file_partial_path, wal_file_path).await?;
     317            0 :         } else {
     318            0 :             // otherwise, file can be reused later
     319            0 :             self.file = Some(file);
     320            0 :         }
     321              : 
     322            0 :         Ok(())
     323            0 :     }
     324              : 
     325              :     /// Writes WAL to the segment files, until everything is writed. If some segments
     326              :     /// are fully written, they are flushed to disk. The last (partial) segment can
     327              :     /// be flushed separately later.
     328              :     ///
     329              :     /// Updates `write_lsn`.
     330            0 :     async fn write_exact(&mut self, pos: Lsn, mut buf: &[u8]) -> Result<()> {
     331            0 :         if self.write_lsn != pos {
     332              :             // need to flush the file before discarding it
     333            0 :             if let Some(file) = self.file.take() {
     334            0 :                 self.fdatasync_file(&file).await?;
     335            0 :             }
     336              : 
     337            0 :             self.write_lsn = pos;
     338            0 :         }
     339              : 
     340            0 :         while !buf.is_empty() {
     341              :             // Extract WAL location for this block
     342            0 :             let xlogoff = self.write_lsn.segment_offset(self.wal_seg_size);
     343            0 :             let segno = self.write_lsn.segment_number(self.wal_seg_size);
     344              : 
     345              :             // If crossing a WAL boundary, only write up until we reach wal segment size.
     346            0 :             let bytes_write = if xlogoff + buf.len() > self.wal_seg_size {
     347            0 :                 self.wal_seg_size - xlogoff
     348              :             } else {
     349            0 :                 buf.len()
     350              :             };
     351              : 
     352            0 :             self.write_in_segment(segno, xlogoff, &buf[..bytes_write])
     353            0 :                 .await?;
     354            0 :             self.write_lsn += bytes_write as u64;
     355            0 :             buf = &buf[bytes_write..];
     356              :         }
     357              : 
     358            0 :         Ok(())
     359            0 :     }
     360              : }
     361              : 
     362              : impl Storage for PhysicalStorage {
     363              :     // Last written LSN.
     364            0 :     fn write_lsn(&self) -> Lsn {
     365            0 :         self.write_lsn
     366            0 :     }
     367              :     /// flush_lsn returns LSN of last durably stored WAL record.
     368            0 :     fn flush_lsn(&self) -> Lsn {
     369            0 :         self.flush_record_lsn
     370            0 :     }
     371              : 
     372            0 :     async fn initialize_first_segment(&mut self, init_lsn: Lsn) -> Result<()> {
     373            0 :         let _timer = WAL_STORAGE_OPERATION_SECONDS
     374            0 :             .with_label_values(&["initialize_first_segment"])
     375            0 :             .start_timer();
     376            0 : 
     377            0 :         let segno = init_lsn.segment_number(self.wal_seg_size);
     378            0 :         let (mut file, _) = self.open_or_create(segno).await?;
     379            0 :         let major_pg_version = self.pg_version / 10000;
     380            0 :         let wal_seg =
     381            0 :             postgres_ffi::generate_wal_segment(segno, self.system_id, major_pg_version, init_lsn)?;
     382            0 :         file.seek(SeekFrom::Start(0)).await?;
     383            0 :         file.write_all(&wal_seg).await?;
     384            0 :         file.flush().await?;
     385            0 :         info!("initialized segno {} at lsn {}", segno, init_lsn);
     386              :         // note: file is *not* fsynced
     387            0 :         Ok(())
     388            0 :     }
     389              : 
     390              :     /// Write WAL to disk.
     391            0 :     async fn write_wal(&mut self, startpos: Lsn, buf: &[u8]) -> Result<()> {
     392            0 :         // Disallow any non-sequential writes, which can result in gaps or overwrites.
     393            0 :         // If we need to move the pointer, use truncate_wal() instead.
     394            0 :         if self.write_lsn > startpos {
     395            0 :             bail!(
     396            0 :                 "write_wal rewrites WAL written before, write_lsn={}, startpos={}",
     397            0 :                 self.write_lsn,
     398            0 :                 startpos
     399            0 :             );
     400            0 :         }
     401            0 :         if self.write_lsn < startpos && self.write_lsn != Lsn(0) {
     402            0 :             bail!(
     403            0 :                 "write_wal creates gap in written WAL, write_lsn={}, startpos={}",
     404            0 :                 self.write_lsn,
     405            0 :                 startpos
     406            0 :             );
     407            0 :         }
     408              : 
     409            0 :         let write_seconds = time_io_closure(self.write_exact(startpos, buf)).await?;
     410              :         // WAL is written, updating write metrics
     411            0 :         self.metrics.observe_write_seconds(write_seconds);
     412            0 :         self.metrics.observe_write_bytes(buf.len());
     413            0 : 
     414            0 :         // figure out last record's end lsn for reporting (if we got the
     415            0 :         // whole record)
     416            0 :         if self.decoder.available() != startpos {
     417            0 :             info!(
     418            0 :                 "restart decoder from {} to {}",
     419            0 :                 self.decoder.available(),
     420              :                 startpos,
     421              :             );
     422            0 :             let pg_version = self.decoder.pg_version;
     423            0 :             self.decoder = WalStreamDecoder::new(startpos, pg_version);
     424            0 :         }
     425            0 :         self.decoder.feed_bytes(buf);
     426              :         loop {
     427            0 :             match self.decoder.poll_decode()? {
     428            0 :                 None => break, // no full record yet
     429            0 :                 Some((lsn, _rec)) => {
     430            0 :                     self.write_record_lsn = lsn;
     431            0 :                 }
     432              :             }
     433              :         }
     434              : 
     435            0 :         Ok(())
     436            0 :     }
     437              : 
     438            0 :     async fn flush_wal(&mut self) -> Result<()> {
     439            0 :         if self.flush_record_lsn == self.write_record_lsn {
     440              :             // no need to do extra flush
     441            0 :             return Ok(());
     442            0 :         }
     443              : 
     444            0 :         if let Some(unflushed_file) = self.file.take() {
     445            0 :             self.fdatasync_file(&unflushed_file).await?;
     446            0 :             self.file = Some(unflushed_file);
     447              :         } else {
     448              :             // We have unflushed data (write_lsn != flush_lsn), but no file.
     449              :             // This should only happen if last file was fully written and flushed,
     450              :             // but haven't updated flush_lsn yet.
     451            0 :             if self.write_lsn.segment_offset(self.wal_seg_size) != 0 {
     452            0 :                 bail!(
     453            0 :                     "unexpected unflushed data with no open file, write_lsn={}, flush_lsn={}",
     454            0 :                     self.write_lsn,
     455            0 :                     self.flush_record_lsn
     456            0 :                 );
     457            0 :             }
     458              :         }
     459              : 
     460              :         // everything is flushed now, let's update flush_lsn
     461            0 :         self.flush_record_lsn = self.write_record_lsn;
     462            0 :         Ok(())
     463            0 :     }
     464              : 
     465              :     /// Truncate written WAL by removing all WAL segments after the given LSN.
     466              :     /// end_pos must point to the end of the WAL record.
     467            0 :     async fn truncate_wal(&mut self, end_pos: Lsn) -> Result<()> {
     468            0 :         let _timer = WAL_STORAGE_OPERATION_SECONDS
     469            0 :             .with_label_values(&["truncate_wal"])
     470            0 :             .start_timer();
     471            0 : 
     472            0 :         // Streaming must not create a hole, so truncate cannot be called on
     473            0 :         // non-written lsn.
     474            0 :         if self.write_record_lsn != Lsn(0) && end_pos > self.write_record_lsn {
     475            0 :             bail!(
     476            0 :                 "truncate_wal called on non-written WAL, write_record_lsn={}, end_pos={}",
     477            0 :                 self.write_record_lsn,
     478            0 :                 end_pos
     479            0 :             );
     480            0 :         }
     481            0 : 
     482            0 :         // Quick exit if nothing to do to avoid writing up to 16 MiB of zeros on
     483            0 :         // disk (this happens on each connect).
     484            0 :         if self.is_truncated_after_restart
     485            0 :             && end_pos == self.write_lsn
     486            0 :             && end_pos == self.flush_record_lsn
     487              :         {
     488            0 :             return Ok(());
     489            0 :         }
     490              : 
     491              :         // Close previously opened file, if any
     492            0 :         if let Some(unflushed_file) = self.file.take() {
     493            0 :             self.fdatasync_file(&unflushed_file).await?;
     494            0 :         }
     495              : 
     496            0 :         let xlogoff = end_pos.segment_offset(self.wal_seg_size);
     497            0 :         let segno = end_pos.segment_number(self.wal_seg_size);
     498            0 : 
     499            0 :         // Remove all segments after the given LSN.
     500            0 :         remove_segments_from_disk(&self.timeline_dir, self.wal_seg_size, |x| x > segno).await?;
     501              : 
     502            0 :         let (file, is_partial) = self.open_or_create(segno).await?;
     503              : 
     504              :         // Fill end with zeroes
     505            0 :         file.set_len(xlogoff as u64).await?;
     506            0 :         file.set_len(self.wal_seg_size as u64).await?;
     507            0 :         self.fsync_file(&file).await?;
     508              : 
     509            0 :         if !is_partial {
     510              :             // Make segment partial once again
     511            0 :             let (wal_file_path, wal_file_partial_path) =
     512            0 :                 wal_file_paths(&self.timeline_dir, segno, self.wal_seg_size);
     513            0 :             fs::rename(wal_file_path, wal_file_partial_path).await?;
     514            0 :         }
     515              : 
     516              :         // Update LSNs
     517            0 :         self.write_lsn = end_pos;
     518            0 :         self.write_record_lsn = end_pos;
     519            0 :         self.flush_record_lsn = end_pos;
     520            0 :         self.is_truncated_after_restart = true;
     521            0 :         Ok(())
     522            0 :     }
     523              : 
     524            0 :     fn remove_up_to(&self, segno_up_to: XLogSegNo) -> BoxFuture<'static, anyhow::Result<()>> {
     525            0 :         let timeline_dir = self.timeline_dir.clone();
     526            0 :         let wal_seg_size = self.wal_seg_size;
     527            0 :         Box::pin(async move {
     528            0 :             remove_segments_from_disk(&timeline_dir, wal_seg_size, |x| x <= segno_up_to).await
     529            0 :         })
     530            0 :     }
     531              : 
     532            0 :     fn close(&mut self) {
     533            0 :         // close happens in destructor
     534            0 :         let _open_file = self.file.take();
     535            0 :     }
     536              : 
     537            0 :     fn get_metrics(&self) -> WalStorageMetrics {
     538            0 :         self.metrics.clone()
     539            0 :     }
     540              : }
     541              : 
     542              : /// Remove all WAL segments in timeline_dir that match the given predicate.
     543            0 : async fn remove_segments_from_disk(
     544            0 :     timeline_dir: &Utf8Path,
     545            0 :     wal_seg_size: usize,
     546            0 :     remove_predicate: impl Fn(XLogSegNo) -> bool,
     547            0 : ) -> Result<()> {
     548            0 :     let _timer = WAL_STORAGE_OPERATION_SECONDS
     549            0 :         .with_label_values(&["remove_segments_from_disk"])
     550            0 :         .start_timer();
     551            0 : 
     552            0 :     let mut n_removed = 0;
     553            0 :     let mut min_removed = u64::MAX;
     554            0 :     let mut max_removed = u64::MIN;
     555              : 
     556            0 :     let mut entries = fs::read_dir(timeline_dir).await?;
     557            0 :     while let Some(entry) = entries.next_entry().await? {
     558            0 :         let entry_path = entry.path();
     559            0 :         let fname = entry_path.file_name().unwrap();
     560            0 :         /* Ignore files that are not XLOG segments */
     561            0 :         if !IsXLogFileName(fname) && !IsPartialXLogFileName(fname) {
     562            0 :             continue;
     563            0 :         }
     564            0 :         let (segno, _) = XLogFromFileName(fname, wal_seg_size)?;
     565            0 :         if remove_predicate(segno) {
     566            0 :             remove_file(entry_path).await?;
     567            0 :             n_removed += 1;
     568            0 :             min_removed = min(min_removed, segno);
     569            0 :             max_removed = max(max_removed, segno);
     570            0 :             REMOVED_WAL_SEGMENTS.inc();
     571            0 :         }
     572              :     }
     573              : 
     574            0 :     if n_removed > 0 {
     575            0 :         info!(
     576            0 :             "removed {} WAL segments [{}; {}]",
     577              :             n_removed, min_removed, max_removed
     578              :         );
     579            0 :     }
     580            0 :     Ok(())
     581            0 : }
     582              : 
     583              : pub struct WalReader {
     584              :     remote_path: RemotePath,
     585              :     timeline_dir: Utf8PathBuf,
     586              :     wal_seg_size: usize,
     587              :     pos: Lsn,
     588              :     wal_segment: Option<Pin<Box<dyn AsyncRead + Send + Sync>>>,
     589              : 
     590              :     // S3 will be used to read WAL if LSN is not available locally
     591              :     enable_remote_read: bool,
     592              : 
     593              :     // We don't have WAL locally if LSN is less than local_start_lsn
     594              :     local_start_lsn: Lsn,
     595              :     // We will respond with zero-ed bytes before this Lsn as long as
     596              :     // pos is in the same segment as timeline_start_lsn.
     597              :     timeline_start_lsn: Lsn,
     598              :     // integer version number of PostgreSQL, e.g. 14; 15; 16
     599              :     pg_version: u32,
     600              :     system_id: SystemId,
     601              :     timeline_start_segment: Option<Bytes>,
     602              : }
     603              : 
     604              : impl WalReader {
     605            0 :     pub fn new(
     606            0 :         ttid: &TenantTimelineId,
     607            0 :         timeline_dir: Utf8PathBuf,
     608            0 :         state: &TimelinePersistentState,
     609            0 :         start_pos: Lsn,
     610            0 :         enable_remote_read: bool,
     611            0 :     ) -> Result<Self> {
     612            0 :         if state.server.wal_seg_size == 0 || state.local_start_lsn == Lsn(0) {
     613            0 :             bail!("state uninitialized, no data to read");
     614            0 :         }
     615            0 : 
     616            0 :         // TODO: Upgrade to bail!() once we know this couldn't possibly happen
     617            0 :         if state.timeline_start_lsn == Lsn(0) {
     618            0 :             warn!("timeline_start_lsn uninitialized before initializing wal reader");
     619            0 :         }
     620              : 
     621            0 :         if start_pos
     622            0 :             < state
     623            0 :                 .timeline_start_lsn
     624            0 :                 .segment_lsn(state.server.wal_seg_size as usize)
     625              :         {
     626            0 :             bail!(
     627            0 :                 "Requested streaming from {}, which is before the start of the timeline {}, and also doesn't start at the first segment of that timeline",
     628            0 :                 start_pos,
     629            0 :                 state.timeline_start_lsn
     630            0 :             );
     631            0 :         }
     632            0 : 
     633            0 :         Ok(Self {
     634            0 :             remote_path: remote_timeline_path(ttid)?,
     635            0 :             timeline_dir,
     636            0 :             wal_seg_size: state.server.wal_seg_size as usize,
     637            0 :             pos: start_pos,
     638            0 :             wal_segment: None,
     639            0 :             enable_remote_read,
     640            0 :             local_start_lsn: state.local_start_lsn,
     641            0 :             timeline_start_lsn: state.timeline_start_lsn,
     642            0 :             pg_version: state.server.pg_version / 10000,
     643            0 :             system_id: state.server.system_id,
     644            0 :             timeline_start_segment: None,
     645              :         })
     646            0 :     }
     647              : 
     648              :     /// Read WAL at current position into provided buf, returns number of bytes
     649              :     /// read. It can be smaller than buf size only if segment boundary is
     650              :     /// reached.
     651            0 :     pub async fn read(&mut self, buf: &mut [u8]) -> Result<usize> {
     652            0 :         // If this timeline is new, we may not have a full segment yet, so
     653            0 :         // we pad the first bytes of the timeline's first WAL segment with 0s
     654            0 :         if self.pos < self.timeline_start_lsn {
     655            0 :             debug_assert_eq!(
     656            0 :                 self.pos.segment_number(self.wal_seg_size),
     657            0 :                 self.timeline_start_lsn.segment_number(self.wal_seg_size)
     658              :             );
     659              : 
     660              :             // All bytes after timeline_start_lsn are in WAL, but those before
     661              :             // are not, so we manually construct an empty segment for the bytes
     662              :             // not available in this timeline.
     663            0 :             if self.timeline_start_segment.is_none() {
     664            0 :                 let it = postgres_ffi::generate_wal_segment(
     665            0 :                     self.timeline_start_lsn.segment_number(self.wal_seg_size),
     666            0 :                     self.system_id,
     667            0 :                     self.pg_version,
     668            0 :                     self.timeline_start_lsn,
     669            0 :                 )?;
     670            0 :                 self.timeline_start_segment = Some(it);
     671            0 :             }
     672              : 
     673            0 :             assert!(self.timeline_start_segment.is_some());
     674            0 :             let segment = self.timeline_start_segment.take().unwrap();
     675            0 : 
     676            0 :             let seg_bytes = &segment[..];
     677            0 : 
     678            0 :             // How much of the current segment have we already consumed?
     679            0 :             let pos_seg_offset = self.pos.segment_offset(self.wal_seg_size);
     680            0 : 
     681            0 :             // How many bytes may we consume in total?
     682            0 :             let tl_start_seg_offset = self.timeline_start_lsn.segment_offset(self.wal_seg_size);
     683            0 : 
     684            0 :             debug_assert!(seg_bytes.len() > pos_seg_offset);
     685            0 :             debug_assert!(seg_bytes.len() > tl_start_seg_offset);
     686              : 
     687              :             // Copy as many bytes as possible into the buffer
     688            0 :             let len = (tl_start_seg_offset - pos_seg_offset).min(buf.len());
     689            0 :             buf[0..len].copy_from_slice(&seg_bytes[pos_seg_offset..pos_seg_offset + len]);
     690            0 : 
     691            0 :             self.pos += len as u64;
     692            0 : 
     693            0 :             // If we're done with the segment, we can release it's memory.
     694            0 :             // However, if we're not yet done, store it so that we don't have to
     695            0 :             // construct the segment the next time this function is called.
     696            0 :             if self.pos < self.timeline_start_lsn {
     697            0 :                 self.timeline_start_segment = Some(segment);
     698            0 :             }
     699              : 
     700            0 :             return Ok(len);
     701            0 :         }
     702              : 
     703            0 :         let mut wal_segment = match self.wal_segment.take() {
     704            0 :             Some(reader) => reader,
     705            0 :             None => self.open_segment().await?,
     706              :         };
     707              : 
     708              :         // How much to read and send in message? We cannot cross the WAL file
     709              :         // boundary, and we don't want send more than provided buffer.
     710            0 :         let xlogoff = self.pos.segment_offset(self.wal_seg_size);
     711            0 :         let send_size = min(buf.len(), self.wal_seg_size - xlogoff);
     712            0 : 
     713            0 :         // Read some data from the file.
     714            0 :         let buf = &mut buf[0..send_size];
     715            0 :         let send_size = wal_segment.read_exact(buf).await?;
     716            0 :         self.pos += send_size as u64;
     717            0 : 
     718            0 :         // Decide whether to reuse this file. If we don't set wal_segment here
     719            0 :         // a new reader will be opened next time.
     720            0 :         if self.pos.segment_offset(self.wal_seg_size) != 0 {
     721            0 :             self.wal_segment = Some(wal_segment);
     722            0 :         }
     723              : 
     724            0 :         Ok(send_size)
     725            0 :     }
     726              : 
     727              :     /// Open WAL segment at the current position of the reader.
     728            0 :     async fn open_segment(&self) -> Result<Pin<Box<dyn AsyncRead + Send + Sync>>> {
     729            0 :         let xlogoff = self.pos.segment_offset(self.wal_seg_size);
     730            0 :         let segno = self.pos.segment_number(self.wal_seg_size);
     731            0 :         let wal_file_name = XLogFileName(PG_TLI, segno, self.wal_seg_size);
     732            0 : 
     733            0 :         // Try to open local file, if we may have WAL locally
     734            0 :         if self.pos >= self.local_start_lsn {
     735            0 :             let res = open_wal_file(&self.timeline_dir, segno, self.wal_seg_size).await;
     736            0 :             match res {
     737            0 :                 Ok((mut file, _)) => {
     738            0 :                     file.seek(SeekFrom::Start(xlogoff as u64)).await?;
     739            0 :                     return Ok(Box::pin(file));
     740              :                 }
     741            0 :                 Err(e) => {
     742            0 :                     let is_not_found = e.chain().any(|e| {
     743            0 :                         if let Some(e) = e.downcast_ref::<io::Error>() {
     744            0 :                             e.kind() == io::ErrorKind::NotFound
     745              :                         } else {
     746            0 :                             false
     747              :                         }
     748            0 :                     });
     749            0 :                     if !is_not_found {
     750            0 :                         return Err(e);
     751            0 :                     }
     752              :                     // NotFound is expected, fall through to remote read
     753              :                 }
     754              :             };
     755            0 :         }
     756              : 
     757              :         // Try to open remote file, if remote reads are enabled
     758            0 :         if self.enable_remote_read {
     759            0 :             let remote_wal_file_path = self.remote_path.join(&wal_file_name);
     760            0 :             return read_object(&remote_wal_file_path, xlogoff as u64).await;
     761            0 :         }
     762            0 : 
     763            0 :         bail!("WAL segment is not found")
     764            0 :     }
     765              : }
     766              : 
     767              : /// Helper function for opening WAL segment `segno` in `dir`. Returns file and
     768              : /// whether it is .partial.
     769            0 : pub(crate) async fn open_wal_file(
     770            0 :     timeline_dir: &Utf8Path,
     771            0 :     segno: XLogSegNo,
     772            0 :     wal_seg_size: usize,
     773            0 : ) -> Result<(tokio::fs::File, bool)> {
     774            0 :     let (wal_file_path, wal_file_partial_path) = wal_file_paths(timeline_dir, segno, wal_seg_size);
     775            0 : 
     776            0 :     // First try to open the .partial file.
     777            0 :     let mut partial_path = wal_file_path.to_owned();
     778            0 :     partial_path.set_extension("partial");
     779            0 :     if let Ok(opened_file) = tokio::fs::File::open(&wal_file_partial_path).await {
     780            0 :         return Ok((opened_file, true));
     781            0 :     }
     782              : 
     783              :     // If that failed, try it without the .partial extension.
     784            0 :     let pf = tokio::fs::File::open(&wal_file_path)
     785            0 :         .await
     786            0 :         .with_context(|| format!("failed to open WAL file {:#}", wal_file_path))
     787            0 :         .map_err(|e| {
     788            0 :             warn!("{}", e);
     789            0 :             e
     790            0 :         })?;
     791              : 
     792            0 :     Ok((pf, false))
     793            0 : }
     794              : 
     795              : /// Helper returning full path to WAL segment file and its .partial brother.
     796            0 : pub fn wal_file_paths(
     797            0 :     timeline_dir: &Utf8Path,
     798            0 :     segno: XLogSegNo,
     799            0 :     wal_seg_size: usize,
     800            0 : ) -> (Utf8PathBuf, Utf8PathBuf) {
     801            0 :     let wal_file_name = XLogFileName(PG_TLI, segno, wal_seg_size);
     802            0 :     let wal_file_path = timeline_dir.join(wal_file_name.clone());
     803            0 :     let wal_file_partial_path = timeline_dir.join(wal_file_name + ".partial");
     804            0 :     (wal_file_path, wal_file_partial_path)
     805            0 : }
        

Generated by: LCOV version 2.1-beta