LCOV - code coverage report
Current view: top level - pageserver/src/tenant - remote_timeline_client.rs (source / functions) Coverage Total Hit
Test: aca8877be6ceba750c1be359ed71bc1799d52b30.info Lines: 96.1 % 1489 1431
Test Date: 2024-02-14 18:05:35 Functions: 79.8 % 183 146

            Line data    Source code
       1              : //! This module manages synchronizing local FS with remote storage.
       2              : //!
       3              : //! # Overview
       4              : //!
       5              : //! * [`RemoteTimelineClient`] provides functions related to upload/download of a particular timeline.
       6              : //!   It contains a queue of pending uploads, and manages the queue, performing uploads in parallel
       7              : //!   when it's safe to do so.
       8              : //!
       9              : //! * Stand-alone function, [`list_remote_timelines`], to get list of timelines of a tenant.
      10              : //!
      11              : //! These functions use the low-level remote storage client, [`remote_storage::RemoteStorage`].
      12              : //!
      13              : //! # APIs & How To Use Them
      14              : //!
      15              : //! There is a [RemoteTimelineClient] for each [Timeline][`crate::tenant::Timeline`] in the system,
      16              : //! unless the pageserver is configured without remote storage.
      17              : //!
      18              : //! We allocate the client instance in [Timeline][`crate::tenant::Timeline`], i.e.,
      19              : //! either in [`crate::tenant::mgr`] during startup or when creating a new
      20              : //! timeline.
      21              : //! However, the client does not become ready for use until we've initialized its upload queue:
      22              : //!
      23              : //! - For timelines that already have some state on the remote storage, we use
      24              : //!   [`RemoteTimelineClient::init_upload_queue`] .
      25              : //! - For newly created timelines, we use
      26              : //!   [`RemoteTimelineClient::init_upload_queue_for_empty_remote`].
      27              : //!
      28              : //! The former takes the remote's [`IndexPart`] as an argument, possibly retrieved
      29              : //! using [`list_remote_timelines`]. We'll elaborate on [`IndexPart`] in the next section.
      30              : //!
      31              : //! Whenever we've created/updated/deleted a file in a timeline directory, we schedule
      32              : //! the corresponding remote operation with the timeline's [`RemoteTimelineClient`]:
      33              : //!
      34              : //! - [`RemoteTimelineClient::schedule_layer_file_upload`]  when we've created a new layer file.
      35              : //! - [`RemoteTimelineClient::schedule_index_upload_for_metadata_update`] when we've updated the timeline metadata file.
      36              : //! - [`RemoteTimelineClient::schedule_index_upload_for_file_changes`] to upload an updated index file, after we've scheduled file uploads
      37              : //! - [`RemoteTimelineClient::schedule_layer_file_deletion`] when we've deleted one or more layer files.
      38              : //!
      39              : //! Internally, these functions create [`UploadOp`]s and put them in a queue.
      40              : //!
      41              : //! There are also APIs for downloading files.
      42              : //! These are not part of the aforementioned queuing and will not be discussed
      43              : //! further here, except in the section covering tenant attach.
      44              : //!
      45              : //! # Remote Storage Structure & [`IndexPart`] Index File
      46              : //!
      47              : //! The "directory structure" in the remote storage mirrors the local directory structure, with paths
      48              : //! like `tenants/<tenant_id>/timelines/<timeline_id>/<layer filename>`.
      49              : //! Yet instead of keeping the `metadata` file remotely, we wrap it with more
      50              : //! data in an "index file" aka [`IndexPart`], containing the list of **all** remote
      51              : //! files for a given timeline.
      52              : //! If a file is not referenced from [`IndexPart`], it's not part of the remote storage state.
      53              : //!
      54              : //! Having the `IndexPart` also avoids expensive and slow `S3 list` commands.
      55              : //!
      56              : //! # Consistency
      57              : //!
      58              : //! To have a consistent remote structure, it's important that uploads and
      59              : //! deletions are performed in the right order. For example, the index file
      60              : //! contains a list of layer files, so it must not be uploaded until all the
      61              : //! layer files that are in its list have been successfully uploaded.
      62              : //!
      63              : //! The contract between client and its user is that the user is responsible of
      64              : //! scheduling operations in an order that keeps the remote consistent as
      65              : //! described above.
      66              : //! From the user's perspective, the operations are executed sequentially.
      67              : //! Internally, the client knows which operations can be performed in parallel,
      68              : //! and which operations act like a "barrier" that require preceding operations
      69              : //! to finish. The calling code just needs to call the schedule-functions in the
      70              : //! correct order, and the client will parallelize the operations in a way that
      71              : //! is safe.
      72              : //!
      73              : //! The caller should be careful with deletion, though. They should not delete
      74              : //! local files that have been scheduled for upload but not yet finished uploading.
      75              : //! Otherwise the upload will fail. To wait for an upload to finish, use
      76              : //! the 'wait_completion' function (more on that later.)
      77              : //!
      78              : //! All of this relies on the following invariants:
      79              : //!
      80              : //! - We rely on read-after write consistency in the remote storage.
      81              : //! - Layer files are immutable
      82              : //!
      83              : //! NB: Pageserver assumes that it has exclusive write access to the tenant in remote
      84              : //! storage. Different tenants can be attached to different pageservers, but if the
      85              : //! same tenant is attached to two pageservers at the same time, they will overwrite
      86              : //! each other's index file updates, and confusion will ensue. There's no interlock or
      87              : //! mechanism to detect that in the pageserver, we rely on the control plane to ensure
      88              : //! that that doesn't happen.
      89              : //!
      90              : //! ## Implementation Note
      91              : //!
      92              : //! The *actual* remote state lags behind the *desired* remote state while
      93              : //! there are in-flight operations.
      94              : //! We keep track of the desired remote state in
      95              : //! [`UploadQueueInitialized::latest_files`] and [`UploadQueueInitialized::latest_metadata`].
      96              : //! It is initialized based on the [`IndexPart`] that was passed during init
      97              : //! and updated with every `schedule_*` function call.
      98              : //! All this is necessary necessary to compute the future [`IndexPart`]s
      99              : //! when scheduling an operation while other operations that also affect the
     100              : //! remote [`IndexPart`] are in flight.
     101              : //!
     102              : //! # Retries & Error Handling
     103              : //!
     104              : //! The client retries operations indefinitely, using exponential back-off.
     105              : //! There is no way to force a retry, i.e., interrupt the back-off.
     106              : //! This could be built easily.
     107              : //!
     108              : //! # Cancellation
     109              : //!
     110              : //! The operations execute as plain [`task_mgr`] tasks, scoped to
     111              : //! the client's tenant and timeline.
     112              : //! Dropping the client will drop queued operations but not executing operations.
     113              : //! These will complete unless the `task_mgr` tasks are cancelled using `task_mgr`
     114              : //! APIs, e.g., during pageserver shutdown, timeline delete, or tenant detach.
     115              : //!
     116              : //! # Completion
     117              : //!
     118              : //! Once an operation has completed, we update
     119              : //! [`UploadQueueInitialized::projected_remote_consistent_lsn`] immediately,
     120              : //! and submit a request through the DeletionQueue to update
     121              : //! [`UploadQueueInitialized::visible_remote_consistent_lsn`] after it has
     122              : //! validated that our generation is not stale.  It is this visible value
     123              : //! that is advertized to safekeepers as a signal that that they can
     124              : //! delete the WAL up to that LSN.
     125              : //!
     126              : //! The [`RemoteTimelineClient::wait_completion`] method can be used to wait
     127              : //! for all pending operations to complete. It does not prevent more
     128              : //! operations from getting scheduled.
     129              : //!
     130              : //! # Crash Consistency
     131              : //!
     132              : //! We do not persist the upload queue state.
     133              : //! If we drop the client, or crash, all unfinished operations are lost.
     134              : //!
     135              : //! To recover, the following steps need to be taken:
     136              : //! - Retrieve the current remote [`IndexPart`]. This gives us a
     137              : //!   consistent remote state, assuming the user scheduled the operations in
     138              : //!   the correct order.
     139              : //! - Initiate upload queue with that [`IndexPart`].
     140              : //! - Reschedule all lost operations by comparing the local filesystem state
     141              : //!   and remote state as per [`IndexPart`]. This is done in
     142              : //!   [`Tenant::timeline_init_and_sync`].
     143              : //!
     144              : //! Note that if we crash during file deletion between the index update
     145              : //! that removes the file from the list of files, and deleting the remote file,
     146              : //! the file is leaked in the remote storage. Similarly, if a new file is created
     147              : //! and uploaded, but the pageserver dies permanently before updating the
     148              : //! remote index file, the new file is leaked in remote storage. We accept and
     149              : //! tolerate that for now.
     150              : //! Note further that we cannot easily fix this by scheduling deletes for every
     151              : //! file that is present only on the remote, because we cannot distinguish the
     152              : //! following two cases:
     153              : //! - (1) We had the file locally, deleted it locally, scheduled a remote delete,
     154              : //!   but crashed before it finished remotely.
     155              : //! - (2) We never had the file locally because we haven't on-demand downloaded
     156              : //!   it yet.
     157              : //!
     158              : //! # Downloads
     159              : //!
     160              : //! In addition to the upload queue, [`RemoteTimelineClient`] has functions for
     161              : //! downloading files from the remote storage. Downloads are performed immediately
     162              : //! against the `RemoteStorage`, independently of the upload queue.
     163              : //!
     164              : //! When we attach a tenant, we perform the following steps:
     165              : //! - create `Tenant` object in `TenantState::Attaching` state
     166              : //! - List timelines that are present in remote storage, and for each:
     167              : //!   - download their remote [`IndexPart`]s
     168              : //!   - create `Timeline` struct and a `RemoteTimelineClient`
     169              : //!   - initialize the client's upload queue with its `IndexPart`
     170              : //!   - schedule uploads for layers that are only present locally.
     171              : //! - After the above is done for each timeline, open the tenant for business by
     172              : //!   transitioning it from `TenantState::Attaching` to `TenantState::Active` state.
     173              : //!   This starts the timelines' WAL-receivers and the tenant's GC & Compaction loops.
     174              : //!
     175              : //! # Operating Without Remote Storage
     176              : //!
     177              : //! If no remote storage configuration is provided, the [`RemoteTimelineClient`] is
     178              : //! not created and the uploads are skipped.
     179              : //!
     180              : //! [`Tenant::timeline_init_and_sync`]: super::Tenant::timeline_init_and_sync
     181              : //! [`Timeline::load_layer_map`]: super::Timeline::load_layer_map
     182              : 
     183              : pub(crate) mod download;
     184              : pub mod index;
     185              : pub(crate) mod upload;
     186              : 
     187              : use anyhow::Context;
     188              : use camino::Utf8Path;
     189              : use chrono::{NaiveDateTime, Utc};
     190              : 
     191              : pub(crate) use download::download_initdb_tar_zst;
     192              : use pageserver_api::shard::{ShardIndex, TenantShardId};
     193              : use scopeguard::ScopeGuard;
     194              : use tokio_util::sync::CancellationToken;
     195              : pub(crate) use upload::upload_initdb_dir;
     196              : use utils::backoff::{
     197              :     self, exponential_backoff, DEFAULT_BASE_BACKOFF_SECONDS, DEFAULT_MAX_BACKOFF_SECONDS,
     198              : };
     199              : use utils::timeout::{timeout_cancellable, TimeoutCancellableError};
     200              : 
     201              : use std::collections::{HashMap, VecDeque};
     202              : use std::sync::atomic::{AtomicU32, Ordering};
     203              : use std::sync::{Arc, Mutex};
     204              : use std::time::Duration;
     205              : 
     206              : use remote_storage::{DownloadError, GenericRemoteStorage, RemotePath};
     207              : use std::ops::DerefMut;
     208              : use tracing::{debug, error, info, instrument, warn};
     209              : use tracing::{info_span, Instrument};
     210              : use utils::lsn::Lsn;
     211              : 
     212              : use crate::deletion_queue::DeletionQueueClient;
     213              : use crate::metrics::{
     214              :     MeasureRemoteOp, RemoteOpFileKind, RemoteOpKind, RemoteTimelineClientMetrics,
     215              :     RemoteTimelineClientMetricsCallTrackSize, REMOTE_ONDEMAND_DOWNLOADED_BYTES,
     216              :     REMOTE_ONDEMAND_DOWNLOADED_LAYERS,
     217              : };
     218              : use crate::task_mgr::shutdown_token;
     219              : use crate::tenant::debug_assert_current_span_has_tenant_and_timeline_id;
     220              : use crate::tenant::remote_timeline_client::download::download_retry;
     221              : use crate::tenant::storage_layer::AsLayerDesc;
     222              : use crate::tenant::upload_queue::Delete;
     223              : use crate::tenant::TIMELINES_SEGMENT_NAME;
     224              : use crate::{
     225              :     config::PageServerConf,
     226              :     task_mgr,
     227              :     task_mgr::TaskKind,
     228              :     task_mgr::BACKGROUND_RUNTIME,
     229              :     tenant::metadata::TimelineMetadata,
     230              :     tenant::upload_queue::{
     231              :         UploadOp, UploadQueue, UploadQueueInitialized, UploadQueueStopped, UploadTask,
     232              :     },
     233              :     TENANT_HEATMAP_BASENAME,
     234              : };
     235              : 
     236              : use utils::id::{TenantId, TimelineId};
     237              : 
     238              : use self::index::IndexPart;
     239              : 
     240              : use super::storage_layer::{Layer, LayerFileName, ResidentLayer};
     241              : use super::upload_queue::SetDeletedFlagProgress;
     242              : use super::Generation;
     243              : 
     244              : pub(crate) use download::{is_temp_download_file, list_remote_timelines};
     245              : pub(crate) use index::LayerFileMetadata;
     246              : 
     247              : // Occasional network issues and such can cause remote operations to fail, and
     248              : // that's expected. If a download fails, we log it at info-level, and retry.
     249              : // But after FAILED_DOWNLOAD_WARN_THRESHOLD retries, we start to log it at WARN
     250              : // level instead, as repeated failures can mean a more serious problem. If it
     251              : // fails more than FAILED_DOWNLOAD_RETRIES times, we give up
     252              : pub(crate) const FAILED_DOWNLOAD_WARN_THRESHOLD: u32 = 3;
     253              : pub(crate) const FAILED_REMOTE_OP_RETRIES: u32 = 10;
     254              : 
     255              : // Similarly log failed uploads and deletions at WARN level, after this many
     256              : // retries. Uploads and deletions are retried forever, though.
     257              : pub(crate) const FAILED_UPLOAD_WARN_THRESHOLD: u32 = 3;
     258              : 
     259              : pub(crate) const INITDB_PATH: &str = "initdb.tar.zst";
     260              : 
     261              : pub(crate) const INITDB_PRESERVED_PATH: &str = "initdb-preserved.tar.zst";
     262              : 
     263              : /// Default buffer size when interfacing with [`tokio::fs::File`].
     264              : pub(crate) const BUFFER_SIZE: usize = 32 * 1024;
     265              : 
     266              : /// This timeout is intended to deal with hangs in lower layers, e.g. stuck TCP flows.  It is not
     267              : /// intended to be snappy enough for prompt shutdown, as we have a CancellationToken for that.
     268              : pub(crate) const UPLOAD_TIMEOUT: Duration = Duration::from_secs(120);
     269              : pub(crate) const DOWNLOAD_TIMEOUT: Duration = Duration::from_secs(120);
     270              : 
     271              : pub enum MaybeDeletedIndexPart {
     272              :     IndexPart(IndexPart),
     273              :     Deleted(IndexPart),
     274              : }
     275              : 
     276              : /// Errors that can arise when calling [`RemoteTimelineClient::stop`].
     277            0 : #[derive(Debug, thiserror::Error)]
     278              : pub enum StopError {
     279              :     /// Returned if the upload queue was never initialized.
     280              :     /// See [`RemoteTimelineClient::init_upload_queue`] and [`RemoteTimelineClient::init_upload_queue_for_empty_remote`].
     281              :     #[error("queue is not initialized")]
     282              :     QueueUninitialized,
     283              : }
     284              : 
     285            0 : #[derive(Debug, thiserror::Error)]
     286              : pub enum PersistIndexPartWithDeletedFlagError {
     287              :     #[error("another task is already setting the deleted_flag, started at {0:?}")]
     288              :     AlreadyInProgress(NaiveDateTime),
     289              :     #[error("the deleted_flag was already set, value is {0:?}")]
     290              :     AlreadyDeleted(NaiveDateTime),
     291              :     #[error(transparent)]
     292              :     Other(#[from] anyhow::Error),
     293              : }
     294              : 
     295              : /// A client for accessing a timeline's data in remote storage.
     296              : ///
     297              : /// This takes care of managing the number of connections, and balancing them
     298              : /// across tenants. This also handles retries of failed uploads.
     299              : ///
     300              : /// Upload and delete requests are ordered so that before a deletion is
     301              : /// performed, we wait for all preceding uploads to finish. This ensures sure
     302              : /// that if you perform a compaction operation that reshuffles data in layer
     303              : /// files, we don't have a transient state where the old files have already been
     304              : /// deleted, but new files have not yet been uploaded.
     305              : ///
     306              : /// Similarly, this enforces an order between index-file uploads, and layer
     307              : /// uploads.  Before an index-file upload is performed, all preceding layer
     308              : /// uploads must be finished.
     309              : ///
     310              : /// This also maintains a list of remote files, and automatically includes that
     311              : /// in the index part file, whenever timeline metadata is uploaded.
     312              : ///
     313              : /// Downloads are not queued, they are performed immediately.
     314              : pub struct RemoteTimelineClient {
     315              :     conf: &'static PageServerConf,
     316              : 
     317              :     runtime: tokio::runtime::Handle,
     318              : 
     319              :     tenant_shard_id: TenantShardId,
     320              :     timeline_id: TimelineId,
     321              :     generation: Generation,
     322              : 
     323              :     upload_queue: Mutex<UploadQueue>,
     324              : 
     325              :     metrics: Arc<RemoteTimelineClientMetrics>,
     326              : 
     327              :     storage_impl: GenericRemoteStorage,
     328              : 
     329              :     deletion_queue_client: DeletionQueueClient,
     330              : 
     331              :     cancel: CancellationToken,
     332              : }
     333              : 
     334              : /// Wrapper for timeout_cancellable that flattens result and converts TimeoutCancellableError to anyhow.
     335              : ///
     336              : /// This is a convenience for the various upload functions.  In future
     337              : /// the anyhow::Error result should be replaced with a more structured type that
     338              : /// enables callers to avoid handling shutdown as an error.
     339        31131 : async fn upload_cancellable<F>(cancel: &CancellationToken, future: F) -> anyhow::Result<()>
     340        31131 : where
     341        31131 :     F: std::future::Future<Output = anyhow::Result<()>>,
     342        31131 : {
     343       998813 :     match timeout_cancellable(UPLOAD_TIMEOUT, cancel, future).await {
     344        28470 :         Ok(Ok(())) => Ok(()),
     345         2652 :         Ok(Err(e)) => Err(e),
     346            0 :         Err(TimeoutCancellableError::Timeout) => Err(anyhow::anyhow!("Timeout")),
     347            0 :         Err(TimeoutCancellableError::Cancelled) => Err(anyhow::anyhow!("Shutting down")),
     348              :     }
     349        31122 : }
     350              : /// Wrapper for timeout_cancellable that flattens result and converts TimeoutCancellableError to DownloaDError.
     351        12832 : async fn download_cancellable<F, R>(
     352        12832 :     cancel: &CancellationToken,
     353        12832 :     future: F,
     354        12832 : ) -> Result<R, DownloadError>
     355        12832 : where
     356        12832 :     F: std::future::Future<Output = Result<R, DownloadError>>,
     357        12832 : {
     358        33512 :     match timeout_cancellable(DOWNLOAD_TIMEOUT, cancel, future).await {
     359        12060 :         Ok(Ok(r)) => Ok(r),
     360          769 :         Ok(Err(e)) => Err(e),
     361              :         Err(TimeoutCancellableError::Timeout) => {
     362            0 :             Err(DownloadError::Other(anyhow::anyhow!("Timed out")))
     363              :         }
     364            3 :         Err(TimeoutCancellableError::Cancelled) => Err(DownloadError::Cancelled),
     365              :     }
     366        12832 : }
     367              : 
     368              : impl RemoteTimelineClient {
     369              :     ///
     370              :     /// Create a remote storage client for given timeline
     371              :     ///
     372              :     /// Note: the caller must initialize the upload queue before any uploads can be scheduled,
     373              :     /// by calling init_upload_queue.
     374              :     ///
     375         1595 :     pub fn new(
     376         1595 :         remote_storage: GenericRemoteStorage,
     377         1595 :         deletion_queue_client: DeletionQueueClient,
     378         1595 :         conf: &'static PageServerConf,
     379         1595 :         tenant_shard_id: TenantShardId,
     380         1595 :         timeline_id: TimelineId,
     381         1595 :         generation: Generation,
     382         1595 :     ) -> RemoteTimelineClient {
     383         1595 :         RemoteTimelineClient {
     384         1595 :             conf,
     385         1595 :             runtime: if cfg!(test) {
     386              :                 // remote_timeline_client.rs tests rely on current-thread runtime
     387          292 :                 tokio::runtime::Handle::current()
     388              :             } else {
     389         1303 :                 BACKGROUND_RUNTIME.handle().clone()
     390              :             },
     391         1595 :             tenant_shard_id,
     392         1595 :             timeline_id,
     393         1595 :             generation,
     394         1595 :             storage_impl: remote_storage,
     395         1595 :             deletion_queue_client,
     396         1595 :             upload_queue: Mutex::new(UploadQueue::Uninitialized),
     397         1595 :             metrics: Arc::new(RemoteTimelineClientMetrics::new(
     398         1595 :                 &tenant_shard_id,
     399         1595 :                 &timeline_id,
     400         1595 :             )),
     401         1595 :             cancel: CancellationToken::new(),
     402         1595 :         }
     403         1595 :     }
     404              : 
     405              :     /// Initialize the upload queue for a remote storage that already received
     406              :     /// an index file upload, i.e., it's not empty.
     407              :     /// The given `index_part` must be the one on the remote.
     408          431 :     pub fn init_upload_queue(&self, index_part: &IndexPart) -> anyhow::Result<()> {
     409          431 :         let mut upload_queue = self.upload_queue.lock().unwrap();
     410          431 :         upload_queue.initialize_with_current_remote_index_part(index_part)?;
     411          431 :         self.update_remote_physical_size_gauge(Some(index_part));
     412          431 :         info!(
     413          431 :             "initialized upload queue from remote index with {} layer files",
     414          431 :             index_part.layer_metadata.len()
     415          431 :         );
     416          431 :         Ok(())
     417          431 :     }
     418              : 
     419              :     /// Initialize the upload queue for the case where the remote storage is empty,
     420              :     /// i.e., it doesn't have an `IndexPart`.
     421         1149 :     pub fn init_upload_queue_for_empty_remote(
     422         1149 :         &self,
     423         1149 :         local_metadata: &TimelineMetadata,
     424         1149 :     ) -> anyhow::Result<()> {
     425         1149 :         let mut upload_queue = self.upload_queue.lock().unwrap();
     426         1149 :         upload_queue.initialize_empty_remote(local_metadata)?;
     427         1149 :         self.update_remote_physical_size_gauge(None);
     428         1149 :         info!("initialized upload queue as empty");
     429         1149 :         Ok(())
     430         1149 :     }
     431              : 
     432              :     /// Initialize the queue in stopped state. Used in startup path
     433              :     /// to continue deletion operation interrupted by pageserver crash or restart.
     434           12 :     pub fn init_upload_queue_stopped_to_continue_deletion(
     435           12 :         &self,
     436           12 :         index_part: &IndexPart,
     437           12 :     ) -> anyhow::Result<()> {
     438              :         // FIXME: consider newtype for DeletedIndexPart.
     439           12 :         let deleted_at = index_part.deleted_at.ok_or(anyhow::anyhow!(
     440           12 :             "bug: it is responsibility of the caller to provide index part from MaybeDeletedIndexPart::Deleted"
     441           12 :         ))?;
     442              : 
     443              :         {
     444           12 :             let mut upload_queue = self.upload_queue.lock().unwrap();
     445           12 :             upload_queue.initialize_with_current_remote_index_part(index_part)?;
     446           12 :             self.update_remote_physical_size_gauge(Some(index_part));
     447           12 :         }
     448           12 :         // also locks upload queue, without dropping the guard above it will be a deadlock
     449           12 :         self.stop().expect("initialized line above");
     450           12 : 
     451           12 :         let mut upload_queue = self.upload_queue.lock().unwrap();
     452           12 : 
     453           12 :         upload_queue
     454           12 :             .stopped_mut()
     455           12 :             .expect("stopped above")
     456           12 :             .deleted_at = SetDeletedFlagProgress::Successful(deleted_at);
     457           12 : 
     458           12 :         Ok(())
     459           12 :     }
     460              : 
     461         3185 :     pub fn remote_consistent_lsn_projected(&self) -> Option<Lsn> {
     462         3185 :         match &mut *self.upload_queue.lock().unwrap() {
     463            0 :             UploadQueue::Uninitialized => None,
     464         3073 :             UploadQueue::Initialized(q) => q.get_last_remote_consistent_lsn_projected(),
     465          112 :             UploadQueue::Stopped(q) => q
     466          112 :                 .upload_queue_for_deletion
     467          112 :                 .get_last_remote_consistent_lsn_projected(),
     468              :         }
     469         3185 :     }
     470              : 
     471       755304 :     pub fn remote_consistent_lsn_visible(&self) -> Option<Lsn> {
     472       755304 :         match &mut *self.upload_queue.lock().unwrap() {
     473            0 :             UploadQueue::Uninitialized => None,
     474       755191 :             UploadQueue::Initialized(q) => Some(q.get_last_remote_consistent_lsn_visible()),
     475          113 :             UploadQueue::Stopped(q) => Some(
     476          113 :                 q.upload_queue_for_deletion
     477          113 :                     .get_last_remote_consistent_lsn_visible(),
     478          113 :             ),
     479              :         }
     480       755304 :     }
     481              : 
     482         7574 :     fn update_remote_physical_size_gauge(&self, current_remote_index_part: Option<&IndexPart>) {
     483         7574 :         let size: u64 = if let Some(current_remote_index_part) = current_remote_index_part {
     484         6425 :             current_remote_index_part
     485         6425 :                 .layer_metadata
     486         6425 :                 .values()
     487         6425 :                 // If we don't have the file size for the layer, don't account for it in the metric.
     488       644240 :                 .map(|ilmd| ilmd.file_size)
     489         6425 :                 .sum()
     490              :         } else {
     491         1149 :             0
     492              :         };
     493         7574 :         self.metrics.remote_physical_size_set(size);
     494         7574 :     }
     495              : 
     496           17 :     pub fn get_remote_physical_size(&self) -> u64 {
     497           17 :         self.metrics.remote_physical_size_get()
     498           17 :     }
     499              : 
     500              :     //
     501              :     // Download operations.
     502              :     //
     503              :     // These don't use the per-timeline queue. They do use the global semaphore in
     504              :     // S3Bucket, to limit the total number of concurrent operations, though.
     505              :     //
     506              : 
     507              :     /// Download index file
     508          465 :     pub async fn download_index_file(
     509          465 :         &self,
     510          465 :         cancel: &CancellationToken,
     511          465 :     ) -> Result<MaybeDeletedIndexPart, DownloadError> {
     512          465 :         let _unfinished_gauge_guard = self.metrics.call_begin(
     513          465 :             &RemoteOpFileKind::Index,
     514          465 :             &RemoteOpKind::Download,
     515          465 :             crate::metrics::RemoteTimelineClientMetricsCallTrackSize::DontTrackSize {
     516          465 :                 reason: "no need for a downloads gauge",
     517          465 :             },
     518          465 :         );
     519              : 
     520          465 :         let index_part = download::download_index_part(
     521          465 :             &self.storage_impl,
     522          465 :             &self.tenant_shard_id,
     523          465 :             &self.timeline_id,
     524          465 :             self.generation,
     525          465 :             cancel,
     526          465 :         )
     527          465 :         .measure_remote_op(
     528          465 :             RemoteOpFileKind::Index,
     529          465 :             RemoteOpKind::Download,
     530          465 :             Arc::clone(&self.metrics),
     531          465 :         )
     532         2983 :         .await?;
     533              : 
     534          462 :         if index_part.deleted_at.is_some() {
     535           12 :             Ok(MaybeDeletedIndexPart::Deleted(index_part))
     536              :         } else {
     537          450 :             Ok(MaybeDeletedIndexPart::IndexPart(index_part))
     538              :         }
     539          465 :     }
     540              : 
     541              :     /// Download a (layer) file from `path`, into local filesystem.
     542              :     ///
     543              :     /// 'layer_metadata' is the metadata from the remote index file.
     544              :     ///
     545              :     /// On success, returns the size of the downloaded file.
     546         9469 :     pub async fn download_layer_file(
     547         9469 :         &self,
     548         9469 :         layer_file_name: &LayerFileName,
     549         9469 :         layer_metadata: &LayerFileMetadata,
     550         9469 :         cancel: &CancellationToken,
     551         9469 :     ) -> anyhow::Result<u64> {
     552         9457 :         let downloaded_size = {
     553         9469 :             let _unfinished_gauge_guard = self.metrics.call_begin(
     554         9469 :                 &RemoteOpFileKind::Layer,
     555         9469 :                 &RemoteOpKind::Download,
     556         9469 :                 crate::metrics::RemoteTimelineClientMetricsCallTrackSize::DontTrackSize {
     557         9469 :                     reason: "no need for a downloads gauge",
     558         9469 :                 },
     559         9469 :             );
     560         9469 :             download::download_layer_file(
     561         9469 :                 self.conf,
     562         9469 :                 &self.storage_impl,
     563         9469 :                 self.tenant_shard_id,
     564         9469 :                 self.timeline_id,
     565         9469 :                 layer_file_name,
     566         9469 :                 layer_metadata,
     567         9469 :                 cancel,
     568         9469 :             )
     569         9469 :             .measure_remote_op(
     570         9469 :                 RemoteOpFileKind::Layer,
     571         9469 :                 RemoteOpKind::Download,
     572         9469 :                 Arc::clone(&self.metrics),
     573         9469 :             )
     574       438981 :             .await?
     575              :         };
     576              : 
     577         9457 :         REMOTE_ONDEMAND_DOWNLOADED_LAYERS.inc();
     578         9457 :         REMOTE_ONDEMAND_DOWNLOADED_BYTES.inc_by(downloaded_size);
     579         9457 : 
     580         9457 :         Ok(downloaded_size)
     581         9467 :     }
     582              : 
     583              :     //
     584              :     // Upload operations.
     585              :     //
     586              : 
     587              :     ///
     588              :     /// Launch an index-file upload operation in the background, with
     589              :     /// updated metadata.
     590              :     ///
     591              :     /// The upload will be added to the queue immediately, but it
     592              :     /// won't be performed until all previously scheduled layer file
     593              :     /// upload operations have completed successfully.  This is to
     594              :     /// ensure that when the index file claims that layers X, Y and Z
     595              :     /// exist in remote storage, they really do. To wait for the upload
     596              :     /// to complete, use `wait_completion`.
     597              :     ///
     598              :     /// If there were any changes to the list of files, i.e. if any
     599              :     /// layer file uploads were scheduled, since the last index file
     600              :     /// upload, those will be included too.
     601         5663 :     pub fn schedule_index_upload_for_metadata_update(
     602         5663 :         self: &Arc<Self>,
     603         5663 :         metadata: &TimelineMetadata,
     604         5663 :     ) -> anyhow::Result<()> {
     605         5663 :         let mut guard = self.upload_queue.lock().unwrap();
     606         5663 :         let upload_queue = guard.initialized_mut()?;
     607              : 
     608              :         // As documented in the struct definition, it's ok for latest_metadata to be
     609              :         // ahead of what's _actually_ on the remote during index upload.
     610         5663 :         upload_queue.latest_metadata = metadata.clone();
     611         5663 : 
     612         5663 :         self.schedule_index_upload(upload_queue, upload_queue.latest_metadata.clone());
     613         5663 : 
     614         5663 :         Ok(())
     615         5663 :     }
     616              : 
     617              :     ///
     618              :     /// Launch an index-file upload operation in the background, if necessary.
     619              :     ///
     620              :     /// Use this function to schedule the update of the index file after
     621              :     /// scheduling file uploads or deletions. If no file uploads or deletions
     622              :     /// have been scheduled since the last index file upload, this does
     623              :     /// nothing.
     624              :     ///
     625              :     /// Like schedule_index_upload_for_metadata_update(), this merely adds
     626              :     /// the upload to the upload queue and returns quickly.
     627         2055 :     pub fn schedule_index_upload_for_file_changes(self: &Arc<Self>) -> anyhow::Result<()> {
     628         2055 :         let mut guard = self.upload_queue.lock().unwrap();
     629         2055 :         let upload_queue = guard.initialized_mut()?;
     630              : 
     631         2055 :         if upload_queue.latest_files_changes_since_metadata_upload_scheduled > 0 {
     632           97 :             self.schedule_index_upload(upload_queue, upload_queue.latest_metadata.clone());
     633         1958 :         }
     634              : 
     635         2055 :         Ok(())
     636         2055 :     }
     637              : 
     638              :     /// Launch an index-file upload operation in the background (internal function)
     639         6079 :     fn schedule_index_upload(
     640         6079 :         self: &Arc<Self>,
     641         6079 :         upload_queue: &mut UploadQueueInitialized,
     642         6079 :         metadata: TimelineMetadata,
     643         6079 :     ) {
     644         6079 :         info!(
     645         6079 :             "scheduling metadata upload with {} files ({} changed)",
     646         6079 :             upload_queue.latest_files.len(),
     647         6079 :             upload_queue.latest_files_changes_since_metadata_upload_scheduled,
     648         6079 :         );
     649              : 
     650         6079 :         let disk_consistent_lsn = upload_queue.latest_metadata.disk_consistent_lsn();
     651         6079 : 
     652         6079 :         let index_part = IndexPart::new(
     653         6079 :             upload_queue.latest_files.clone(),
     654         6079 :             disk_consistent_lsn,
     655         6079 :             metadata,
     656         6079 :         );
     657         6079 :         let op = UploadOp::UploadMetadata(index_part, disk_consistent_lsn);
     658         6079 :         self.calls_unfinished_metric_begin(&op);
     659         6079 :         upload_queue.queued_operations.push_back(op);
     660         6079 :         upload_queue.latest_files_changes_since_metadata_upload_scheduled = 0;
     661         6079 : 
     662         6079 :         // Launch the task immediately, if possible
     663         6079 :         self.launch_queued_tasks(upload_queue);
     664         6079 :     }
     665              : 
     666              :     ///
     667              :     /// Launch an upload operation in the background.
     668              :     ///
     669        11580 :     pub(crate) fn schedule_layer_file_upload(
     670        11580 :         self: &Arc<Self>,
     671        11580 :         layer: ResidentLayer,
     672        11580 :     ) -> anyhow::Result<()> {
     673        11580 :         let mut guard = self.upload_queue.lock().unwrap();
     674        11580 :         let upload_queue = guard.initialized_mut()?;
     675              : 
     676        11580 :         self.schedule_layer_file_upload0(upload_queue, layer);
     677        11580 :         self.launch_queued_tasks(upload_queue);
     678        11580 :         Ok(())
     679        11580 :     }
     680              : 
     681        22334 :     fn schedule_layer_file_upload0(
     682        22334 :         self: &Arc<Self>,
     683        22334 :         upload_queue: &mut UploadQueueInitialized,
     684        22334 :         layer: ResidentLayer,
     685        22334 :     ) {
     686        22334 :         let metadata = layer.metadata();
     687        22334 : 
     688        22334 :         upload_queue
     689        22334 :             .latest_files
     690        22334 :             .insert(layer.layer_desc().filename(), metadata.clone());
     691        22334 :         upload_queue.latest_files_changes_since_metadata_upload_scheduled += 1;
     692        22334 : 
     693        22334 :         info!(
     694        22334 :             "scheduled layer file upload {layer} gen={:?} shard={:?}",
     695        22334 :             metadata.generation, metadata.shard
     696        22334 :         );
     697        22334 :         let op = UploadOp::UploadLayer(layer, metadata);
     698        22334 :         self.calls_unfinished_metric_begin(&op);
     699        22334 :         upload_queue.queued_operations.push_back(op);
     700        22334 :     }
     701              : 
     702              :     /// Launch a delete operation in the background.
     703              :     ///
     704              :     /// The operation does not modify local filesystem state.
     705              :     ///
     706              :     /// Note: This schedules an index file upload before the deletions.  The
     707              :     /// deletion won't actually be performed, until all previously scheduled
     708              :     /// upload operations, and the index file upload, have completed
     709              :     /// successfully.
     710          433 :     pub fn schedule_layer_file_deletion(
     711          433 :         self: &Arc<Self>,
     712          433 :         names: &[LayerFileName],
     713          433 :     ) -> anyhow::Result<()> {
     714          433 :         let mut guard = self.upload_queue.lock().unwrap();
     715          433 :         let upload_queue = guard.initialized_mut()?;
     716              : 
     717          433 :         let with_metadata =
     718          433 :             self.schedule_unlinking_of_layers_from_index_part0(upload_queue, names.iter().cloned());
     719          433 : 
     720          433 :         self.schedule_deletion_of_unlinked0(upload_queue, with_metadata);
     721          433 : 
     722          433 :         // Launch the tasks immediately, if possible
     723          433 :         self.launch_queued_tasks(upload_queue);
     724          433 :         Ok(())
     725          433 :     }
     726              : 
     727              :     /// Unlinks the layer files from `index_part.json` but does not yet schedule deletion for the
     728              :     /// layer files, leaving them dangling.
     729              :     ///
     730              :     /// The files will be leaked in remote storage unless [`Self::schedule_deletion_of_unlinked`]
     731              :     /// is invoked on them.
     732           20 :     pub(crate) fn schedule_gc_update(self: &Arc<Self>, gc_layers: &[Layer]) -> anyhow::Result<()> {
     733           20 :         let mut guard = self.upload_queue.lock().unwrap();
     734           20 :         let upload_queue = guard.initialized_mut()?;
     735              : 
     736              :         // just forget the return value; after uploading the next index_part.json, we can consider
     737              :         // the layer files as "dangling". this is fine, at worst case we create work for the
     738              :         // scrubber.
     739              : 
     740         1080 :         let names = gc_layers.iter().map(|x| x.layer_desc().filename());
     741           20 : 
     742           20 :         self.schedule_unlinking_of_layers_from_index_part0(upload_queue, names);
     743           20 : 
     744           20 :         self.launch_queued_tasks(upload_queue);
     745           20 : 
     746           20 :         Ok(())
     747           20 :     }
     748              : 
     749              :     /// Update the remote index file, removing the to-be-deleted files from the index,
     750              :     /// allowing scheduling of actual deletions later.
     751          748 :     fn schedule_unlinking_of_layers_from_index_part0<I>(
     752          748 :         self: &Arc<Self>,
     753          748 :         upload_queue: &mut UploadQueueInitialized,
     754          748 :         names: I,
     755          748 :     ) -> Vec<(LayerFileName, LayerFileMetadata)>
     756          748 :     where
     757          748 :         I: IntoIterator<Item = LayerFileName>,
     758          748 :     {
     759          748 :         // Deleting layers doesn't affect the values stored in TimelineMetadata,
     760          748 :         // so we don't need update it. Just serialize it.
     761          748 :         let metadata = upload_queue.latest_metadata.clone();
     762          748 : 
     763          748 :         // Decorate our list of names with each name's metadata, dropping
     764          748 :         // names that are unexpectedly missing from our metadata.  This metadata
     765          748 :         // is later used when physically deleting layers, to construct key paths.
     766          748 :         let with_metadata: Vec<_> = names
     767          748 :             .into_iter()
     768         5161 :             .filter_map(|name| {
     769         5161 :                 let meta = upload_queue.latest_files.remove(&name);
     770              : 
     771         5161 :                 if let Some(meta) = meta {
     772         5161 :                     upload_queue.latest_files_changes_since_metadata_upload_scheduled += 1;
     773         5161 :                     Some((name, meta))
     774              :                 } else {
     775              :                     // This can only happen if we forgot to to schedule the file upload
     776              :                     // before scheduling the delete. Log it because it is a rare/strange
     777              :                     // situation, and in case something is misbehaving, we'd like to know which
     778              :                     // layers experienced this.
     779            0 :                     info!("Deleting layer {name} not found in latest_files list, never uploaded?");
     780            0 :                     None
     781              :                 }
     782         5161 :             })
     783          748 :             .collect();
     784              : 
     785              :         #[cfg(feature = "testing")]
     786         5909 :         for (name, metadata) in &with_metadata {
     787         5161 :             let gen = metadata.generation;
     788         5161 :             if let Some(unexpected) = upload_queue.dangling_files.insert(name.to_owned(), gen) {
     789            0 :                 if unexpected == gen {
     790            0 :                     tracing::error!("{name} was unlinked twice with same generation");
     791              :                 } else {
     792            0 :                     tracing::error!("{name} was unlinked twice with different generations {gen:?} and {unexpected:?}");
     793              :                 }
     794         5161 :             }
     795              :         }
     796              : 
     797              :         // after unlinking files from the upload_queue.latest_files we must always schedule an
     798              :         // index_part update, because that needs to be uploaded before we can actually delete the
     799              :         // files.
     800          748 :         if upload_queue.latest_files_changes_since_metadata_upload_scheduled > 0 {
     801          319 :             self.schedule_index_upload(upload_queue, metadata);
     802          429 :         }
     803              : 
     804          748 :         with_metadata
     805          748 :     }
     806              : 
     807              :     /// Schedules deletion for layer files which have previously been unlinked from the
     808              :     /// `index_part.json` with [`Self::schedule_gc_update`] or [`Self::schedule_compaction_update`].
     809         5157 :     pub(crate) fn schedule_deletion_of_unlinked(
     810         5157 :         self: &Arc<Self>,
     811         5157 :         layers: Vec<(LayerFileName, LayerFileMetadata)>,
     812         5157 :     ) -> anyhow::Result<()> {
     813         5157 :         let mut guard = self.upload_queue.lock().unwrap();
     814         5157 :         let upload_queue = guard.initialized_mut()?;
     815              : 
     816         5143 :         self.schedule_deletion_of_unlinked0(upload_queue, layers);
     817         5143 :         self.launch_queued_tasks(upload_queue);
     818         5143 :         Ok(())
     819         5157 :     }
     820              : 
     821         5576 :     fn schedule_deletion_of_unlinked0(
     822         5576 :         self: &Arc<Self>,
     823         5576 :         upload_queue: &mut UploadQueueInitialized,
     824         5576 :         mut with_metadata: Vec<(LayerFileName, LayerFileMetadata)>,
     825         5576 :     ) {
     826         5576 :         // Filter out any layers which were not created by this tenant shard.  These are
     827         5576 :         // layers that originate from some ancestor shard after a split, and may still
     828         5576 :         // be referenced by other shards. We are free to delete them locally and remove
     829         5576 :         // them from our index (and would have already done so when we reach this point
     830         5576 :         // in the code), but we may not delete them remotely.
     831         5576 :         with_metadata.retain(|(name, meta)| {
     832         5147 :             let retain = meta.shard.shard_number == self.tenant_shard_id.shard_number
     833         5147 :                 && meta.shard.shard_count == self.tenant_shard_id.shard_count;
     834         5147 :             if !retain {
     835            0 :                 tracing::debug!(
     836            0 :                     "Skipping deletion of ancestor-shard layer {name}, from shard {}",
     837            0 :                     meta.shard
     838            0 :                 );
     839         5147 :             }
     840         5147 :             retain
     841         5576 :         });
     842              : 
     843        10723 :         for (name, meta) in &with_metadata {
     844         5147 :             info!(
     845         5147 :                 "scheduling deletion of layer {}{} (shard {})",
     846         5147 :                 name,
     847         5147 :                 meta.generation.get_suffix(),
     848         5147 :                 meta.shard
     849         5147 :             );
     850              :         }
     851              : 
     852              :         #[cfg(feature = "testing")]
     853        10723 :         for (name, meta) in &with_metadata {
     854         5147 :             let gen = meta.generation;
     855         5147 :             match upload_queue.dangling_files.remove(name) {
     856         5147 :                 Some(same) if same == gen => { /* expected */ }
     857            0 :                 Some(other) => {
     858            0 :                     tracing::error!("{name} was unlinked with {other:?} but deleted with {gen:?}");
     859              :                 }
     860              :                 None => {
     861            0 :                     tracing::error!("{name} was unlinked but was not dangling");
     862              :                 }
     863              :             }
     864              :         }
     865              : 
     866              :         // schedule the actual deletions
     867         5576 :         let op = UploadOp::Delete(Delete {
     868         5576 :             layers: with_metadata,
     869         5576 :         });
     870         5576 :         self.calls_unfinished_metric_begin(&op);
     871         5576 :         upload_queue.queued_operations.push_back(op);
     872         5576 :     }
     873              : 
     874              :     /// Schedules a compaction update to the remote `index_part.json`.
     875              :     ///
     876              :     /// `compacted_from` represent the L0 names which have been `compacted_to` L1 layers.
     877          295 :     pub(crate) fn schedule_compaction_update(
     878          295 :         self: &Arc<Self>,
     879          295 :         compacted_from: &[Layer],
     880          295 :         compacted_to: &[ResidentLayer],
     881          295 :     ) -> anyhow::Result<()> {
     882          295 :         let mut guard = self.upload_queue.lock().unwrap();
     883          295 :         let upload_queue = guard.initialized_mut()?;
     884              : 
     885        11049 :         for layer in compacted_to {
     886        10754 :             self.schedule_layer_file_upload0(upload_queue, layer.clone());
     887        10754 :         }
     888              : 
     889         4077 :         let names = compacted_from.iter().map(|x| x.layer_desc().filename());
     890          295 : 
     891          295 :         self.schedule_unlinking_of_layers_from_index_part0(upload_queue, names);
     892          295 :         self.launch_queued_tasks(upload_queue);
     893          295 : 
     894          295 :         Ok(())
     895          295 :     }
     896              : 
     897              :     /// Wait for all previously scheduled uploads/deletions to complete
     898         1275 :     pub(crate) async fn wait_completion(self: &Arc<Self>) -> anyhow::Result<()> {
     899         1275 :         let mut receiver = {
     900         1275 :             let mut guard = self.upload_queue.lock().unwrap();
     901         1275 :             let upload_queue = guard.initialized_mut()?;
     902         1275 :             self.schedule_barrier0(upload_queue)
     903         1275 :         };
     904         1275 : 
     905         1275 :         if receiver.changed().await.is_err() {
     906            0 :             anyhow::bail!("wait_completion aborted because upload queue was stopped");
     907         1271 :         }
     908         1271 : 
     909         1271 :         Ok(())
     910         1271 :     }
     911              : 
     912          431 :     pub(crate) fn schedule_barrier(self: &Arc<Self>) -> anyhow::Result<()> {
     913          431 :         let mut guard = self.upload_queue.lock().unwrap();
     914          431 :         let upload_queue = guard.initialized_mut()?;
     915          431 :         self.schedule_barrier0(upload_queue);
     916          431 :         Ok(())
     917          431 :     }
     918              : 
     919         1706 :     fn schedule_barrier0(
     920         1706 :         self: &Arc<Self>,
     921         1706 :         upload_queue: &mut UploadQueueInitialized,
     922         1706 :     ) -> tokio::sync::watch::Receiver<()> {
     923         1706 :         let (sender, receiver) = tokio::sync::watch::channel(());
     924         1706 :         let barrier_op = UploadOp::Barrier(sender);
     925         1706 : 
     926         1706 :         upload_queue.queued_operations.push_back(barrier_op);
     927         1706 :         // Don't count this kind of operation!
     928         1706 : 
     929         1706 :         // Launch the task immediately, if possible
     930         1706 :         self.launch_queued_tasks(upload_queue);
     931         1706 : 
     932         1706 :         receiver
     933         1706 :     }
     934              : 
     935              :     /// Wait for all previously scheduled operations to complete, and then stop.
     936              :     ///
     937              :     /// Not cancellation safe
     938          222 :     pub(crate) async fn shutdown(self: &Arc<Self>) -> Result<(), StopError> {
     939          222 :         // On cancellation the queue is left in ackward state of refusing new operations but
     940          222 :         // proper stop is yet to be called. On cancel the original or some later task must call
     941          222 :         // `stop` or `shutdown`.
     942          222 :         let sg = scopeguard::guard((), |_| {
     943            0 :             tracing::error!("RemoteTimelineClient::shutdown was cancelled; this should not happen, do not make this into an allowed_error")
     944          222 :         });
     945              : 
     946          222 :         let fut = {
     947          222 :             let mut guard = self.upload_queue.lock().unwrap();
     948          222 :             let upload_queue = match &mut *guard {
     949            0 :                 UploadQueue::Stopped(_) => return Ok(()),
     950            0 :                 UploadQueue::Uninitialized => return Err(StopError::QueueUninitialized),
     951          222 :                 UploadQueue::Initialized(ref mut init) => init,
     952          222 :             };
     953          222 : 
     954          222 :             // if the queue is already stuck due to a shutdown operation which was cancelled, then
     955          222 :             // just don't add more of these as they would never complete.
     956          222 :             //
     957          222 :             // TODO: if launch_queued_tasks were to be refactored to accept a &mut UploadQueue
     958          222 :             // in every place we would not have to jump through this hoop, and this method could be
     959          222 :             // made cancellable.
     960          222 :             if !upload_queue.shutting_down {
     961          222 :                 upload_queue.shutting_down = true;
     962          222 :                 upload_queue.queued_operations.push_back(UploadOp::Shutdown);
     963          222 :                 // this operation is not counted similar to Barrier
     964          222 : 
     965          222 :                 self.launch_queued_tasks(upload_queue);
     966          222 :             }
     967              : 
     968          222 :             upload_queue.shutdown_ready.clone().acquire_owned()
     969              :         };
     970              : 
     971          222 :         let res = fut.await;
     972              : 
     973          222 :         scopeguard::ScopeGuard::into_inner(sg);
     974          222 : 
     975          222 :         match res {
     976            0 :             Ok(_permit) => unreachable!("shutdown_ready should not have been added permits"),
     977          222 :             Err(_closed) => {
     978          222 :                 // expected
     979          222 :             }
     980          222 :         }
     981          222 : 
     982          222 :         self.stop()
     983          222 :     }
     984              : 
     985              :     /// Set the deleted_at field in the remote index file.
     986              :     ///
     987              :     /// This fails if the upload queue has not been `stop()`ed.
     988              :     ///
     989              :     /// The caller is responsible for calling `stop()` AND for waiting
     990              :     /// for any ongoing upload tasks to finish after `stop()` has succeeded.
     991              :     /// Check method [`RemoteTimelineClient::stop`] for details.
     992          382 :     #[instrument(skip_all)]
     993              :     pub(crate) async fn persist_index_part_with_deleted_flag(
     994              :         self: &Arc<Self>,
     995              :     ) -> Result<(), PersistIndexPartWithDeletedFlagError> {
     996              :         let index_part_with_deleted_at = {
     997              :             let mut locked = self.upload_queue.lock().unwrap();
     998              : 
     999              :             // We must be in stopped state because otherwise
    1000              :             // we can have inprogress index part upload that can overwrite the file
    1001              :             // with missing is_deleted flag that we going to set below
    1002              :             let stopped = locked.stopped_mut()?;
    1003              : 
    1004              :             match stopped.deleted_at {
    1005              :                 SetDeletedFlagProgress::NotRunning => (), // proceed
    1006              :                 SetDeletedFlagProgress::InProgress(at) => {
    1007              :                     return Err(PersistIndexPartWithDeletedFlagError::AlreadyInProgress(at));
    1008              :                 }
    1009              :                 SetDeletedFlagProgress::Successful(at) => {
    1010              :                     return Err(PersistIndexPartWithDeletedFlagError::AlreadyDeleted(at));
    1011              :                 }
    1012              :             };
    1013              :             let deleted_at = Utc::now().naive_utc();
    1014              :             stopped.deleted_at = SetDeletedFlagProgress::InProgress(deleted_at);
    1015              : 
    1016              :             let mut index_part = IndexPart::try_from(&stopped.upload_queue_for_deletion)
    1017              :                 .context("IndexPart serialize")?;
    1018              :             index_part.deleted_at = Some(deleted_at);
    1019              :             index_part
    1020              :         };
    1021              : 
    1022            0 :         let undo_deleted_at = scopeguard::guard(Arc::clone(self), |self_clone| {
    1023            0 :             let mut locked = self_clone.upload_queue.lock().unwrap();
    1024            0 :             let stopped = locked
    1025            0 :                 .stopped_mut()
    1026            0 :                 .expect("there's no way out of Stopping, and we checked it's Stopping above");
    1027            0 :             stopped.deleted_at = SetDeletedFlagProgress::NotRunning;
    1028            0 :         });
    1029              : 
    1030          177 :         pausable_failpoint!("persist_deleted_index_part");
    1031              : 
    1032              :         backoff::retry(
    1033          231 :             || {
    1034          231 :                 upload::upload_index_part(
    1035          231 :                     &self.storage_impl,
    1036          231 :                     &self.tenant_shard_id,
    1037          231 :                     &self.timeline_id,
    1038          231 :                     self.generation,
    1039          231 :                     &index_part_with_deleted_at,
    1040          231 :                     &self.cancel,
    1041          231 :                 )
    1042          231 :             },
    1043           54 :             |_e| false,
    1044              :             1,
    1045              :             // have just a couple of attempts
    1046              :             // when executed as part of timeline deletion this happens in context of api call
    1047              :             // when executed as part of tenant deletion this happens in the background
    1048              :             2,
    1049              :             "persist_index_part_with_deleted_flag",
    1050              :             &self.cancel,
    1051              :         )
    1052              :         .await
    1053            0 :         .ok_or_else(|| anyhow::anyhow!("Cancelled"))
    1054          177 :         .and_then(|x| x)?;
    1055              : 
    1056              :         // all good, disarm the guard and mark as success
    1057              :         ScopeGuard::into_inner(undo_deleted_at);
    1058              :         {
    1059              :             let mut locked = self.upload_queue.lock().unwrap();
    1060              : 
    1061              :             let stopped = locked
    1062              :                 .stopped_mut()
    1063              :                 .expect("there's no way out of Stopping, and we checked it's Stopping above");
    1064              :             stopped.deleted_at = SetDeletedFlagProgress::Successful(
    1065              :                 index_part_with_deleted_at
    1066              :                     .deleted_at
    1067              :                     .expect("we set it above"),
    1068              :             );
    1069              :         }
    1070              : 
    1071              :         Ok(())
    1072              :     }
    1073              : 
    1074            2 :     pub(crate) async fn preserve_initdb_archive(
    1075            2 :         self: &Arc<Self>,
    1076            2 :         tenant_id: &TenantId,
    1077            2 :         timeline_id: &TimelineId,
    1078            2 :         cancel: &CancellationToken,
    1079            2 :     ) -> anyhow::Result<()> {
    1080            2 :         backoff::retry(
    1081            2 :             || async {
    1082            2 :                 upload::preserve_initdb_archive(&self.storage_impl, tenant_id, timeline_id, cancel)
    1083            2 :                     .await
    1084            4 :             },
    1085            2 :             |_e| false,
    1086            2 :             FAILED_DOWNLOAD_WARN_THRESHOLD,
    1087            2 :             FAILED_REMOTE_OP_RETRIES,
    1088            2 :             "preserve_initdb_tar_zst",
    1089            2 :             &cancel.clone(),
    1090            2 :         )
    1091            2 :         .await
    1092            2 :         .ok_or_else(|| anyhow::anyhow!("Cancellled"))
    1093            2 :         .and_then(|x| x)
    1094            2 :         .context("backing up initdb archive")?;
    1095            2 :         Ok(())
    1096            2 :     }
    1097              : 
    1098              :     /// Prerequisites: UploadQueue should be in stopped state and deleted_at should be successfuly set.
    1099              :     /// The function deletes layer files one by one, then lists the prefix to see if we leaked something
    1100              :     /// deletes leaked files if any and proceeds with deletion of index file at the end.
    1101          189 :     pub(crate) async fn delete_all(self: &Arc<Self>) -> anyhow::Result<()> {
    1102          189 :         debug_assert_current_span_has_tenant_and_timeline_id();
    1103              : 
    1104          189 :         let layers: Vec<RemotePath> = {
    1105          189 :             let mut locked = self.upload_queue.lock().unwrap();
    1106          189 :             let stopped = locked.stopped_mut()?;
    1107              : 
    1108          189 :             if !matches!(stopped.deleted_at, SetDeletedFlagProgress::Successful(_)) {
    1109            0 :                 anyhow::bail!("deleted_at is not set")
    1110          189 :             }
    1111              : 
    1112          189 :             debug_assert!(stopped.upload_queue_for_deletion.no_pending_work());
    1113              : 
    1114          189 :             stopped
    1115          189 :                 .upload_queue_for_deletion
    1116          189 :                 .latest_files
    1117          189 :                 .drain()
    1118         4623 :                 .map(|(file_name, meta)| {
    1119         4623 :                     remote_layer_path(
    1120         4623 :                         &self.tenant_shard_id.tenant_id,
    1121         4623 :                         &self.timeline_id,
    1122         4623 :                         meta.shard,
    1123         4623 :                         &file_name,
    1124         4623 :                         meta.generation,
    1125         4623 :                     )
    1126         4623 :                 })
    1127          189 :                 .collect()
    1128          189 :         };
    1129          189 : 
    1130          189 :         let layer_deletion_count = layers.len();
    1131          189 :         self.deletion_queue_client.push_immediate(layers).await?;
    1132              : 
    1133              :         // Delete the initdb.tar.zst, which is not always present, but deletion attempts of
    1134              :         // inexistant objects are not considered errors.
    1135          189 :         let initdb_path =
    1136          189 :             remote_initdb_archive_path(&self.tenant_shard_id.tenant_id, &self.timeline_id);
    1137          189 :         self.deletion_queue_client
    1138          189 :             .push_immediate(vec![initdb_path])
    1139            0 :             .await?;
    1140              : 
    1141              :         // Do not delete index part yet, it is needed for possible retry. If we remove it first
    1142              :         // and retry will arrive to different pageserver there wont be any traces of it on remote storage
    1143          189 :         let timeline_storage_path = remote_timeline_path(&self.tenant_shard_id, &self.timeline_id);
    1144          189 : 
    1145          189 :         // Execute all pending deletions, so that when we proceed to do a list_prefixes below, we aren't
    1146          189 :         // taking the burden of listing all the layers that we already know we should delete.
    1147          189 :         self.deletion_queue_client.flush_immediate().await?;
    1148              : 
    1149          189 :         let cancel = shutdown_token();
    1150              : 
    1151          189 :         let remaining = download_retry(
    1152          247 :             || async {
    1153          247 :                 self.storage_impl
    1154          247 :                     .list_files(Some(&timeline_storage_path), None)
    1155          793 :                     .await
    1156          494 :             },
    1157          189 :             "list remaining files",
    1158          189 :             &cancel,
    1159          189 :         )
    1160          793 :         .await
    1161          189 :         .context("list files remaining files")?;
    1162              : 
    1163              :         // We will delete the current index_part object last, since it acts as a deletion
    1164              :         // marker via its deleted_at attribute
    1165          189 :         let latest_index = remaining
    1166          189 :             .iter()
    1167         2074 :             .filter(|p| {
    1168         2074 :                 p.object_name()
    1169         2074 :                     .map(|n| n.starts_with(IndexPart::FILE_NAME))
    1170         2074 :                     .unwrap_or(false)
    1171         2074 :             })
    1172          224 :             .filter_map(|path| parse_remote_index_path(path.clone()).map(|gen| (path, gen)))
    1173          224 :             .max_by_key(|i| i.1)
    1174          189 :             .map(|i| i.0.clone())
    1175          189 :             .unwrap_or(
    1176          189 :                 // No generation-suffixed indices, assume we are dealing with
    1177          189 :                 // a legacy index.
    1178          189 :                 remote_index_path(&self.tenant_shard_id, &self.timeline_id, Generation::none()),
    1179          189 :             );
    1180          189 : 
    1181          189 :         let remaining_layers: Vec<RemotePath> = remaining
    1182          189 :             .into_iter()
    1183         2074 :             .filter(|p| {
    1184         2074 :                 if p == &latest_index {
    1185          184 :                     return false;
    1186         1890 :                 }
    1187         1890 :                 if p.object_name() == Some(INITDB_PRESERVED_PATH) {
    1188            2 :                     return false;
    1189         1888 :                 }
    1190         1888 :                 true
    1191         2074 :             })
    1192         1888 :             .inspect(|path| {
    1193         1888 :                 if let Some(name) = path.object_name() {
    1194         1888 :                     info!(%name, "deleting a file not referenced from index_part.json");
    1195              :                 } else {
    1196            0 :                     warn!(%path, "deleting a nameless or non-utf8 object not referenced from index_part.json");
    1197              :                 }
    1198         1888 :             })
    1199          189 :             .collect();
    1200          189 : 
    1201          189 :         let not_referenced_count = remaining_layers.len();
    1202          189 :         if !remaining_layers.is_empty() {
    1203          103 :             self.deletion_queue_client
    1204          103 :                 .push_immediate(remaining_layers)
    1205            0 :                 .await?;
    1206           86 :         }
    1207              : 
    1208          189 :         fail::fail_point!("timeline-delete-before-index-delete", |_| {
    1209            8 :             Err(anyhow::anyhow!(
    1210            8 :                 "failpoint: timeline-delete-before-index-delete"
    1211            8 :             ))?
    1212          189 :         });
    1213              : 
    1214            0 :         debug!("enqueuing index part deletion");
    1215          181 :         self.deletion_queue_client
    1216          181 :             .push_immediate([latest_index].to_vec())
    1217            0 :             .await?;
    1218              : 
    1219              :         // Timeline deletion is rare and we have probably emitted a reasonably number of objects: wait
    1220              :         // for a flush to a persistent deletion list so that we may be sure deletion will occur.
    1221          181 :         self.deletion_queue_client.flush_immediate().await?;
    1222              : 
    1223          181 :         fail::fail_point!("timeline-delete-after-index-delete", |_| {
    1224            2 :             Err(anyhow::anyhow!(
    1225            2 :                 "failpoint: timeline-delete-after-index-delete"
    1226            2 :             ))?
    1227          181 :         });
    1228              : 
    1229          179 :         info!(prefix=%timeline_storage_path, referenced=layer_deletion_count, not_referenced=%not_referenced_count, "done deleting in timeline prefix, including index_part.json");
    1230              : 
    1231          179 :         Ok(())
    1232          189 :     }
    1233              : 
    1234              :     ///
    1235              :     /// Pick next tasks from the queue, and start as many of them as possible without violating
    1236              :     /// the ordering constraints.
    1237              :     ///
    1238              :     /// The caller needs to already hold the `upload_queue` lock.
    1239        55456 :     fn launch_queued_tasks(self: &Arc<Self>, upload_queue: &mut UploadQueueInitialized) {
    1240        89250 :         while let Some(next_op) = upload_queue.queued_operations.front() {
    1241              :             // Can we run this task now?
    1242        64930 :             let can_run_now = match next_op {
    1243              :                 UploadOp::UploadLayer(_, _) => {
    1244              :                     // Can always be scheduled.
    1245        21785 :                     true
    1246              :                 }
    1247              :                 UploadOp::UploadMetadata(_, _) => {
    1248              :                     // These can only be performed after all the preceding operations
    1249              :                     // have finished.
    1250        34242 :                     upload_queue.inprogress_tasks.is_empty()
    1251              :                 }
    1252              :                 UploadOp::Delete(_) => {
    1253              :                     // Wait for preceding uploads to finish. Concurrent deletions are OK, though.
    1254         4688 :                     upload_queue.num_inprogress_deletions == upload_queue.inprogress_tasks.len()
    1255              :                 }
    1256              : 
    1257              :                 UploadOp::Barrier(_) | UploadOp::Shutdown => {
    1258         4215 :                     upload_queue.inprogress_tasks.is_empty()
    1259              :                 }
    1260              :             };
    1261              : 
    1262              :             // If we cannot launch this task, don't look any further.
    1263              :             //
    1264              :             // In some cases, we could let some non-frontmost tasks to "jump the queue" and launch
    1265              :             // them now, but we don't try to do that currently.  For example, if the frontmost task
    1266              :             // is an index-file upload that cannot proceed until preceding uploads have finished, we
    1267              :             // could still start layer uploads that were scheduled later.
    1268        64930 :             if !can_run_now {
    1269        30914 :                 break;
    1270        34016 :             }
    1271        34016 : 
    1272        34016 :             if let UploadOp::Shutdown = next_op {
    1273              :                 // leave the op in the queue but do not start more tasks; it will be dropped when
    1274              :                 // the stop is called.
    1275          222 :                 upload_queue.shutdown_ready.close();
    1276          222 :                 break;
    1277        33794 :             }
    1278        33794 : 
    1279        33794 :             // We can launch this task. Remove it from the queue first.
    1280        33794 :             let next_op = upload_queue.queued_operations.pop_front().unwrap();
    1281        33794 : 
    1282        33794 :             debug!("starting op: {}", next_op);
    1283              : 
    1284              :             // Update the counters
    1285        33794 :             match next_op {
    1286        21785 :                 UploadOp::UploadLayer(_, _) => {
    1287        21785 :                     upload_queue.num_inprogress_layer_uploads += 1;
    1288        21785 :                 }
    1289         5999 :                 UploadOp::UploadMetadata(_, _) => {
    1290         5999 :                     upload_queue.num_inprogress_metadata_uploads += 1;
    1291         5999 :                 }
    1292         4314 :                 UploadOp::Delete(_) => {
    1293         4314 :                     upload_queue.num_inprogress_deletions += 1;
    1294         4314 :                 }
    1295         1696 :                 UploadOp::Barrier(sender) => {
    1296         1696 :                     sender.send_replace(());
    1297         1696 :                     continue;
    1298              :                 }
    1299            0 :                 UploadOp::Shutdown => unreachable!("shutdown is intentionally never popped off"),
    1300              :             };
    1301              : 
    1302              :             // Assign unique ID to this task
    1303        32098 :             upload_queue.task_counter += 1;
    1304        32098 :             let upload_task_id = upload_queue.task_counter;
    1305        32098 : 
    1306        32098 :             // Add it to the in-progress map
    1307        32098 :             let task = Arc::new(UploadTask {
    1308        32098 :                 task_id: upload_task_id,
    1309        32098 :                 op: next_op,
    1310        32098 :                 retries: AtomicU32::new(0),
    1311        32098 :             });
    1312        32098 :             upload_queue
    1313        32098 :                 .inprogress_tasks
    1314        32098 :                 .insert(task.task_id, Arc::clone(&task));
    1315        32098 : 
    1316        32098 :             // Spawn task to perform the task
    1317        32098 :             let self_rc = Arc::clone(self);
    1318        32098 :             let tenant_shard_id = self.tenant_shard_id;
    1319        32098 :             let timeline_id = self.timeline_id;
    1320        32098 :             task_mgr::spawn(
    1321        32098 :                 &self.runtime,
    1322        32098 :                 TaskKind::RemoteUploadTask,
    1323        32098 :                 Some(self.tenant_shard_id),
    1324        32098 :                 Some(self.timeline_id),
    1325        32098 :                 "remote upload",
    1326              :                 false,
    1327        32088 :                 async move {
    1328      1051980 :                     self_rc.perform_upload_task(task).await;
    1329        32072 :                     Ok(())
    1330        32072 :                 }
    1331        32098 :                 .instrument(info_span!(parent: None, "remote_upload", tenant_id=%tenant_shard_id.tenant_id, shard_id=%tenant_shard_id.shard_slug(), %timeline_id, %upload_task_id)),
    1332              :             );
    1333              : 
    1334              :             // Loop back to process next task
    1335              :         }
    1336        55456 :     }
    1337              : 
    1338              :     ///
    1339              :     /// Perform an upload task.
    1340              :     ///
    1341              :     /// The task is in the `inprogress_tasks` list. This function will try to
    1342              :     /// execute it, retrying forever. On successful completion, the task is
    1343              :     /// removed it from the `inprogress_tasks` list, and any next task(s) in the
    1344              :     /// queue that were waiting by the completion are launched.
    1345              :     ///
    1346              :     /// The task can be shut down, however. That leads to stopping the whole
    1347              :     /// queue.
    1348              :     ///
    1349        32088 :     async fn perform_upload_task(self: &Arc<Self>, task: Arc<UploadTask>) {
    1350        32088 :         let cancel = shutdown_token();
    1351              :         // Loop to retry until it completes.
    1352        34627 :         loop {
    1353        34627 :             // If we're requested to shut down, close up shop and exit.
    1354        34627 :             //
    1355        34627 :             // Note: We only check for the shutdown requests between retries, so
    1356        34627 :             // if a shutdown request arrives while we're busy uploading, in the
    1357        34627 :             // upload::upload:*() call below, we will wait not exit until it has
    1358        34627 :             // finished. We probably could cancel the upload by simply dropping
    1359        34627 :             // the Future, but we're not 100% sure if the remote storage library
    1360        34627 :             // is cancellation safe, so we don't dare to do that. Hopefully, the
    1361        34627 :             // upload finishes or times out soon enough.
    1362        34627 :             if cancel.is_cancelled() {
    1363           49 :                 info!("upload task cancelled by shutdown request");
    1364           49 :                 match self.stop() {
    1365           49 :                     Ok(()) => {}
    1366              :                     Err(StopError::QueueUninitialized) => {
    1367            0 :                         unreachable!("we never launch an upload task if the queue is uninitialized, and once it is initialized, we never go back")
    1368              :                     }
    1369              :                 }
    1370           49 :                 return;
    1371        34578 :             }
    1372              : 
    1373        34578 :             let upload_result: anyhow::Result<()> = match &task.op {
    1374        23608 :                 UploadOp::UploadLayer(ref layer, ref layer_metadata) => {
    1375        23608 :                     let path = layer.local_path();
    1376        23608 :                     upload::upload_timeline_layer(
    1377        23608 :                         self.conf,
    1378        23608 :                         &self.storage_impl,
    1379        23608 :                         path,
    1380        23608 :                         layer_metadata,
    1381        23608 :                         self.generation,
    1382        23608 :                         &self.cancel,
    1383        23608 :                     )
    1384        23608 :                     .measure_remote_op(
    1385        23608 :                         RemoteOpFileKind::Layer,
    1386        23608 :                         RemoteOpKind::Upload,
    1387        23608 :                         Arc::clone(&self.metrics),
    1388        23608 :                     )
    1389      1025359 :                     .await
    1390              :                 }
    1391         6661 :                 UploadOp::UploadMetadata(ref index_part, _lsn) => {
    1392         6661 :                     let mention_having_future_layers = if cfg!(feature = "testing") {
    1393         6661 :                         index_part
    1394         6661 :                             .layer_metadata
    1395         6661 :                             .keys()
    1396       591911 :                             .any(|x| x.is_in_future(*_lsn))
    1397              :                     } else {
    1398            0 :                         false
    1399              :                     };
    1400              : 
    1401         6661 :                     let res = upload::upload_index_part(
    1402         6661 :                         &self.storage_impl,
    1403         6661 :                         &self.tenant_shard_id,
    1404         6661 :                         &self.timeline_id,
    1405         6661 :                         self.generation,
    1406         6661 :                         index_part,
    1407         6661 :                         &self.cancel,
    1408         6661 :                     )
    1409         6661 :                     .measure_remote_op(
    1410         6661 :                         RemoteOpFileKind::Index,
    1411         6661 :                         RemoteOpKind::Upload,
    1412         6661 :                         Arc::clone(&self.metrics),
    1413         6661 :                     )
    1414        22252 :                     .await;
    1415         6648 :                     if res.is_ok() {
    1416         5982 :                         self.update_remote_physical_size_gauge(Some(index_part));
    1417         5982 :                         if mention_having_future_layers {
    1418              :                             // find rationale near crate::tenant::timeline::init::cleanup_future_layer
    1419           22 :                             tracing::info!(disk_consistent_lsn=%_lsn, "uploaded an index_part.json with future layers -- this is ok! if shutdown now, expect future layer cleanup");
    1420         5960 :                         }
    1421          666 :                     }
    1422         6648 :                     res
    1423              :                 }
    1424         4309 :                 UploadOp::Delete(delete) => {
    1425         4309 :                     pausable_failpoint!("before-delete-layer-pausable");
    1426         4309 :                     self.deletion_queue_client
    1427         4309 :                         .push_layers(
    1428         4309 :                             self.tenant_shard_id,
    1429         4309 :                             self.timeline_id,
    1430         4309 :                             self.generation,
    1431         4309 :                             delete.layers.clone(),
    1432         4309 :                         )
    1433          150 :                         .await
    1434         4309 :                         .map_err(|e| anyhow::anyhow!(e))
    1435              :                 }
    1436            0 :                 unexpected @ UploadOp::Barrier(_) | unexpected @ UploadOp::Shutdown => {
    1437              :                     // unreachable. Barrier operations are handled synchronously in
    1438              :                     // launch_queued_tasks
    1439            0 :                     warn!("unexpected {unexpected:?} operation in perform_upload_task");
    1440            0 :                     break;
    1441              :                 }
    1442              :             };
    1443              : 
    1444        34563 :             match upload_result {
    1445              :                 Ok(()) => {
    1446        32023 :                     break;
    1447              :                 }
    1448         2540 :                 Err(e) => {
    1449         2540 :                     let retries = task.retries.fetch_add(1, Ordering::SeqCst);
    1450         2540 : 
    1451         2540 :                     // Uploads can fail due to rate limits (IAM, S3), spurious network problems,
    1452         2540 :                     // or other external reasons. Such issues are relatively regular, so log them
    1453         2540 :                     // at info level at first, and only WARN if the operation fails repeatedly.
    1454         2540 :                     //
    1455         2540 :                     // (See similar logic for downloads in `download::download_retry`)
    1456         2540 :                     if retries < FAILED_UPLOAD_WARN_THRESHOLD {
    1457         2539 :                         info!(
    1458         2539 :                             "failed to perform remote task {}, will retry (attempt {}): {:#}",
    1459         2539 :                             task.op, retries, e
    1460         2539 :                         );
    1461              :                     } else {
    1462            1 :                         warn!(
    1463            1 :                             "failed to perform remote task {}, will retry (attempt {}): {:?}",
    1464            1 :                             task.op, retries, e
    1465            1 :                         );
    1466              :                     }
    1467              : 
    1468              :                     // sleep until it's time to retry, or we're cancelled
    1469         2540 :                     exponential_backoff(
    1470         2540 :                         retries,
    1471         2540 :                         DEFAULT_BASE_BACKOFF_SECONDS,
    1472         2540 :                         DEFAULT_MAX_BACKOFF_SECONDS,
    1473         2540 :                         &cancel,
    1474         2540 :                     )
    1475            5 :                     .await;
    1476              :                 }
    1477              :             }
    1478              :         }
    1479              : 
    1480        32023 :         let retries = task.retries.load(Ordering::SeqCst);
    1481        32023 :         if retries > 0 {
    1482         2485 :             info!(
    1483         2485 :                 "remote task {} completed successfully after {} retries",
    1484         2485 :                 task.op, retries
    1485         2485 :             );
    1486              :         } else {
    1487            0 :             debug!("remote task {} completed successfully", task.op);
    1488              :         }
    1489              : 
    1490              :         // The task has completed successfully. Remove it from the in-progress list.
    1491        29978 :         let lsn_update = {
    1492        32023 :             let mut upload_queue_guard = self.upload_queue.lock().unwrap();
    1493        32023 :             let upload_queue = match upload_queue_guard.deref_mut() {
    1494            0 :                 UploadQueue::Uninitialized => panic!("callers are responsible for ensuring this is only called on an initialized queue"),
    1495         2045 :                 UploadQueue::Stopped(_stopped) => {
    1496         2045 :                     None
    1497              :                 },
    1498        29978 :                 UploadQueue::Initialized(qi) => { Some(qi) }
    1499              :             };
    1500              : 
    1501        32023 :             let upload_queue = match upload_queue {
    1502        29978 :                 Some(upload_queue) => upload_queue,
    1503              :                 None => {
    1504         2045 :                     info!("another concurrent task already stopped the queue");
    1505         2045 :                     return;
    1506              :                 }
    1507              :             };
    1508              : 
    1509        29978 :             upload_queue.inprogress_tasks.remove(&task.task_id);
    1510              : 
    1511        29978 :             let lsn_update = match task.op {
    1512              :                 UploadOp::UploadLayer(_, _) => {
    1513        19690 :                     upload_queue.num_inprogress_layer_uploads -= 1;
    1514        19690 :                     None
    1515              :                 }
    1516         5980 :                 UploadOp::UploadMetadata(_, lsn) => {
    1517         5980 :                     upload_queue.num_inprogress_metadata_uploads -= 1;
    1518         5980 :                     // XXX monotonicity check?
    1519         5980 : 
    1520         5980 :                     upload_queue.projected_remote_consistent_lsn = Some(lsn);
    1521         5980 :                     if self.generation.is_none() {
    1522              :                         // Legacy mode: skip validating generation
    1523           16 :                         upload_queue.visible_remote_consistent_lsn.store(lsn);
    1524           16 :                         None
    1525              :                     } else {
    1526         5964 :                         Some((lsn, upload_queue.visible_remote_consistent_lsn.clone()))
    1527              :                     }
    1528              :                 }
    1529              :                 UploadOp::Delete(_) => {
    1530         4308 :                     upload_queue.num_inprogress_deletions -= 1;
    1531         4308 :                     None
    1532              :                 }
    1533            0 :                 UploadOp::Barrier(..) | UploadOp::Shutdown => unreachable!(),
    1534              :             };
    1535              : 
    1536              :             // Launch any queued tasks that were unblocked by this one.
    1537        29978 :             self.launch_queued_tasks(upload_queue);
    1538        29978 :             lsn_update
    1539              :         };
    1540              : 
    1541        29978 :         if let Some((lsn, slot)) = lsn_update {
    1542              :             // Updates to the remote_consistent_lsn we advertise to pageservers
    1543              :             // are all routed through the DeletionQueue, to enforce important
    1544              :             // data safety guarantees (see docs/rfcs/025-generation-numbers.md)
    1545         5964 :             self.deletion_queue_client
    1546         5964 :                 .update_remote_consistent_lsn(
    1547         5964 :                     self.tenant_shard_id,
    1548         5964 :                     self.timeline_id,
    1549         5964 :                     self.generation,
    1550         5964 :                     lsn,
    1551         5964 :                     slot,
    1552         5964 :                 )
    1553            0 :                 .await;
    1554        24014 :         }
    1555              : 
    1556        29978 :         self.calls_unfinished_metric_end(&task.op);
    1557        32072 :     }
    1558              : 
    1559        66033 :     fn calls_unfinished_metric_impl(
    1560        66033 :         &self,
    1561        66033 :         op: &UploadOp,
    1562        66033 :     ) -> Option<(
    1563        66033 :         RemoteOpFileKind,
    1564        66033 :         RemoteOpKind,
    1565        66033 :         RemoteTimelineClientMetricsCallTrackSize,
    1566        66033 :     )> {
    1567              :         use RemoteTimelineClientMetricsCallTrackSize::DontTrackSize;
    1568        66033 :         let res = match op {
    1569        42573 :             UploadOp::UploadLayer(_, m) => (
    1570        42573 :                 RemoteOpFileKind::Layer,
    1571        42573 :                 RemoteOpKind::Upload,
    1572        42573 :                 RemoteTimelineClientMetricsCallTrackSize::Bytes(m.file_size()),
    1573        42573 :             ),
    1574        12133 :             UploadOp::UploadMetadata(_, _) => (
    1575        12133 :                 RemoteOpFileKind::Index,
    1576        12133 :                 RemoteOpKind::Upload,
    1577        12133 :                 DontTrackSize {
    1578        12133 :                     reason: "metadata uploads are tiny",
    1579        12133 :                 },
    1580        12133 :             ),
    1581        11103 :             UploadOp::Delete(_delete) => (
    1582        11103 :                 RemoteOpFileKind::Layer,
    1583        11103 :                 RemoteOpKind::Delete,
    1584        11103 :                 DontTrackSize {
    1585        11103 :                     reason: "should we track deletes? positive or negative sign?",
    1586        11103 :                 },
    1587        11103 :             ),
    1588              :             UploadOp::Barrier(..) | UploadOp::Shutdown => {
    1589              :                 // we do not account these
    1590          224 :                 return None;
    1591              :             }
    1592              :         };
    1593        65809 :         Some(res)
    1594        66033 :     }
    1595              : 
    1596        33989 :     fn calls_unfinished_metric_begin(&self, op: &UploadOp) {
    1597        33989 :         let (file_kind, op_kind, track_bytes) = match self.calls_unfinished_metric_impl(op) {
    1598        33989 :             Some(x) => x,
    1599            0 :             None => return,
    1600              :         };
    1601        33989 :         let guard = self.metrics.call_begin(&file_kind, &op_kind, track_bytes);
    1602        33989 :         guard.will_decrement_manually(); // in unfinished_ops_metric_end()
    1603        33989 :     }
    1604              : 
    1605        32044 :     fn calls_unfinished_metric_end(&self, op: &UploadOp) {
    1606        32044 :         let (file_kind, op_kind, track_bytes) = match self.calls_unfinished_metric_impl(op) {
    1607        31820 :             Some(x) => x,
    1608          224 :             None => return,
    1609              :         };
    1610        31820 :         self.metrics.call_end(&file_kind, &op_kind, track_bytes);
    1611        32044 :     }
    1612              : 
    1613              :     /// Close the upload queue for new operations and cancel queued operations.
    1614              :     ///
    1615              :     /// Use [`RemoteTimelineClient::shutdown`] for graceful stop.
    1616              :     ///
    1617              :     /// In-progress operations will still be running after this function returns.
    1618              :     /// Use `task_mgr::shutdown_tasks(None, Some(self.tenant_id), Some(timeline_id))`
    1619              :     /// to wait for them to complete, after calling this function.
    1620         1073 :     pub(crate) fn stop(&self) -> Result<(), StopError> {
    1621         1073 :         // Whichever *task* for this RemoteTimelineClient grabs the mutex first will transition the queue
    1622         1073 :         // into stopped state, thereby dropping all off the queued *ops* which haven't become *tasks* yet.
    1623         1073 :         // The other *tasks* will come here and observe an already shut down queue and hence simply wrap up their business.
    1624         1073 :         let mut guard = self.upload_queue.lock().unwrap();
    1625         1073 :         match &mut *guard {
    1626            0 :             UploadQueue::Uninitialized => Err(StopError::QueueUninitialized),
    1627              :             UploadQueue::Stopped(_) => {
    1628              :                 // nothing to do
    1629          470 :                 info!("another concurrent task already shut down the queue");
    1630          470 :                 Ok(())
    1631              :             }
    1632          603 :             UploadQueue::Initialized(initialized) => {
    1633          603 :                 info!("shutting down upload queue");
    1634              : 
    1635              :                 // Replace the queue with the Stopped state, taking ownership of the old
    1636              :                 // Initialized queue. We will do some checks on it, and then drop it.
    1637          603 :                 let qi = {
    1638              :                     // Here we preserve working version of the upload queue for possible use during deletions.
    1639              :                     // In-place replace of Initialized to Stopped can be done with the help of https://github.com/Sgeo/take_mut
    1640              :                     // but for this use case it doesnt really makes sense to bring unsafe code only for this usage point.
    1641              :                     // Deletion is not really perf sensitive so there shouldnt be any problems with cloning a fraction of it.
    1642          603 :                     let upload_queue_for_deletion = UploadQueueInitialized {
    1643          603 :                         task_counter: 0,
    1644          603 :                         latest_files: initialized.latest_files.clone(),
    1645          603 :                         latest_files_changes_since_metadata_upload_scheduled: 0,
    1646          603 :                         latest_metadata: initialized.latest_metadata.clone(),
    1647          603 :                         projected_remote_consistent_lsn: None,
    1648          603 :                         visible_remote_consistent_lsn: initialized
    1649          603 :                             .visible_remote_consistent_lsn
    1650          603 :                             .clone(),
    1651          603 :                         num_inprogress_layer_uploads: 0,
    1652          603 :                         num_inprogress_metadata_uploads: 0,
    1653          603 :                         num_inprogress_deletions: 0,
    1654          603 :                         inprogress_tasks: HashMap::default(),
    1655          603 :                         queued_operations: VecDeque::default(),
    1656          603 :                         #[cfg(feature = "testing")]
    1657          603 :                         dangling_files: HashMap::default(),
    1658          603 :                         shutting_down: false,
    1659          603 :                         shutdown_ready: Arc::new(tokio::sync::Semaphore::new(0)),
    1660          603 :                     };
    1661          603 : 
    1662          603 :                     let upload_queue = std::mem::replace(
    1663          603 :                         &mut *guard,
    1664          603 :                         UploadQueue::Stopped(UploadQueueStopped {
    1665          603 :                             upload_queue_for_deletion,
    1666          603 :                             deleted_at: SetDeletedFlagProgress::NotRunning,
    1667          603 :                         }),
    1668          603 :                     );
    1669          603 :                     if let UploadQueue::Initialized(qi) = upload_queue {
    1670          603 :                         qi
    1671              :                     } else {
    1672            0 :                         unreachable!("we checked in the match above that it is Initialized");
    1673              :                     }
    1674              :                 };
    1675              : 
    1676              :                 // consistency check
    1677          603 :                 assert_eq!(
    1678          603 :                     qi.num_inprogress_layer_uploads
    1679          603 :                         + qi.num_inprogress_metadata_uploads
    1680          603 :                         + qi.num_inprogress_deletions,
    1681          603 :                     qi.inprogress_tasks.len()
    1682          603 :                 );
    1683              : 
    1684              :                 // We don't need to do anything here for in-progress tasks. They will finish
    1685              :                 // on their own, decrement the unfinished-task counter themselves, and observe
    1686              :                 // that the queue is Stopped.
    1687          603 :                 drop(qi.inprogress_tasks);
    1688              : 
    1689              :                 // Tear down queued ops
    1690         2066 :                 for op in qi.queued_operations.into_iter() {
    1691         2066 :                     self.calls_unfinished_metric_end(&op);
    1692         2066 :                     // Dropping UploadOp::Barrier() here will make wait_completion() return with an Err()
    1693         2066 :                     // which is exactly what we want to happen.
    1694         2066 :                     drop(op);
    1695         2066 :                 }
    1696              : 
    1697              :                 // We're done.
    1698          603 :                 drop(guard);
    1699          603 :                 Ok(())
    1700              :             }
    1701              :         }
    1702         1073 :     }
    1703              : }
    1704              : 
    1705         4790 : pub fn remote_timelines_path(tenant_shard_id: &TenantShardId) -> RemotePath {
    1706         4790 :     let path = format!("tenants/{tenant_shard_id}/{TIMELINES_SEGMENT_NAME}");
    1707         4790 :     RemotePath::from_string(&path).expect("Failed to construct path")
    1708         4790 : }
    1709              : 
    1710            1 : fn remote_timelines_path_unsharded(tenant_id: &TenantId) -> RemotePath {
    1711            1 :     let path = format!("tenants/{tenant_id}/{TIMELINES_SEGMENT_NAME}");
    1712            1 :     RemotePath::from_string(&path).expect("Failed to construct path")
    1713            1 : }
    1714              : 
    1715         3918 : pub fn remote_timeline_path(
    1716         3918 :     tenant_shard_id: &TenantShardId,
    1717         3918 :     timeline_id: &TimelineId,
    1718         3918 : ) -> RemotePath {
    1719         3918 :     remote_timelines_path(tenant_shard_id).join(Utf8Path::new(&timeline_id.to_string()))
    1720         3918 : }
    1721              : 
    1722              : /// Note that the shard component of a remote layer path is _not_ always the same
    1723              : /// as in the TenantShardId of the caller: tenants may reference layers from a different
    1724              : /// ShardIndex.  Use the ShardIndex from the layer's metadata.
    1725        19089 : pub fn remote_layer_path(
    1726        19089 :     tenant_id: &TenantId,
    1727        19089 :     timeline_id: &TimelineId,
    1728        19089 :     shard: ShardIndex,
    1729        19089 :     layer_file_name: &LayerFileName,
    1730        19089 :     generation: Generation,
    1731        19089 : ) -> RemotePath {
    1732        19089 :     // Generation-aware key format
    1733        19089 :     let path = format!(
    1734        19089 :         "tenants/{tenant_id}{0}/{TIMELINES_SEGMENT_NAME}/{timeline_id}/{1}{2}",
    1735        19089 :         shard.get_suffix(),
    1736        19089 :         layer_file_name.file_name(),
    1737        19089 :         generation.get_suffix()
    1738        19089 :     );
    1739        19089 : 
    1740        19089 :     RemotePath::from_string(&path).expect("Failed to construct path")
    1741        19089 : }
    1742              : 
    1743          831 : pub fn remote_initdb_archive_path(tenant_id: &TenantId, timeline_id: &TimelineId) -> RemotePath {
    1744          831 :     RemotePath::from_string(&format!(
    1745          831 :         "tenants/{tenant_id}/{TIMELINES_SEGMENT_NAME}/{timeline_id}/{INITDB_PATH}"
    1746          831 :     ))
    1747          831 :     .expect("Failed to construct path")
    1748          831 : }
    1749              : 
    1750            6 : pub fn remote_initdb_preserved_archive_path(
    1751            6 :     tenant_id: &TenantId,
    1752            6 :     timeline_id: &TimelineId,
    1753            6 : ) -> RemotePath {
    1754            6 :     RemotePath::from_string(&format!(
    1755            6 :         "tenants/{tenant_id}/{TIMELINES_SEGMENT_NAME}/{timeline_id}/{INITDB_PRESERVED_PATH}"
    1756            6 :     ))
    1757            6 :     .expect("Failed to construct path")
    1758            6 : }
    1759              : 
    1760         8363 : pub fn remote_index_path(
    1761         8363 :     tenant_shard_id: &TenantShardId,
    1762         8363 :     timeline_id: &TimelineId,
    1763         8363 :     generation: Generation,
    1764         8363 : ) -> RemotePath {
    1765         8363 :     RemotePath::from_string(&format!(
    1766         8363 :         "tenants/{tenant_shard_id}/{TIMELINES_SEGMENT_NAME}/{timeline_id}/{0}{1}",
    1767         8363 :         IndexPart::FILE_NAME,
    1768         8363 :         generation.get_suffix()
    1769         8363 :     ))
    1770         8363 :     .expect("Failed to construct path")
    1771         8363 : }
    1772              : 
    1773           20 : pub(crate) fn remote_heatmap_path(tenant_shard_id: &TenantShardId) -> RemotePath {
    1774           20 :     RemotePath::from_string(&format!(
    1775           20 :         "tenants/{tenant_shard_id}/{TENANT_HEATMAP_BASENAME}"
    1776           20 :     ))
    1777           20 :     .expect("Failed to construct path")
    1778           20 : }
    1779              : 
    1780              : /// Given the key of an index, parse out the generation part of the name
    1781          634 : pub fn parse_remote_index_path(path: RemotePath) -> Option<Generation> {
    1782          634 :     let file_name = match path.get_path().file_name() {
    1783          634 :         Some(f) => f,
    1784              :         None => {
    1785              :             // Unexpected: we should be seeing index_part.json paths only
    1786            0 :             tracing::warn!("Malformed index key {}", path);
    1787            0 :             return None;
    1788              :         }
    1789              :     };
    1790              : 
    1791          634 :     match file_name.split_once('-') {
    1792          627 :         Some((_, gen_suffix)) => Generation::parse_suffix(gen_suffix),
    1793            7 :         None => None,
    1794              :     }
    1795          634 : }
    1796              : 
    1797              : /// Files on the remote storage are stored with paths, relative to the workdir.
    1798              : /// That path includes in itself both tenant and timeline ids, allowing to have a unique remote storage path.
    1799              : ///
    1800              : /// Errors if the path provided does not start from pageserver's workdir.
    1801        23603 : pub fn remote_path(
    1802        23603 :     conf: &PageServerConf,
    1803        23603 :     local_path: &Utf8Path,
    1804        23603 :     generation: Generation,
    1805        23603 : ) -> anyhow::Result<RemotePath> {
    1806        23603 :     let stripped = local_path
    1807        23603 :         .strip_prefix(&conf.workdir)
    1808        23603 :         .context("Failed to strip workdir prefix")?;
    1809              : 
    1810        23603 :     let suffixed = format!("{0}{1}", stripped, generation.get_suffix());
    1811        23603 : 
    1812        23603 :     RemotePath::new(Utf8Path::new(&suffixed)).with_context(|| {
    1813            0 :         format!(
    1814            0 :             "to resolve remote part of path {:?} for base {:?}",
    1815            0 :             local_path, conf.workdir
    1816            0 :         )
    1817        23603 :     })
    1818        23603 : }
    1819              : 
    1820              : #[cfg(test)]
    1821              : mod tests {
    1822              :     use super::*;
    1823              :     use crate::{
    1824              :         context::RequestContext,
    1825              :         tenant::{
    1826              :             harness::{TenantHarness, TIMELINE_ID},
    1827              :             storage_layer::Layer,
    1828              :             Generation, Tenant, Timeline,
    1829              :         },
    1830              :         DEFAULT_PG_VERSION,
    1831              :     };
    1832              : 
    1833              :     use std::collections::HashSet;
    1834              :     use utils::lsn::Lsn;
    1835              : 
    1836            8 :     pub(super) fn dummy_contents(name: &str) -> Vec<u8> {
    1837            8 :         format!("contents for {name}").into()
    1838            8 :     }
    1839              : 
    1840            2 :     pub(super) fn dummy_metadata(disk_consistent_lsn: Lsn) -> TimelineMetadata {
    1841            2 :         let metadata = TimelineMetadata::new(
    1842            2 :             disk_consistent_lsn,
    1843            2 :             None,
    1844            2 :             None,
    1845            2 :             Lsn(0),
    1846            2 :             Lsn(0),
    1847            2 :             Lsn(0),
    1848            2 :             // Any version will do
    1849            2 :             // but it should be consistent with the one in the tests
    1850            2 :             crate::DEFAULT_PG_VERSION,
    1851            2 :         );
    1852            2 : 
    1853            2 :         // go through serialize + deserialize to fix the header, including checksum
    1854            2 :         TimelineMetadata::from_bytes(&metadata.to_bytes().unwrap()).unwrap()
    1855            2 :     }
    1856              : 
    1857            2 :     fn assert_file_list(a: &HashSet<LayerFileName>, b: &[&str]) {
    1858            6 :         let mut avec: Vec<String> = a.iter().map(|x| x.file_name()).collect();
    1859            2 :         avec.sort();
    1860            2 : 
    1861            2 :         let mut bvec = b.to_vec();
    1862            2 :         bvec.sort_unstable();
    1863            2 : 
    1864            2 :         assert_eq!(avec, bvec);
    1865            2 :     }
    1866              : 
    1867            4 :     fn assert_remote_files(expected: &[&str], remote_path: &Utf8Path, generation: Generation) {
    1868            4 :         let mut expected: Vec<String> = expected
    1869            4 :             .iter()
    1870           16 :             .map(|x| format!("{}{}", x, generation.get_suffix()))
    1871            4 :             .collect();
    1872            4 :         expected.sort();
    1873            4 : 
    1874            4 :         let mut found: Vec<String> = Vec::new();
    1875           16 :         for entry in std::fs::read_dir(remote_path).unwrap().flatten() {
    1876           16 :             let entry_name = entry.file_name();
    1877           16 :             let fname = entry_name.to_str().unwrap();
    1878           16 :             found.push(String::from(fname));
    1879           16 :         }
    1880            4 :         found.sort();
    1881            4 : 
    1882            4 :         assert_eq!(found, expected);
    1883            4 :     }
    1884              : 
    1885              :     struct TestSetup {
    1886              :         harness: TenantHarness,
    1887              :         tenant: Arc<Tenant>,
    1888              :         timeline: Arc<Timeline>,
    1889              :         tenant_ctx: RequestContext,
    1890              :     }
    1891              : 
    1892              :     impl TestSetup {
    1893            8 :         async fn new(test_name: &str) -> anyhow::Result<Self> {
    1894            8 :             let test_name = Box::leak(Box::new(format!("remote_timeline_client__{test_name}")));
    1895            8 :             let harness = TenantHarness::create(test_name)?;
    1896            8 :             let (tenant, ctx) = harness.load().await;
    1897              : 
    1898            8 :             let timeline = tenant
    1899            8 :                 .create_test_timeline(TIMELINE_ID, Lsn(8), DEFAULT_PG_VERSION, &ctx)
    1900           26 :                 .await?;
    1901              : 
    1902            8 :             Ok(Self {
    1903            8 :                 harness,
    1904            8 :                 tenant,
    1905            8 :                 timeline,
    1906            8 :                 tenant_ctx: ctx,
    1907            8 :             })
    1908            8 :         }
    1909              : 
    1910              :         /// Construct a RemoteTimelineClient in an arbitrary generation
    1911           10 :         fn build_client(&self, generation: Generation) -> Arc<RemoteTimelineClient> {
    1912           10 :             Arc::new(RemoteTimelineClient {
    1913           10 :                 conf: self.harness.conf,
    1914           10 :                 runtime: tokio::runtime::Handle::current(),
    1915           10 :                 tenant_shard_id: self.harness.tenant_shard_id,
    1916           10 :                 timeline_id: TIMELINE_ID,
    1917           10 :                 generation,
    1918           10 :                 storage_impl: self.harness.remote_storage.clone(),
    1919           10 :                 deletion_queue_client: self.harness.deletion_queue.new_client(),
    1920           10 :                 upload_queue: Mutex::new(UploadQueue::Uninitialized),
    1921           10 :                 metrics: Arc::new(RemoteTimelineClientMetrics::new(
    1922           10 :                     &self.harness.tenant_shard_id,
    1923           10 :                     &TIMELINE_ID,
    1924           10 :                 )),
    1925           10 :                 cancel: CancellationToken::new(),
    1926           10 :             })
    1927           10 :         }
    1928              : 
    1929              :         /// A tracing::Span that satisfies remote_timeline_client methods that assert tenant_id
    1930              :         /// and timeline_id are present.
    1931            6 :         fn span(&self) -> tracing::Span {
    1932            6 :             tracing::info_span!(
    1933              :                 "test",
    1934              :                 tenant_id = %self.harness.tenant_shard_id.tenant_id,
    1935            6 :                 shard_id = %self.harness.tenant_shard_id.shard_slug(),
    1936              :                 timeline_id = %TIMELINE_ID
    1937              :             )
    1938            6 :         }
    1939              :     }
    1940              : 
    1941              :     // Test scheduling
    1942            2 :     #[tokio::test]
    1943            2 :     async fn upload_scheduling() {
    1944            2 :         // Test outline:
    1945            2 :         //
    1946            2 :         // Schedule upload of a bunch of layers. Check that they are started immediately, not queued
    1947            2 :         // Schedule upload of index. Check that it is queued
    1948            2 :         // let the layer file uploads finish. Check that the index-upload is now started
    1949            2 :         // let the index-upload finish.
    1950            2 :         //
    1951            2 :         // Download back the index.json. Check that the list of files is correct
    1952            2 :         //
    1953            2 :         // Schedule upload. Schedule deletion. Check that the deletion is queued
    1954            2 :         // let upload finish. Check that deletion is now started
    1955            2 :         // Schedule another deletion. Check that it's launched immediately.
    1956            2 :         // Schedule index upload. Check that it's queued
    1957            2 : 
    1958           10 :         let test_setup = TestSetup::new("upload_scheduling").await.unwrap();
    1959            2 :         let span = test_setup.span();
    1960            2 :         let _guard = span.enter();
    1961            2 : 
    1962            2 :         let TestSetup {
    1963            2 :             harness,
    1964            2 :             tenant: _tenant,
    1965            2 :             timeline,
    1966            2 :             tenant_ctx: _tenant_ctx,
    1967            2 :         } = test_setup;
    1968            2 : 
    1969            2 :         let client = timeline.remote_client.as_ref().unwrap();
    1970            2 : 
    1971            2 :         // Download back the index.json, and check that the list of files is correct
    1972            2 :         let initial_index_part = match client
    1973            2 :             .download_index_file(&CancellationToken::new())
    1974            6 :             .await
    1975            2 :             .unwrap()
    1976            2 :         {
    1977            2 :             MaybeDeletedIndexPart::IndexPart(index_part) => index_part,
    1978            2 :             MaybeDeletedIndexPart::Deleted(_) => panic!("unexpectedly got deleted index part"),
    1979            2 :         };
    1980            2 :         let initial_layers = initial_index_part
    1981            2 :             .layer_metadata
    1982            2 :             .keys()
    1983            2 :             .map(|f| f.to_owned())
    1984            2 :             .collect::<HashSet<LayerFileName>>();
    1985            2 :         let initial_layer = {
    1986            2 :             assert!(initial_layers.len() == 1);
    1987            2 :             initial_layers.into_iter().next().unwrap()
    1988            2 :         };
    1989            2 : 
    1990            2 :         let timeline_path = harness.timeline_path(&TIMELINE_ID);
    1991            2 : 
    1992            2 :         println!("workdir: {}", harness.conf.workdir);
    1993            2 : 
    1994            2 :         let remote_timeline_dir = harness
    1995            2 :             .remote_fs_dir
    1996            2 :             .join(timeline_path.strip_prefix(&harness.conf.workdir).unwrap());
    1997            2 :         println!("remote_timeline_dir: {remote_timeline_dir}");
    1998            2 : 
    1999            2 :         let generation = harness.generation;
    2000            2 :         let shard = harness.shard;
    2001            2 : 
    2002            2 :         // Create a couple of dummy files,  schedule upload for them
    2003            2 : 
    2004            2 :         let layers = [
    2005            2 :             ("000000000000000000000000000000000000-FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF__00000000016B59D8-00000000016B5A51".parse().unwrap(), dummy_contents("foo")),
    2006            2 :             ("000000000000000000000000000000000000-FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF__00000000016B59D9-00000000016B5A52".parse().unwrap(), dummy_contents("bar")),
    2007            2 :             ("000000000000000000000000000000000000-FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF__00000000016B59DA-00000000016B5A53".parse().unwrap(), dummy_contents("baz"))
    2008            2 :         ]
    2009            2 :         .into_iter()
    2010            6 :         .map(|(name, contents): (LayerFileName, Vec<u8>)| {
    2011            6 :             std::fs::write(timeline_path.join(name.file_name()), &contents).unwrap();
    2012            6 : 
    2013            6 :             Layer::for_resident(
    2014            6 :                 harness.conf,
    2015            6 :                 &timeline,
    2016            6 :                 name,
    2017            6 :                 LayerFileMetadata::new(contents.len() as u64, generation, shard),
    2018            6 :             )
    2019            6 :         }).collect::<Vec<_>>();
    2020            2 : 
    2021            2 :         client
    2022            2 :             .schedule_layer_file_upload(layers[0].clone())
    2023            2 :             .unwrap();
    2024            2 :         client
    2025            2 :             .schedule_layer_file_upload(layers[1].clone())
    2026            2 :             .unwrap();
    2027            2 : 
    2028            2 :         // Check that they are started immediately, not queued
    2029            2 :         //
    2030            2 :         // this works because we running within block_on, so any futures are now queued up until
    2031            2 :         // our next await point.
    2032            2 :         {
    2033            2 :             let mut guard = client.upload_queue.lock().unwrap();
    2034            2 :             let upload_queue = guard.initialized_mut().unwrap();
    2035            2 :             assert!(upload_queue.queued_operations.is_empty());
    2036            2 :             assert!(upload_queue.inprogress_tasks.len() == 2);
    2037            2 :             assert!(upload_queue.num_inprogress_layer_uploads == 2);
    2038            2 : 
    2039            2 :             // also check that `latest_file_changes` was updated
    2040            2 :             assert!(upload_queue.latest_files_changes_since_metadata_upload_scheduled == 2);
    2041            2 :         }
    2042            2 : 
    2043            2 :         // Schedule upload of index. Check that it is queued
    2044            2 :         let metadata = dummy_metadata(Lsn(0x20));
    2045            2 :         client
    2046            2 :             .schedule_index_upload_for_metadata_update(&metadata)
    2047            2 :             .unwrap();
    2048            2 :         {
    2049            2 :             let mut guard = client.upload_queue.lock().unwrap();
    2050            2 :             let upload_queue = guard.initialized_mut().unwrap();
    2051            2 :             assert!(upload_queue.queued_operations.len() == 1);
    2052            2 :             assert!(upload_queue.latest_files_changes_since_metadata_upload_scheduled == 0);
    2053            2 :         }
    2054            2 : 
    2055            2 :         // Wait for the uploads to finish
    2056            2 :         client.wait_completion().await.unwrap();
    2057            2 :         {
    2058            2 :             let mut guard = client.upload_queue.lock().unwrap();
    2059            2 :             let upload_queue = guard.initialized_mut().unwrap();
    2060            2 : 
    2061            2 :             assert!(upload_queue.queued_operations.is_empty());
    2062            2 :             assert!(upload_queue.inprogress_tasks.is_empty());
    2063            2 :         }
    2064            2 : 
    2065            2 :         // Download back the index.json, and check that the list of files is correct
    2066            2 :         let index_part = match client
    2067            2 :             .download_index_file(&CancellationToken::new())
    2068            4 :             .await
    2069            2 :             .unwrap()
    2070            2 :         {
    2071            2 :             MaybeDeletedIndexPart::IndexPart(index_part) => index_part,
    2072            2 :             MaybeDeletedIndexPart::Deleted(_) => panic!("unexpectedly got deleted index part"),
    2073            2 :         };
    2074            2 : 
    2075            2 :         assert_file_list(
    2076            2 :             &index_part
    2077            2 :                 .layer_metadata
    2078            2 :                 .keys()
    2079            6 :                 .map(|f| f.to_owned())
    2080            2 :                 .collect(),
    2081            2 :             &[
    2082            2 :                 &initial_layer.file_name(),
    2083            2 :                 &layers[0].layer_desc().filename().file_name(),
    2084            2 :                 &layers[1].layer_desc().filename().file_name(),
    2085            2 :             ],
    2086            2 :         );
    2087            2 :         assert_eq!(index_part.metadata, metadata);
    2088            2 : 
    2089            2 :         // Schedule upload and then a deletion. Check that the deletion is queued
    2090            2 :         client
    2091            2 :             .schedule_layer_file_upload(layers[2].clone())
    2092            2 :             .unwrap();
    2093            2 : 
    2094            2 :         // this is no longer consistent with how deletion works with Layer::drop, but in this test
    2095            2 :         // keep using schedule_layer_file_deletion because we don't have a way to wait for the
    2096            2 :         // spawn_blocking started by the drop.
    2097            2 :         client
    2098            2 :             .schedule_layer_file_deletion(&[layers[0].layer_desc().filename()])
    2099            2 :             .unwrap();
    2100            2 :         {
    2101            2 :             let mut guard = client.upload_queue.lock().unwrap();
    2102            2 :             let upload_queue = guard.initialized_mut().unwrap();
    2103            2 : 
    2104            2 :             // Deletion schedules upload of the index file, and the file deletion itself
    2105            2 :             assert_eq!(upload_queue.queued_operations.len(), 2);
    2106            2 :             assert_eq!(upload_queue.inprogress_tasks.len(), 1);
    2107            2 :             assert_eq!(upload_queue.num_inprogress_layer_uploads, 1);
    2108            2 :             assert_eq!(upload_queue.num_inprogress_deletions, 0);
    2109            2 :             assert_eq!(
    2110            2 :                 upload_queue.latest_files_changes_since_metadata_upload_scheduled,
    2111            2 :                 0
    2112            2 :             );
    2113            2 :         }
    2114            2 :         assert_remote_files(
    2115            2 :             &[
    2116            2 :                 &initial_layer.file_name(),
    2117            2 :                 &layers[0].layer_desc().filename().file_name(),
    2118            2 :                 &layers[1].layer_desc().filename().file_name(),
    2119            2 :                 "index_part.json",
    2120            2 :             ],
    2121            2 :             &remote_timeline_dir,
    2122            2 :             generation,
    2123            2 :         );
    2124            2 : 
    2125            2 :         // Finish them
    2126            2 :         client.wait_completion().await.unwrap();
    2127            2 :         harness.deletion_queue.pump().await;
    2128            2 : 
    2129            2 :         assert_remote_files(
    2130            2 :             &[
    2131            2 :                 &initial_layer.file_name(),
    2132            2 :                 &layers[1].layer_desc().filename().file_name(),
    2133            2 :                 &layers[2].layer_desc().filename().file_name(),
    2134            2 :                 "index_part.json",
    2135            2 :             ],
    2136            2 :             &remote_timeline_dir,
    2137            2 :             generation,
    2138            2 :         );
    2139            2 :     }
    2140              : 
    2141            2 :     #[tokio::test]
    2142            2 :     async fn bytes_unfinished_gauge_for_layer_file_uploads() {
    2143            2 :         // Setup
    2144            2 : 
    2145            2 :         let TestSetup {
    2146            2 :             harness,
    2147            2 :             tenant: _tenant,
    2148            2 :             timeline,
    2149            2 :             ..
    2150            8 :         } = TestSetup::new("metrics").await.unwrap();
    2151            2 :         let client = timeline.remote_client.as_ref().unwrap();
    2152            2 :         let timeline_path = harness.timeline_path(&TIMELINE_ID);
    2153            2 : 
    2154            2 :         let layer_file_name_1: LayerFileName = "000000000000000000000000000000000000-FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF__00000000016B59D8-00000000016B5A51".parse().unwrap();
    2155            2 :         let content_1 = dummy_contents("foo");
    2156            2 :         std::fs::write(
    2157            2 :             timeline_path.join(layer_file_name_1.file_name()),
    2158            2 :             &content_1,
    2159            2 :         )
    2160            2 :         .unwrap();
    2161            2 : 
    2162            2 :         let layer_file_1 = Layer::for_resident(
    2163            2 :             harness.conf,
    2164            2 :             &timeline,
    2165            2 :             layer_file_name_1.clone(),
    2166            2 :             LayerFileMetadata::new(content_1.len() as u64, harness.generation, harness.shard),
    2167            2 :         );
    2168            2 : 
    2169            4 :         #[derive(Debug, PartialEq, Clone, Copy)]
    2170            2 :         struct BytesStartedFinished {
    2171            2 :             started: Option<usize>,
    2172            2 :             finished: Option<usize>,
    2173            2 :         }
    2174            2 :         impl std::ops::Add for BytesStartedFinished {
    2175            2 :             type Output = Self;
    2176            4 :             fn add(self, rhs: Self) -> Self::Output {
    2177            4 :                 Self {
    2178            4 :                     started: self.started.map(|v| v + rhs.started.unwrap_or(0)),
    2179            4 :                     finished: self.finished.map(|v| v + rhs.finished.unwrap_or(0)),
    2180            4 :                 }
    2181            4 :             }
    2182            2 :         }
    2183            6 :         let get_bytes_started_stopped = || {
    2184            6 :             let started = client
    2185            6 :                 .metrics
    2186            6 :                 .get_bytes_started_counter_value(&RemoteOpFileKind::Layer, &RemoteOpKind::Upload)
    2187            6 :                 .map(|v| v.try_into().unwrap());
    2188            6 :             let stopped = client
    2189            6 :                 .metrics
    2190            6 :                 .get_bytes_finished_counter_value(&RemoteOpFileKind::Layer, &RemoteOpKind::Upload)
    2191            6 :                 .map(|v| v.try_into().unwrap());
    2192            6 :             BytesStartedFinished {
    2193            6 :                 started,
    2194            6 :                 finished: stopped,
    2195            6 :             }
    2196            6 :         };
    2197            2 : 
    2198            2 :         // Test
    2199            2 :         tracing::info!("now doing actual test");
    2200            2 : 
    2201            2 :         let actual_a = get_bytes_started_stopped();
    2202            2 : 
    2203            2 :         client
    2204            2 :             .schedule_layer_file_upload(layer_file_1.clone())
    2205            2 :             .unwrap();
    2206            2 : 
    2207            2 :         let actual_b = get_bytes_started_stopped();
    2208            2 : 
    2209            2 :         client.wait_completion().await.unwrap();
    2210            2 : 
    2211            2 :         let actual_c = get_bytes_started_stopped();
    2212            2 : 
    2213            2 :         // Validate
    2214            2 : 
    2215            2 :         let expected_b = actual_a
    2216            2 :             + BytesStartedFinished {
    2217            2 :                 started: Some(content_1.len()),
    2218            2 :                 // assert that the _finished metric is created eagerly so that subtractions work on first sample
    2219            2 :                 finished: Some(0),
    2220            2 :             };
    2221            2 :         assert_eq!(actual_b, expected_b);
    2222            2 : 
    2223            2 :         let expected_c = actual_a
    2224            2 :             + BytesStartedFinished {
    2225            2 :                 started: Some(content_1.len()),
    2226            2 :                 finished: Some(content_1.len()),
    2227            2 :             };
    2228            2 :         assert_eq!(actual_c, expected_c);
    2229            2 :     }
    2230              : 
    2231           12 :     async fn inject_index_part(test_state: &TestSetup, generation: Generation) -> IndexPart {
    2232           12 :         // An empty IndexPart, just sufficient to ensure deserialization will succeed
    2233           12 :         let example_metadata = TimelineMetadata::example();
    2234           12 :         let example_index_part = IndexPart::new(
    2235           12 :             HashMap::new(),
    2236           12 :             example_metadata.disk_consistent_lsn(),
    2237           12 :             example_metadata,
    2238           12 :         );
    2239           12 : 
    2240           12 :         let index_part_bytes = serde_json::to_vec(&example_index_part).unwrap();
    2241           12 : 
    2242           12 :         let index_path = test_state.harness.remote_fs_dir.join(
    2243           12 :             remote_index_path(
    2244           12 :                 &test_state.harness.tenant_shard_id,
    2245           12 :                 &TIMELINE_ID,
    2246           12 :                 generation,
    2247           12 :             )
    2248           12 :             .get_path(),
    2249           12 :         );
    2250           12 : 
    2251           12 :         std::fs::create_dir_all(index_path.parent().unwrap())
    2252           12 :             .expect("creating test dir should work");
    2253           12 : 
    2254           12 :         eprintln!("Writing {index_path}");
    2255           12 :         std::fs::write(&index_path, index_part_bytes).unwrap();
    2256           12 :         example_index_part
    2257           12 :     }
    2258              : 
    2259              :     /// Assert that when a RemoteTimelineclient in generation `get_generation` fetches its
    2260              :     /// index, the IndexPart returned is equal to `expected`
    2261           10 :     async fn assert_got_index_part(
    2262           10 :         test_state: &TestSetup,
    2263           10 :         get_generation: Generation,
    2264           10 :         expected: &IndexPart,
    2265           10 :     ) {
    2266           10 :         let client = test_state.build_client(get_generation);
    2267              : 
    2268           10 :         let download_r = client
    2269           10 :             .download_index_file(&CancellationToken::new())
    2270           37 :             .await
    2271           10 :             .expect("download should always succeed");
    2272           10 :         assert!(matches!(download_r, MaybeDeletedIndexPart::IndexPart(_)));
    2273           10 :         match download_r {
    2274           10 :             MaybeDeletedIndexPart::IndexPart(index_part) => {
    2275           10 :                 assert_eq!(&index_part, expected);
    2276              :             }
    2277            0 :             MaybeDeletedIndexPart::Deleted(_index_part) => panic!("Test doesn't set deleted_at"),
    2278              :         }
    2279           10 :     }
    2280              : 
    2281            2 :     #[tokio::test]
    2282            2 :     async fn index_part_download_simple() -> anyhow::Result<()> {
    2283            8 :         let test_state = TestSetup::new("index_part_download_simple").await.unwrap();
    2284            2 :         let span = test_state.span();
    2285            2 :         let _guard = span.enter();
    2286            2 : 
    2287            2 :         // Simple case: we are in generation N, load the index from generation N - 1
    2288            2 :         let generation_n = 5;
    2289            2 :         let injected = inject_index_part(&test_state, Generation::new(generation_n - 1)).await;
    2290            2 : 
    2291            6 :         assert_got_index_part(&test_state, Generation::new(generation_n), &injected).await;
    2292            2 : 
    2293            2 :         Ok(())
    2294            2 :     }
    2295              : 
    2296            2 :     #[tokio::test]
    2297            2 :     async fn index_part_download_ordering() -> anyhow::Result<()> {
    2298            2 :         let test_state = TestSetup::new("index_part_download_ordering")
    2299            8 :             .await
    2300            2 :             .unwrap();
    2301            2 : 
    2302            2 :         let span = test_state.span();
    2303            2 :         let _guard = span.enter();
    2304            2 : 
    2305            2 :         // A generation-less IndexPart exists in the bucket, we should find it
    2306            2 :         let generation_n = 5;
    2307            2 :         let injected_none = inject_index_part(&test_state, Generation::none()).await;
    2308           10 :         assert_got_index_part(&test_state, Generation::new(generation_n), &injected_none).await;
    2309            2 : 
    2310            2 :         // If a more recent-than-none generation exists, we should prefer to load that
    2311            2 :         let injected_1 = inject_index_part(&test_state, Generation::new(1)).await;
    2312           10 :         assert_got_index_part(&test_state, Generation::new(generation_n), &injected_1).await;
    2313            2 : 
    2314            2 :         // If a more-recent-than-me generation exists, we should ignore it.
    2315            2 :         let _injected_10 = inject_index_part(&test_state, Generation::new(10)).await;
    2316            9 :         assert_got_index_part(&test_state, Generation::new(generation_n), &injected_1).await;
    2317            2 : 
    2318            2 :         // If a directly previous generation exists, _and_ an index exists in my own
    2319            2 :         // generation, I should prefer my own generation.
    2320            2 :         let _injected_prev =
    2321            2 :             inject_index_part(&test_state, Generation::new(generation_n - 1)).await;
    2322            2 :         let injected_current = inject_index_part(&test_state, Generation::new(generation_n)).await;
    2323            2 :         assert_got_index_part(
    2324            2 :             &test_state,
    2325            2 :             Generation::new(generation_n),
    2326            2 :             &injected_current,
    2327            2 :         )
    2328            2 :         .await;
    2329            2 : 
    2330            2 :         Ok(())
    2331            2 :     }
    2332              : }
        

Generated by: LCOV version 2.1-beta