Documentation Index
Fetch the complete documentation index at: https://private-7c7dfe99-page-updates.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Querying in ClickHouse CloudThe data in this system table is held locally on each node in ClickHouse Cloud. Obtaining a complete view of all data, therefore, requires the
clusterAllReplicas function. See here for further details.Description
Information about Refreshable Materialized Views. Contains all refreshable materialized views, regardless of whether there’s a refresh in progress or not.Columns
database(String) — The name of the database the table is in.view(String) — Table name.uuid(UUID) — Table uuid (Atomic database).status(String) — Current state of the refresh.last_success_time(Nullable(DateTime)) — Time when the latest successful refresh started. NULL if no successful refreshes happened since server startup or table creation.last_success_duration_ms(Nullable(UInt64)) — How long the latest refresh took.last_refresh_time(Nullable(DateTime)) — Time when the latest refresh attempt finished (if known) or started (if unknown or still running). NULL if no refresh attempts happened since server startup or table creation.last_refresh_replica(String) — If coordination is enabled, name of the replica that made the current (if running) or previous (if not running) refresh attempt.next_refresh_time(Nullable(DateTime)) — Time at which the next refresh is scheduled to start, if status = Scheduled.exception(String) — Error message from previous attempt if it failed.retry(UInt64) — How many failed attempts there were so far, for the current refresh. Not available if status isRunningOnAnotherReplica.progress(Nullable(Float64)) — Progress of the current running or most recently completed refresh at the given replica, between 0 and 1. NULL if status isRunningOnAnotherReplicaor the refresh is not running.read_rows(Nullable(UInt64)) — Number of rows read by the current running or most recently completed refresh at the given replica. NULL if status isRunningOnAnotherReplica.read_bytes(Nullable(UInt64)) — Number of bytes read by the current running or most recently completed refresh at the given replica. NULL if status isRunningOnAnotherReplicatotal_rows(Nullable(UInt64)) — Estimated total number of rows that need to be read by the current running or most recently completed refresh at the given replica. NULL if status isRunningOnAnotherReplicawritten_rows(Nullable(UInt64)) — Number of rows written by the current running or most recently completed refresh at the given replica. NULL if status isRunningOnAnotherReplicawritten_bytes(Nullable(UInt64)) — Number of bytes written by the current running or most recently completed refresh at the given replica. NULL if status isRunningOnAnotherReplica