UD_AGGREGATION

Description

This table stores aggregation definitions for real-time analytics calculations.

Columns

Column Name Data Type Description
ID BIGINT The unique identifier for the aggregation.
NAME VARCHAR(255) The name of the aggregation.
AGGREGATION_KIND VARCHAR(100) The type of aggregation (e.g., SUM, COUNT, AVG).
VALUE BIGINT The numeric value for the aggregation.
VALUE_ATTRIBUTE VARCHAR(255) The attribute name to be aggregated.
TUPLE_FILTER TEXT The filter expression to apply on tuples.
GROUP_BY_ATTRIBUTES TEXT The attributes to group by for aggregation.
IS_SYSTEM_DEFINED BIT Indicates if the aggregation is system-defined.
FEED_ID BIGINT The feed ID associated with the aggregation.
CREATED_DATE DATETIME The date and time when the record was created.
CREATED_BY BIGINT The user ID who created the record.
UPDATED_DATE DATETIME The date and time when the record was last updated.
UPDATED_BY BIGINT The user ID who last updated the record.