Transformations and Aggregations
Use ingest-time transformations and aggregations when Pinot should normalize or reduce data before it reaches query time.
Last updated
Was this helpful?
Use ingest-time transformations and aggregations when Pinot should normalize or reduce data before it reaches query time.
Ingestion transformations clean up source records before they become Pinot rows. Ingestion aggregations reduce repeated values into fewer rows when a realtime table can safely store the summarized shape instead of the raw event stream.
Use transformations to rename, reshape, extract, filter, or derive fields while ingesting. Keep the logic close to the table so the pipeline stays understandable.
The detailed examples still live in Ingestion Transformations, including geospatial transform functions such as ST_Point and geoToH3.
Use ingestion aggregation when the use case only needs summarized realtime data. This can reduce storage and improve query performance, but it changes the data you keep, so use it only when raw rows are not needed later.
The detailed examples still live in Ingestion Aggregations.
This page covered when to transform or aggregate data during ingestion instead of waiting for query time.
Read the reference pages if you need the exact ingestion-config fields or table-config JSON.
Last updated
Was this helpful?
Was this helpful?

