LCOV - code coverage report
Current view: top level - pageserver/src - context.rs (source / functions) Coverage Total Hit
Test: 4f58e98c51285c7fa348e0b410c88a10caf68ad2.info Lines: 100.0 % 67 67
Test Date: 2025-01-07 20:58:07 Functions: 94.1 % 17 16

            Line data    Source code
       1              : //! Defines [`RequestContext`].
       2              : //!
       3              : //! It is a structure that we use throughout the pageserver to propagate
       4              : //! high-level context from places that _originate_ activity down to the
       5              : //! shared code paths at the heart of the pageserver. It's inspired by
       6              : //! Golang's `context.Context`.
       7              : //!
       8              : //! For example, in `Timeline::get(page_nr, lsn)` we need to answer the following questions:
       9              : //! 1. What high-level activity ([`TaskKind`]) needs this page?
      10              : //!    We need that information as a categorical dimension for page access
      11              : //!    statistics, which we, in turn, need to guide layer eviction policy design.
      12              : //! 2. How should we behave if, to produce the page image, we need to
      13              : //!    on-demand download a layer file ([`DownloadBehavior`]).
      14              : //!
      15              : //! [`RequestContext`] satisfies those needs.
      16              : //! The current implementation is a small `struct` that is passed through
      17              : //! the call chain by reference.
      18              : //!
      19              : //! ### Future Work
      20              : //!
      21              : //! However, we do not intend to stop here, since there are other needs that
      22              : //! require carrying information from high to low levels of the app.
      23              : //!
      24              : //! Most importantly, **cancellation signaling** in response to
      25              : //! 1. timeouts (page_service max response time) and
      26              : //! 2. lifecycle requests (detach tenant, delete timeline).
      27              : //!
      28              : //! Related to that, there is sometimes a need to ensure that all tokio tasks spawned
      29              : //! by the transitive callees of a request have finished. The keyword here
      30              : //! is **Structured Concurrency**, and right now, we use `task_mgr` in most places,
      31              : //! `TaskHandle` in some places, and careful code review around `FuturesUnordered`
      32              : //! or `JoinSet` in other places.
      33              : //!
      34              : //! We do not yet have a systematic cancellation story in pageserver, and it is
      35              : //! pretty clear that [`RequestContext`] will be responsible for that.
      36              : //! So, the API already prepares for this role through the
      37              : //! [`RequestContext::detached_child`] and [`RequestContext::attached_child`]  methods.
      38              : //! See their doc comments for details on how we will use them in the future.
      39              : //!
      40              : //! It is not clear whether or how we will enforce Structured Concurrency, and
      41              : //! what role [`RequestContext`] will play there.
      42              : //! So, the API doesn't prepare us for this topic.
      43              : //!
      44              : //! Other future uses of `RequestContext`:
      45              : //! - Communicate compute & IO priorities (user-initiated request vs. background-loop)
      46              : //! - Request IDs for distributed tracing
      47              : //! - Request/Timeline/Tenant-scoped log levels
      48              : //!
      49              : //! RequestContext might look quite different once it supports those features.
      50              : //! Likely, it will have a shape similar to Golang's `context.Context`.
      51              : //!
      52              : //! ### Why A Struct Instead Of Method Parameters
      53              : //!
      54              : //! What's typical about such information is that it needs to be passed down
      55              : //! along the call chain from high level to low level, but few of the functions
      56              : //! in the middle need to understand it.
      57              : //! Further, it is to be expected that we will need to propagate more data
      58              : //! in the future (see the earlier section on future work).
      59              : //! Hence, for functions in the middle of the call chain, we have the following
      60              : //! requirements:
      61              : //! 1. It should be easy to forward the context to callees.
      62              : //! 2. To propagate more data from high-level to low-level code, the functions in
      63              : //!    the middle should not need to be modified.
      64              : //!
      65              : //! The solution is to have a container structure ([`RequestContext`]) that
      66              : //! carries the information. Functions that don't care about what's in it
      67              : //! pass it along to callees.
      68              : //!
      69              : //! ### Why Not Task-Local Variables
      70              : //!
      71              : //! One could use task-local variables (the equivalent of thread-local variables)
      72              : //! to address the immediate needs outlined above.
      73              : //! However, we reject task-local variables because:
      74              : //! 1. they are implicit, thereby making it harder to trace the data flow in code
      75              : //!    reviews and during debugging,
      76              : //! 2. they can be mutable, which enables implicit return data flow,
      77              : //! 3. they are restrictive in that code which fans out into multiple tasks,
      78              : //!    or even threads, needs to carefully propagate the state.
      79              : //!
      80              : //! In contrast, information flow with [`RequestContext`] is
      81              : //! 1. always explicit,
      82              : //! 2. strictly uni-directional because RequestContext is immutable,
      83              : //! 3. tangible because a [`RequestContext`] is just a value.
      84              : //!    When creating child activities, regardless of whether it's a task,
      85              : //!    thread, or even an RPC to another service, the value can
      86              : //!    be used like any other argument.
      87              : //!
      88              : //! The solution is that all code paths are infected with precisely one
      89              : //! [`RequestContext`] argument. Functions in the middle of the call chain
      90              : //! only need to pass it on.
      91              : 
      92              : use crate::task_mgr::TaskKind;
      93              : 
      94              : // The main structure of this module, see module-level comment.
      95              : #[derive(Debug)]
      96              : pub struct RequestContext {
      97              :     task_kind: TaskKind,
      98              :     download_behavior: DownloadBehavior,
      99              :     access_stats_behavior: AccessStatsBehavior,
     100              :     page_content_kind: PageContentKind,
     101              : }
     102              : 
     103              : /// The kind of access to the page cache.
     104        22816 : #[derive(Clone, Copy, PartialEq, Eq, Debug, enum_map::Enum, strum_macros::IntoStaticStr)]
     105              : pub enum PageContentKind {
     106              :     Unknown,
     107              :     DeltaLayerSummary,
     108              :     DeltaLayerBtreeNode,
     109              :     DeltaLayerValue,
     110              :     ImageLayerSummary,
     111              :     ImageLayerBtreeNode,
     112              :     ImageLayerValue,
     113              :     InMemoryLayer,
     114              : }
     115              : 
     116              : /// Desired behavior if the operation requires an on-demand download
     117              : /// to proceed.
     118              : #[derive(Clone, Copy, PartialEq, Eq, Debug)]
     119              : pub enum DownloadBehavior {
     120              :     /// Download the layer file. It can take a while.
     121              :     Download,
     122              : 
     123              :     /// Download the layer file, but print a warning to the log. This should be used
     124              :     /// in code where the layer file is expected to already exist locally.
     125              :     Warn,
     126              : 
     127              :     /// Return a PageReconstructError::NeedsDownload error
     128              :     Error,
     129              : }
     130              : 
     131              : /// Whether this request should update access times used in LRU eviction
     132              : #[derive(Clone, Copy, PartialEq, Eq, Debug)]
     133              : pub(crate) enum AccessStatsBehavior {
     134              :     /// Update access times: this request's access to data should be taken
     135              :     /// as a hint that the accessed layer is likely to be accessed again
     136              :     Update,
     137              : 
     138              :     /// Do not update access times: this request is accessing the layer
     139              :     /// but does not want to indicate that the layer should be retained in cache,
     140              :     /// perhaps because the requestor is a compaction routine that will soon cover
     141              :     /// this layer with another.
     142              :     Skip,
     143              : }
     144              : 
     145              : pub struct RequestContextBuilder {
     146              :     inner: RequestContext,
     147              : }
     148              : 
     149              : impl RequestContextBuilder {
     150              :     /// A new builder with default settings
     151         3549 :     pub fn new(task_kind: TaskKind) -> Self {
     152         3549 :         Self {
     153         3549 :             inner: RequestContext {
     154         3549 :                 task_kind,
     155         3549 :                 download_behavior: DownloadBehavior::Download,
     156         3549 :                 access_stats_behavior: AccessStatsBehavior::Update,
     157         3549 :                 page_content_kind: PageContentKind::Unknown,
     158         3549 :             },
     159         3549 :         }
     160         3549 :     }
     161              : 
     162       849897 :     pub fn extend(original: &RequestContext) -> Self {
     163       849897 :         Self {
     164       849897 :             // This is like a Copy, but avoid implementing Copy because ordinary users of
     165       849897 :             // RequestContext should always move or ref it.
     166       849897 :             inner: RequestContext {
     167       849897 :                 task_kind: original.task_kind,
     168       849897 :                 download_behavior: original.download_behavior,
     169       849897 :                 access_stats_behavior: original.access_stats_behavior,
     170       849897 :                 page_content_kind: original.page_content_kind,
     171       849897 :             },
     172       849897 :         }
     173       849897 :     }
     174              : 
     175              :     /// Configure the DownloadBehavior of the context: whether to
     176              :     /// download missing layers, and/or warn on the download.
     177         3549 :     pub fn download_behavior(mut self, b: DownloadBehavior) -> Self {
     178         3549 :         self.inner.download_behavior = b;
     179         3549 :         self
     180         3549 :     }
     181              : 
     182              :     /// Configure the AccessStatsBehavior of the context: whether layer
     183              :     /// accesses should update the access time of the layer.
     184          364 :     pub(crate) fn access_stats_behavior(mut self, b: AccessStatsBehavior) -> Self {
     185          364 :         self.inner.access_stats_behavior = b;
     186          364 :         self
     187          364 :     }
     188              : 
     189       849533 :     pub(crate) fn page_content_kind(mut self, k: PageContentKind) -> Self {
     190       849533 :         self.inner.page_content_kind = k;
     191       849533 :         self
     192       849533 :     }
     193              : 
     194       853446 :     pub fn build(self) -> RequestContext {
     195       853446 :         self.inner
     196       853446 :     }
     197              : }
     198              : 
     199              : impl RequestContext {
     200              :     /// Create a new RequestContext that has no parent.
     201              :     ///
     202              :     /// The function is called `new` because, once we add children
     203              :     /// to it using `detached_child` or `attached_child`, the context
     204              :     /// form a tree (not implemented yet since cancellation will be
     205              :     /// the first feature that requires a tree).
     206              :     ///
     207              :     /// # Future: Cancellation
     208              :     ///
     209              :     /// The only reason why a context like this one can be canceled is
     210              :     /// because someone explicitly canceled it.
     211              :     /// It has no parent, so it cannot inherit cancellation from there.
     212         3549 :     pub fn new(task_kind: TaskKind, download_behavior: DownloadBehavior) -> Self {
     213         3549 :         RequestContextBuilder::new(task_kind)
     214         3549 :             .download_behavior(download_behavior)
     215         3549 :             .build()
     216         3549 :     }
     217              : 
     218              :     /// Create a detached child context for a task that may outlive `self`.
     219              :     ///
     220              :     /// Use this when spawning new background activity that should complete
     221              :     /// even if the current request is canceled.
     222              :     ///
     223              :     /// # Future: Cancellation
     224              :     ///
     225              :     /// Cancellation of `self` will not propagate to the child context returned
     226              :     /// by this method.
     227              :     ///
     228              :     /// # Future: Structured Concurrency
     229              :     ///
     230              :     /// We could add the Future as a parameter to this function, spawn it as a task,
     231              :     /// and pass to the new task the child context as an argument.
     232              :     /// That would be an ergonomic improvement.
     233              :     ///
     234              :     /// We could make new calls to this function fail if `self` is already canceled.
     235          208 :     pub fn detached_child(&self, task_kind: TaskKind, download_behavior: DownloadBehavior) -> Self {
     236          208 :         self.child_impl(task_kind, download_behavior)
     237          208 :     }
     238              : 
     239              :     /// Create a child of context `self` for a task that shall not outlive `self`.
     240              :     ///
     241              :     /// Use this when fanning-out work to other async tasks.
     242              :     ///
     243              :     /// # Future: Cancellation
     244              :     ///
     245              :     /// Cancelling a context will propagate to its attached children.
     246              :     ///
     247              :     /// # Future: Structured Concurrency
     248              :     ///
     249              :     /// We could add the Future as a parameter to this function, spawn it as a task,
     250              :     /// and track its `JoinHandle` inside the `RequestContext`.
     251              :     ///
     252              :     /// We could then provide another method to allow waiting for all child tasks
     253              :     /// to finish.
     254              :     ///
     255              :     /// We could make new calls to this function fail if `self` is already canceled.
     256              :     /// Alternatively, we could allow the creation but not spawn the task.
     257              :     /// The method to wait for child tasks would return an error, indicating
     258              :     /// that the child task was not started because the context was canceled.
     259         2617 :     pub fn attached_child(&self) -> Self {
     260         2617 :         self.child_impl(self.task_kind(), self.download_behavior())
     261         2617 :     }
     262              : 
     263              :     /// Use this function when you should be creating a child context using
     264              :     /// [`attached_child`] or [`detached_child`], but your caller doesn't provide
     265              :     /// a context and you are unwilling to change all callers to provide one.
     266              :     ///
     267              :     /// Before we add cancellation, we should get rid of this method.
     268              :     ///
     269              :     /// [`attached_child`]: Self::attached_child
     270              :     /// [`detached_child`]: Self::detached_child
     271          416 :     pub fn todo_child(task_kind: TaskKind, download_behavior: DownloadBehavior) -> Self {
     272          416 :         Self::new(task_kind, download_behavior)
     273          416 :     }
     274              : 
     275         2825 :     fn child_impl(&self, task_kind: TaskKind, download_behavior: DownloadBehavior) -> Self {
     276         2825 :         Self::new(task_kind, download_behavior)
     277         2825 :     }
     278              : 
     279      1227679 :     pub fn task_kind(&self) -> TaskKind {
     280      1227679 :         self.task_kind
     281      1227679 :     }
     282              : 
     283         2625 :     pub fn download_behavior(&self) -> DownloadBehavior {
     284         2625 :         self.download_behavior
     285         2625 :     }
     286              : 
     287       241205 :     pub(crate) fn access_stats_behavior(&self) -> AccessStatsBehavior {
     288       241205 :         self.access_stats_behavior
     289       241205 :     }
     290              : 
     291       977082 :     pub(crate) fn page_content_kind(&self) -> PageContentKind {
     292       977082 :         self.page_content_kind
     293       977082 :     }
     294              : }
        

Generated by: LCOV version 2.1-beta