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
Contains information about memory allocations done via jemalloc allocator in different size classes (bins) aggregated from all arenas. These statistics might not be absolutely accurate because of thread local caching in jemalloc.Columns
index(UInt16) — Index of the bin ordered by size.large(UInt8) — True for large allocations and False for small.size(UInt64) — Size of allocations in this bin.allocations(Int64) — Number of allocations.deallocations(Int64) — Number of deallocations.nregs(Int64) — Number of regions per slab.curslabs(Int64) — Current number of slabs.curregs(Int64) — Current number of regions for this size class.
availregs— Alias fornregs * curslabs.util— Alias forcurregs / availregs.