Line data Source code
1 : //! Structs representing the JSON formats used in the compute_ctl's HTTP API.
2 :
3 : use std::fmt::Display;
4 :
5 : use chrono::{DateTime, Utc};
6 : use jsonwebtoken::jwk::JwkSet;
7 : use serde::{Deserialize, Serialize, Serializer};
8 :
9 : use crate::privilege::Privilege;
10 : use crate::spec::{ComputeSpec, Database, ExtVersion, PgIdent, Role};
11 :
12 0 : #[derive(Serialize, Debug, Deserialize)]
13 : pub struct GenericAPIError {
14 : pub error: String,
15 : }
16 :
17 : /// All configuration parameters necessary for a compute. When
18 : /// [`ComputeConfig::spec`] is provided, it means that the compute is attached
19 : /// to a tenant. [`ComputeConfig::compute_ctl_config`] will always be provided
20 : /// and contains parameters necessary for operating `compute_ctl` independently
21 : /// of whether a tenant is attached to the compute or not.
22 : ///
23 : /// This also happens to be the body of `compute_ctl`'s /configure request.
24 0 : #[derive(Debug, Deserialize, Serialize)]
25 : pub struct ComputeConfig {
26 : /// The compute spec
27 : pub spec: Option<ComputeSpec>,
28 :
29 : /// The compute_ctl configuration
30 : #[allow(dead_code)]
31 : pub compute_ctl_config: ComputeCtlConfig,
32 : }
33 :
34 : impl From<ControlPlaneConfigResponse> for ComputeConfig {
35 0 : fn from(value: ControlPlaneConfigResponse) -> Self {
36 0 : Self {
37 0 : spec: value.spec,
38 0 : compute_ctl_config: value.compute_ctl_config,
39 0 : }
40 0 : }
41 : }
42 :
43 : #[derive(Debug, Clone, Serialize)]
44 : pub struct ExtensionInstallResponse {
45 : pub extension: PgIdent,
46 : pub version: ExtVersion,
47 : }
48 :
49 : /// Status of the LFC prewarm process. The same state machine is reused for
50 : /// both autoprewarm (prewarm after compute/Postgres start using the previously
51 : /// stored LFC state) and explicit prewarming via API.
52 : #[derive(Serialize, Default, Debug, Clone, PartialEq)]
53 : #[serde(tag = "status", rename_all = "snake_case")]
54 : pub enum LfcPrewarmState {
55 : /// Default value when compute boots up.
56 : #[default]
57 : NotPrewarmed,
58 : /// Prewarming thread is active and loading pages into LFC.
59 : Prewarming,
60 : /// We found requested LFC state in the endpoint storage and
61 : /// completed prewarming successfully.
62 : Completed,
63 : /// Unexpected error happened during prewarming. Note, `Not Found 404`
64 : /// response from the endpoint storage is explicitly excluded here
65 : /// because it can normally happen on the first compute start,
66 : /// since LFC state is not available yet.
67 : Failed { error: String },
68 : /// We tried to fetch the corresponding LFC state from the endpoint storage,
69 : /// but received `Not Found 404`. This should normally happen only during the
70 : /// first endpoint start after creation with `autoprewarm: true`.
71 : ///
72 : /// During the orchestrated prewarm via API, when a caller explicitly
73 : /// provides the LFC state key to prewarm from, it's the caller responsibility
74 : /// to handle this status as an error state in this case.
75 : Skipped,
76 : }
77 :
78 : impl Display for LfcPrewarmState {
79 0 : fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
80 0 : match self {
81 0 : LfcPrewarmState::NotPrewarmed => f.write_str("NotPrewarmed"),
82 0 : LfcPrewarmState::Prewarming => f.write_str("Prewarming"),
83 0 : LfcPrewarmState::Completed => f.write_str("Completed"),
84 0 : LfcPrewarmState::Skipped => f.write_str("Skipped"),
85 0 : LfcPrewarmState::Failed { error } => write!(f, "Error({error})"),
86 : }
87 0 : }
88 : }
89 :
90 : #[derive(Serialize, Default, Debug, Clone, PartialEq)]
91 : #[serde(tag = "status", rename_all = "snake_case")]
92 : pub enum LfcOffloadState {
93 : #[default]
94 : NotOffloaded,
95 : Offloading,
96 : Completed,
97 : Failed {
98 : error: String,
99 : },
100 : }
101 :
102 : #[derive(Serialize, Debug, Clone, PartialEq)]
103 : #[serde(tag = "status", rename_all = "snake_case")]
104 : /// Response of /promote
105 : pub enum PromoteState {
106 : NotPromoted,
107 : Completed,
108 : Failed { error: String },
109 : }
110 :
111 0 : #[derive(Deserialize, Default, Debug)]
112 : #[serde(rename_all = "snake_case")]
113 : pub struct PromoteConfig {
114 : pub spec: ComputeSpec,
115 : pub wal_flush_lsn: utils::lsn::Lsn,
116 : }
117 :
118 : /// Response of the /status API
119 0 : #[derive(Serialize, Debug, Deserialize)]
120 : #[serde(rename_all = "snake_case")]
121 : pub struct ComputeStatusResponse {
122 : pub start_time: DateTime<Utc>,
123 : pub tenant: Option<String>,
124 : pub timeline: Option<String>,
125 : pub status: ComputeStatus,
126 : #[serde(serialize_with = "rfc3339_serialize")]
127 : pub last_active: Option<DateTime<Utc>>,
128 : pub error: Option<String>,
129 : }
130 :
131 0 : #[derive(Serialize, Clone, Copy, Debug, Deserialize, PartialEq, Eq, Default)]
132 : #[serde(rename_all = "snake_case")]
133 : pub enum TerminateMode {
134 : #[default]
135 : /// wait 30s till returning from /terminate to allow control plane to get the error
136 : Fast,
137 : /// return from /terminate immediately as soon as all components are terminated
138 : Immediate,
139 : }
140 :
141 : impl From<TerminateMode> for ComputeStatus {
142 0 : fn from(mode: TerminateMode) -> Self {
143 0 : match mode {
144 0 : TerminateMode::Fast => ComputeStatus::TerminationPendingFast,
145 0 : TerminateMode::Immediate => ComputeStatus::TerminationPendingImmediate,
146 : }
147 0 : }
148 : }
149 :
150 0 : #[derive(Serialize, Clone, Copy, Debug, Deserialize, PartialEq, Eq)]
151 : #[serde(rename_all = "snake_case")]
152 : pub enum ComputeStatus {
153 : // Spec wasn't provided at start, waiting for it to be
154 : // provided by control-plane.
155 : Empty,
156 : // Compute configuration was requested.
157 : ConfigurationPending,
158 : // Compute node has spec and initial startup and
159 : // configuration is in progress.
160 : Init,
161 : // Compute is configured and running.
162 : Running,
163 : // New spec is being applied.
164 : Configuration,
165 : // Either startup or configuration failed,
166 : // compute will exit soon or is waiting for
167 : // control-plane to terminate it.
168 : Failed,
169 : // Termination requested
170 : TerminationPendingFast,
171 : // Termination requested, without waiting 30s before returning from /terminate
172 : TerminationPendingImmediate,
173 : // Terminated Postgres
174 : Terminated,
175 : }
176 :
177 0 : #[derive(Deserialize, Serialize)]
178 : pub struct TerminateResponse {
179 : pub lsn: Option<utils::lsn::Lsn>,
180 : }
181 :
182 : impl Display for ComputeStatus {
183 0 : fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
184 0 : match self {
185 0 : ComputeStatus::Empty => f.write_str("empty"),
186 0 : ComputeStatus::ConfigurationPending => f.write_str("configuration-pending"),
187 0 : ComputeStatus::Init => f.write_str("init"),
188 0 : ComputeStatus::Running => f.write_str("running"),
189 0 : ComputeStatus::Configuration => f.write_str("configuration"),
190 0 : ComputeStatus::Failed => f.write_str("failed"),
191 0 : ComputeStatus::TerminationPendingFast => f.write_str("termination-pending-fast"),
192 : ComputeStatus::TerminationPendingImmediate => {
193 0 : f.write_str("termination-pending-immediate")
194 : }
195 0 : ComputeStatus::Terminated => f.write_str("terminated"),
196 : }
197 0 : }
198 : }
199 :
200 0 : pub fn rfc3339_serialize<S>(x: &Option<DateTime<Utc>>, s: S) -> Result<S::Ok, S::Error>
201 0 : where
202 0 : S: Serializer,
203 : {
204 0 : if let Some(x) = x {
205 0 : x.to_rfc3339().serialize(s)
206 : } else {
207 0 : s.serialize_none()
208 : }
209 0 : }
210 :
211 : /// Response of the /metrics.json API
212 : #[derive(Clone, Debug, Default, Serialize)]
213 : pub struct ComputeMetrics {
214 : /// Time spent waiting in pool
215 : pub wait_for_spec_ms: u64,
216 :
217 : /// Time spent checking if safekeepers are synced
218 : pub sync_sk_check_ms: u64,
219 :
220 : /// Time spent syncing safekeepers (walproposer.c).
221 : /// In most cases this should be zero.
222 : pub sync_safekeepers_ms: u64,
223 :
224 : /// Time it took to establish a pg connection to the pageserver.
225 : /// This is two roundtrips, so it's a good proxy for compute-pageserver
226 : /// latency. The latency is usually 0.2ms, but it's not safe to assume
227 : /// that.
228 : pub pageserver_connect_micros: u64,
229 :
230 : /// Time to get basebackup from pageserver and write it to disk.
231 : pub basebackup_ms: u64,
232 :
233 : /// Compressed size of basebackup received.
234 : pub basebackup_bytes: u64,
235 :
236 : /// Time spent starting potgres. This includes initialization of shared
237 : /// buffers, preloading extensions, and other pg operations.
238 : pub start_postgres_ms: u64,
239 :
240 : /// Time spent applying pg catalog updates that were made in the console
241 : /// UI. This should be 0 when startup time matters, since cplane tries
242 : /// to do these updates eagerly, and passes the skip_pg_catalog_updates
243 : /// when it's safe to skip this step.
244 : pub config_ms: u64,
245 :
246 : /// Total time, from when we receive the spec to when we're ready to take
247 : /// pg connections.
248 : pub total_startup_ms: u64,
249 : pub load_ext_ms: u64,
250 : pub num_ext_downloaded: u64,
251 : pub largest_ext_size: u64, // these are measured in bytes
252 : pub total_ext_download_size: u64,
253 : }
254 :
255 : #[derive(Clone, Debug, Default, Serialize)]
256 : pub struct CatalogObjects {
257 : pub roles: Vec<Role>,
258 : pub databases: Vec<Database>,
259 : }
260 :
261 0 : #[derive(Clone, Debug, Deserialize, Eq, PartialEq, Serialize)]
262 : pub struct ComputeCtlConfig {
263 : /// Set of JSON web keys that the compute can use to authenticate
264 : /// communication from the control plane.
265 : pub jwks: JwkSet,
266 : pub tls: Option<TlsConfig>,
267 : }
268 :
269 : impl Default for ComputeCtlConfig {
270 0 : fn default() -> Self {
271 0 : Self {
272 0 : jwks: JwkSet {
273 0 : keys: Vec::default(),
274 0 : },
275 0 : tls: None,
276 0 : }
277 0 : }
278 : }
279 :
280 0 : #[derive(Clone, Debug, Deserialize, Eq, PartialEq, Serialize)]
281 : pub struct TlsConfig {
282 : pub key_path: String,
283 : pub cert_path: String,
284 : }
285 :
286 : /// Response of the `/computes/{compute_id}/spec` control-plane API.
287 0 : #[derive(Deserialize, Debug)]
288 : pub struct ControlPlaneConfigResponse {
289 : pub spec: Option<ComputeSpec>,
290 : pub status: ControlPlaneComputeStatus,
291 : pub compute_ctl_config: ComputeCtlConfig,
292 : }
293 :
294 0 : #[derive(Deserialize, Clone, Copy, Debug, PartialEq, Eq)]
295 : #[serde(rename_all = "snake_case")]
296 : pub enum ControlPlaneComputeStatus {
297 : // Compute is known to control-plane, but it's not
298 : // yet attached to any timeline / endpoint.
299 : Empty,
300 : // Compute is attached to some timeline / endpoint and
301 : // should be able to start with provided spec.
302 : Attached,
303 : }
304 :
305 : #[derive(Clone, Debug, Default, Serialize)]
306 : pub struct InstalledExtension {
307 : pub extname: String,
308 : pub version: String,
309 : pub n_databases: u32, // Number of databases using this extension
310 : pub owned_by_superuser: String,
311 : }
312 :
313 : #[derive(Clone, Debug, Default, Serialize)]
314 : pub struct InstalledExtensions {
315 : pub extensions: Vec<InstalledExtension>,
316 : }
317 :
318 : #[derive(Clone, Debug, Default, Serialize)]
319 : pub struct ExtensionInstallResult {
320 : pub extension: PgIdent,
321 : pub version: ExtVersion,
322 : }
323 : #[derive(Clone, Debug, Default, Serialize)]
324 : pub struct SetRoleGrantsResponse {
325 : pub database: PgIdent,
326 : pub schema: PgIdent,
327 : pub privileges: Vec<Privilege>,
328 : pub role: PgIdent,
329 : }
|