Skip to main content
You can use the information_schema.engine_caches view to return information about the caches of each node in the engine.
SELECT
  *
FROM
  information_schema.engine_caches

Columns in information_schema.engine_caches

Each row has the following columns with information about each node in the engine.
Column NameData TypeDescription
cluster_ordinalBIGINTThe ordinal number of the cluster.
node_ordinalBIGINTThe ordinal number of the node.
typeTEXTThe type of the cache, see below for possible values.
num_entriesBIGINTThe number of entries in the cache.
size_bytesBIGINTThe size of the cache in bytes.
entry_size_limit_bytesBIGINTThe size limit of an entry in the cache in bytes.
storageTEXTThe storage type of the cache, currently either ram or ssd.
poolTEXTThe pool of the cache. Entries in the same pool are evicted together.
pool_size_limit_bytesBIGINTThe size limit of the pool in bytes.

Currently reported cache types

TypeDescription
external_scan_filesStores the content of external scan files on the SSD.
external_scan_buffered_filesIn-memory cache for external scan files.
external_scan_files_metadataIn-memory metadata for the files reported through external_scan_files.
history_based_statisticsIn-memory cache for history based statistics about queries.
iceberg_catalogIn-memory cache for the Iceberg catalog.
join_hash_tableIn-memory cache for the hash table used by the Join operator. Part of the query cache.
join_pruningIn-memory cache for join pruning. Part of the query cache.
list_icebergIn-memory cache for file lists of Iceberg tables. Part of the query cache.
materialized_reusableIn-memory cache for CTEs marked as materialized reusable. Part of the query cache.
resultIn-memory result cache. Part of the query cache.
scanIn-memory cache for table scans. Part of the query cache.
unclassifiedAdditional in-memory query cache entries.
vector_indexIn-memory cache for vector indexes.
tabletCaches the tablet files of Firebolt’s managed file format on the SSD.
tablet_metadataIn-memory metadata for the files reported through tablet.
tablet_marksIn-memory cache for tablet marks enabling faster table scan pruning.
tablet_recoveryPartially written tablets.
I