Skip to content
View as Markdown

CardinalityOverflows

Field Type Description
total_overflows uint64 The number of records that exceeded the total cardinality limit for the action ID, including platform and app ID.
group_by_overflows uint64 The number of records that exceeded only the group-by limit for the action ID. This can include both client-side and server-side overflows.
query_group_by_collapsed bool If true, the query detected very high cardinality for a group-by request and returned a collapsed result to avoid excessive memory use. Clients should indicate that the group-by was collapsed and may offer example cardinality details.

Example

JSON
{
  "group_by_overflows": 1,
  "query_group_by_collapsed": false,
  "total_overflows": 42
}