Important
The SingleStore 9.1 release candidate (RC) gives you the opportunity to preview, evaluate, and provide feedback on new and upcoming features prior to their general availability. In the interim, SingleStore 9.0 is recommended for production workloads, which can later be upgraded to SingleStore 9.1.
CROSS_ QUERY_ STATS_ CACHE
This view contains metadata about cross query stats cache entries for the connected aggregator.
Example:
SELECT * FROM information_schema.cross_query_stats_cache;
| HASH | ROWCOUNT_INITIALIZED | ROWCOUNT | LAST_HIT_TIME | LAST_UPDATE_TIME | ADDED_TIME | HIT_COUNT | QUERY_TEXT |
|---------------------|----------------------|----------|---------------|------------------|------------|-----------|-----------------------------------------------------|
| -128073634921048162 | 1 | 10 | 677 | 677 | 657 | 17 | SELECT COUNT(*) FROM 'xx' /*sampling_query*/ ... ||
Column Name |
Description |
|---|---|
|
|
64‑bit hash of the query or subquery shape used as the cache key; matches the |
|
|
Boolean flag indicating whether the entry has a rowcount associated with it. |
|
|
Rowcount associated with the entry. |
|
|
The last time the entry was used, either by reading from it or writing to it. |
|
|
The last time the entry was written to. |
|
|
The time the entry was created. |
|
|
Total number of times the entry has been written to and read from once rowcounts have been initialized. |
|
|
This column is empty by default to save memory. |
All time columns use a tick count from server startup rather than Unix timestamps.
Last modified: