1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419
// Copyright Materialize, Inc. and contributors. All rights reserved.
//
// Use of this software is governed by the Business Source License
// included in the LICENSE file.
//
// As of the Change Date specified in that file, in accordance with
// the Business Source License, use of this software will be governed
// by the Apache License, Version 2.0.
//! This crate is responsible for durably storing and modifying the catalog contents.
use std::fmt::Debug;
use std::num::NonZeroI64;
use std::sync::Arc;
use std::time::Duration;
use async_trait::async_trait;
use mz_audit_log::VersionedEvent;
use uuid::Uuid;
use mz_controller_types::ClusterId;
use mz_ore::collections::CollectionExt;
use mz_ore::metrics::MetricsRegistry;
use mz_ore::now::EpochMillis;
use mz_persist_client::PersistClient;
use mz_repr::{CatalogItemId, GlobalId};
use crate::config::ClusterReplicaSizeMap;
use crate::durable::debug::{DebugCatalogState, Trace};
pub use crate::durable::error::{CatalogError, DurableCatalogError, FenceError};
pub use crate::durable::metrics::Metrics;
pub use crate::durable::objects::state_update::StateUpdate;
use crate::durable::objects::Snapshot;
pub use crate::durable::objects::{
Cluster, ClusterConfig, ClusterReplica, ClusterVariant, ClusterVariantManaged, Comment,
Database, DefaultPrivilege, IntrospectionSourceIndex, Item, NetworkPolicy, ReplicaConfig,
ReplicaLocation, Role, Schema, SourceReference, SourceReferences, StorageCollectionMetadata,
SystemConfiguration, SystemObjectDescription, SystemObjectMapping, UnfinalizedShard,
};
pub use crate::durable::persist::{builtin_migration_shard_id, expression_cache_shard_id};
use crate::durable::persist::{Timestamp, UnopenedPersistCatalogState};
pub use crate::durable::transaction::Transaction;
use crate::durable::transaction::TransactionBatch;
pub use crate::durable::upgrade::CATALOG_VERSION;
use crate::memory;
pub mod debug;
mod error;
pub mod initialize;
mod metrics;
pub mod objects;
mod persist;
mod transaction;
mod upgrade;
pub const DATABASE_ID_ALLOC_KEY: &str = "database";
pub const SCHEMA_ID_ALLOC_KEY: &str = "schema";
pub const USER_ITEM_ALLOC_KEY: &str = "user";
pub const SYSTEM_ITEM_ALLOC_KEY: &str = "system";
pub const USER_ROLE_ID_ALLOC_KEY: &str = "user_role";
pub const USER_CLUSTER_ID_ALLOC_KEY: &str = "user_compute";
pub const SYSTEM_CLUSTER_ID_ALLOC_KEY: &str = "system_compute";
pub const USER_REPLICA_ID_ALLOC_KEY: &str = "replica";
pub const SYSTEM_REPLICA_ID_ALLOC_KEY: &str = "system_replica";
pub const AUDIT_LOG_ID_ALLOC_KEY: &str = "auditlog";
pub const STORAGE_USAGE_ID_ALLOC_KEY: &str = "storage_usage";
pub const USER_NETWORK_POLICY_ID_ALLOC_KEY: &str = "user_network_policy";
pub const OID_ALLOC_KEY: &str = "oid";
pub(crate) const CATALOG_CONTENT_VERSION_KEY: &str = "catalog_content_version";
#[derive(Clone, Debug)]
pub struct BootstrapArgs {
pub cluster_replica_size_map: ClusterReplicaSizeMap,
pub default_cluster_replica_size: String,
pub bootstrap_role: Option<String>,
}
pub type Epoch = NonZeroI64;
/// An API for opening a durable catalog state.
///
/// If a catalog is not opened, then resources should be release via [`Self::expire`].
#[async_trait]
pub trait OpenableDurableCatalogState: Debug + Send {
// TODO(jkosh44) Teaching savepoint mode how to listen to additional
// durable updates will be necessary for zero down time upgrades.
/// Opens the catalog in a mode that accepts and buffers all writes,
/// but never durably commits them. This is used to check and see if
/// opening the catalog would be successful, without making any durable
/// changes.
///
/// Once a savepoint catalog reads an initial snapshot from durable
/// storage, it will never read another update from durable storage. As a
/// consequence, savepoint catalogs can never be fenced.
///
/// Will return an error in the following scenarios:
/// - Catalog initialization fails.
/// - Catalog migrations fail.
///
/// `initial_ts` is used as the initial timestamp for new environments.
async fn open_savepoint(
mut self: Box<Self>,
initial_ts: EpochMillis,
bootstrap_args: &BootstrapArgs,
) -> Result<Box<dyn DurableCatalogState>, CatalogError>;
/// Opens the catalog in read only mode. All mutating methods
/// will return an error.
///
/// If the catalog is uninitialized or requires a migrations, then
/// it will fail to open in read only mode.
async fn open_read_only(
mut self: Box<Self>,
bootstrap_args: &BootstrapArgs,
) -> Result<Box<dyn DurableCatalogState>, CatalogError>;
/// Opens the catalog in a writeable mode. Optionally initializes the
/// catalog, if it has not been initialized, and perform any migrations
/// needed.
///
/// `initial_ts` is used as the initial timestamp for new environments.
async fn open(
mut self: Box<Self>,
initial_ts: EpochMillis,
bootstrap_args: &BootstrapArgs,
) -> Result<Box<dyn DurableCatalogState>, CatalogError>;
/// Opens the catalog for manual editing of the underlying data. This is helpful for
/// fixing a corrupt catalog.
async fn open_debug(mut self: Box<Self>) -> Result<DebugCatalogState, CatalogError>;
/// Reports if the catalog state has been initialized.
async fn is_initialized(&mut self) -> Result<bool, CatalogError>;
/// Returns the epoch of the current durable catalog state. The epoch acts as
/// a fencing token to prevent split brain issues across two
/// [`DurableCatalogState`]s. When a new [`DurableCatalogState`] opens the
/// catalog, it will increment the epoch by one (or initialize it to some
/// value if there's no existing epoch) and store the value in memory. It's
/// guaranteed that no two [`DurableCatalogState`]s will return the same value
/// for their epoch.
///
/// NB: We may remove this in later iterations of Pv2.
async fn epoch(&mut self) -> Result<Epoch, CatalogError>;
/// Get the most recent deployment generation written to the catalog. Not necessarily the
/// deploy generation of this instance.
async fn get_deployment_generation(&mut self) -> Result<u64, CatalogError>;
/// Get the `enable_0dt_deployment` config value of this instance.
///
/// This mirrors the `enable_0dt_deployment` "system var" so that we can
/// toggle the flag with LaunchDarkly, but use it in boot before
/// LaunchDarkly is available.
async fn get_enable_0dt_deployment(&mut self) -> Result<Option<bool>, CatalogError>;
/// Get the `with_0dt_deployment_max_wait` config value of this instance.
///
/// This mirrors the `with_0dt_deployment_max_wait` "system var" so that we can
/// toggle the flag with LaunchDarkly, but use it in boot before
/// LaunchDarkly is available.
async fn get_0dt_deployment_max_wait(&mut self) -> Result<Option<Duration>, CatalogError>;
/// Get the `enable_0dt_deployment_panic_after_timeout` config value of this
/// instance.
///
/// This mirrors the `enable_0dt_deployment_panic_after_timeout` "system var"
/// so that we can toggle the flag with LaunchDarkly, but use it in boot
/// before LaunchDarkly is available.
async fn get_enable_0dt_deployment_panic_after_timeout(
&mut self,
) -> Result<Option<bool>, CatalogError>;
/// Reports if the remote configuration was synchronized at least once.
async fn has_system_config_synced_once(&mut self) -> Result<bool, DurableCatalogError>;
/// Generate an unconsolidated [`Trace`] of catalog contents.
async fn trace_unconsolidated(&mut self) -> Result<Trace, CatalogError>;
/// Generate a consolidated [`Trace`] of catalog contents.
async fn trace_consolidated(&mut self) -> Result<Trace, CatalogError>;
/// Politely releases all external resources that can only be released in an async context.
async fn expire(self: Box<Self>);
}
/// A read only API for the durable catalog state.
#[async_trait]
pub trait ReadOnlyDurableCatalogState: Debug + Send {
/// Returns the epoch of the current durable catalog state. The epoch acts as
/// a fencing token to prevent split brain issues across two
/// [`DurableCatalogState`]s. When a new [`DurableCatalogState`] opens the
/// catalog, it will increment the epoch by one (or initialize it to some
/// value if there's no existing epoch) and store the value in memory. It's
/// guaranteed that no two [`DurableCatalogState`]s will return the same value
/// for their epoch.
///
/// NB: We may remove this in later iterations of Pv2.
fn epoch(&self) -> Epoch;
/// Politely releases all external resources that can only be released in an async context.
async fn expire(self: Box<Self>);
/// Get all audit log events.
///
/// Results are guaranteed to be sorted by ID.
///
/// WARNING: This is meant for use in integration tests and has bad performance.
async fn get_audit_logs(&mut self) -> Result<Vec<VersionedEvent>, CatalogError>;
/// Get the next ID of `id_type`, without allocating it.
async fn get_next_id(&mut self, id_type: &str) -> Result<u64, CatalogError>;
/// Get the next user ID without allocating it.
async fn get_next_user_item_id(&mut self) -> Result<u64, CatalogError> {
self.get_next_id(USER_ITEM_ALLOC_KEY).await
}
/// Get the next system ID without allocating it.
async fn get_next_system_item_id(&mut self) -> Result<u64, CatalogError> {
self.get_next_id(SYSTEM_ITEM_ALLOC_KEY).await
}
/// Get the next system replica id without allocating it.
async fn get_next_system_replica_id(&mut self) -> Result<u64, CatalogError> {
self.get_next_id(SYSTEM_REPLICA_ID_ALLOC_KEY).await
}
/// Get the next user replica id without allocating it.
async fn get_next_user_replica_id(&mut self) -> Result<u64, CatalogError> {
self.get_next_id(USER_REPLICA_ID_ALLOC_KEY).await
}
/// Get the deployment generation of this instance.
async fn get_deployment_generation(&mut self) -> Result<u64, CatalogError>;
/// Get a snapshot of the catalog.
async fn snapshot(&mut self) -> Result<Snapshot, CatalogError>;
/// Listen and return all updates that are currently in the catalog.
///
/// IMPORTANT: This excludes updates to storage usage.
///
/// Returns an error if this instance has been fenced out.
async fn sync_to_current_updates(
&mut self,
) -> Result<Vec<memory::objects::StateUpdate>, CatalogError>;
// TODO(jkosh44) The fact that the timestamp argument is an exclusive upper bound makes
// it difficult to use for readers. For now it's correct and easy to implement, but we should
// consider a better API.
/// Listen and return all updates in the catalog up to `target_upper`.
///
/// IMPORTANT: This excludes updates to storage usage.
///
/// Returns an error if this instance has been fenced out.
async fn sync_updates(
&mut self,
target_upper: Timestamp,
) -> Result<Vec<memory::objects::StateUpdate>, CatalogError>;
}
/// A read-write API for the durable catalog state.
#[async_trait]
pub trait DurableCatalogState: ReadOnlyDurableCatalogState {
/// Returns true if the catalog is opened in read only mode, false otherwise.
fn is_read_only(&self) -> bool;
/// Returns true if the catalog is opened is savepoint mode, false otherwise.
fn is_savepoint(&self) -> bool;
/// Creates a new durable catalog state transaction.
async fn transaction(&mut self) -> Result<Transaction, CatalogError>;
/// Commits a durable catalog state transaction.
///
/// Returns the upper that the transaction was committed at.
async fn commit_transaction(
&mut self,
txn_batch: TransactionBatch,
) -> Result<Timestamp, CatalogError>;
/// Confirms that this catalog is connected as the current leader.
///
/// NB: We may remove this in later iterations of Pv2.
async fn confirm_leadership(&mut self) -> Result<(), CatalogError>;
/// Allocates and returns `amount` IDs of `id_type`.
#[mz_ore::instrument(level = "debug")]
async fn allocate_id(&mut self, id_type: &str, amount: u64) -> Result<Vec<u64>, CatalogError> {
if amount == 0 {
return Ok(Vec::new());
}
let mut txn = self.transaction().await?;
let ids = txn.get_and_increment_id_by(id_type.to_string(), amount)?;
txn.commit_internal().await?;
Ok(ids)
}
/// Allocates and returns `amount` system [`CatalogItemId`]s.
async fn allocate_system_ids(
&mut self,
amount: u64,
) -> Result<Vec<(CatalogItemId, GlobalId)>, CatalogError> {
let id = self.allocate_id(SYSTEM_ITEM_ALLOC_KEY, amount).await?;
Ok(id
.into_iter()
.map(|id| (CatalogItemId::System(id), GlobalId::System(id)))
.collect())
}
/// Allocates and returns both a user [`CatalogItemId`] and [`GlobalId`].
async fn allocate_user_id(&mut self) -> Result<(CatalogItemId, GlobalId), CatalogError> {
let id = self.allocate_id(USER_ITEM_ALLOC_KEY, 1).await?;
let id = id.into_element();
Ok((CatalogItemId::User(id), GlobalId::User(id)))
}
/// Allocates and returns a user [`ClusterId`].
async fn allocate_user_cluster_id(&mut self) -> Result<ClusterId, CatalogError> {
let id = self.allocate_id(USER_CLUSTER_ID_ALLOC_KEY, 1).await?;
let id = id.into_element();
Ok(ClusterId::User(id))
}
}
/// A builder to help create an [`OpenableDurableCatalogState`] for tests.
#[derive(Debug, Clone)]
pub struct TestCatalogStateBuilder {
persist_client: PersistClient,
organization_id: Uuid,
version: semver::Version,
deploy_generation: Option<u64>,
metrics: Arc<Metrics>,
}
impl TestCatalogStateBuilder {
pub fn new(persist_client: PersistClient) -> Self {
Self {
persist_client,
organization_id: Uuid::new_v4(),
version: semver::Version::new(0, 0, 0),
deploy_generation: None,
metrics: Arc::new(Metrics::new(&MetricsRegistry::new())),
}
}
pub fn with_organization_id(mut self, organization_id: Uuid) -> Self {
self.organization_id = organization_id;
self
}
pub fn with_version(mut self, version: semver::Version) -> Self {
self.version = version;
self
}
pub fn with_deploy_generation(mut self, deploy_generation: u64) -> Self {
self.deploy_generation = Some(deploy_generation);
self
}
pub fn with_default_deploy_generation(self) -> Self {
self.with_deploy_generation(0)
}
pub fn with_metrics(mut self, metrics: Arc<Metrics>) -> Self {
self.metrics = metrics;
self
}
pub async fn build(self) -> Result<Box<dyn OpenableDurableCatalogState>, DurableCatalogError> {
persist_backed_catalog_state(
self.persist_client,
self.organization_id,
self.version,
self.deploy_generation,
self.metrics,
)
.await
}
pub async fn unwrap_build(self) -> Box<dyn OpenableDurableCatalogState> {
self.expect_build("failed to build").await
}
pub async fn expect_build(self, msg: &str) -> Box<dyn OpenableDurableCatalogState> {
self.build().await.expect(msg)
}
}
/// Creates an openable durable catalog state implemented using persist.
///
/// `deploy_generation` MUST be `Some` to initialize a new catalog.
pub async fn persist_backed_catalog_state(
persist_client: PersistClient,
organization_id: Uuid,
version: semver::Version,
deploy_generation: Option<u64>,
metrics: Arc<Metrics>,
) -> Result<Box<dyn OpenableDurableCatalogState>, DurableCatalogError> {
let state = UnopenedPersistCatalogState::new(
persist_client,
organization_id,
version,
deploy_generation,
metrics,
)
.await?;
Ok(Box::new(state))
}
pub fn test_bootstrap_args() -> BootstrapArgs {
BootstrapArgs {
default_cluster_replica_size: "1".into(),
bootstrap_role: None,
cluster_replica_size_map: ClusterReplicaSizeMap::default(),
}
}