---
search:
  exclude: true
---

# <a id="bitdrift.public.shared.workflows.v1.CardinalityOverflows"></a>CardinalityOverflows

**Source definition:** [`src/bitdrift/public/shared/workflows/v1/time_series.proto#L57-L71`](<https://github.com/bitdriftlabs/api/blob/main/src/bitdrift/public/shared/workflows/v1/time_series.proto#L57-L71>)

<section class="proto-fields-table" markdown>
| Field | Type | Description |
|---|---|---|
| total_overflows | <span class="proto-type proto-type-primitive">uint64</span> | The number of records that exceeded the total cardinality limit for the  action ID, including platform and app ID. |
| group_by_overflows | <span class="proto-type proto-type-primitive">uint64</span> | 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 | <span class="proto-type proto-type-primitive">bool</span> | 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. |

</section>
#### Example
```json
{
  "group_by_overflows": 1,
  "query_group_by_collapsed": false,
  "total_overflows": 42
}
```

