Skip to main content

Aggregate to earliest or latest value

When you ingest data into Imply Polaris, you can aggregate, or roll up, individual records to store as a single record. For a string or numeric input field, you can use an input expression to store the input field's value that corresponds to the earliest or latest timestamp for the set of aggregated rows. The ingested field populates a measure in an aggregate table.

This topic shows you how to ingest the earliest or latest value of an input field into a table.

Function reference

Use the following functions to aggregate the earliest or latest data for a given input field:

  • EARLIEST_BY(expr, timestampExpr)
  • LATEST_BY(expr, timestampExpr)

The first parameter is the string or numeric input field to aggregate. The second parameter is the timestamp expression to evaluate for the earliest or latest time.

To generate the timestamp expression:

  • If you have a string input field with ISO 8601 timestamps, use the function TIME_PARSE(expr).
  • If you have a long input field with milliseconds since Unix epoch timestamps, use the function MILLIS_TO_TIMESTAMP(expr).

The result of the aggregation is a JSON object that resembles the following:

{
"lhs": 1704070018771,
"rhs": 5
}

The lhs value is the reference time for the aggregation in milliseconds since Unix epoch. The rhs value is the aggregated result.

For details on each function, including an optional parameter to control how many bytes to allow for aggregation, see Druid SQL aggregation functions.

note

Polaris does not support ingesting with the EARLIEST and LATEST aggregation functions.

Example

Consider the following simplified example with three input fields, event_time which gets mapped to __time, response_time, and score. When the following data is rolled up by DAY, all of the records get aggregated to a single table row.

event_timeresponse_timescore
2024-01-01T00:46:58.771Z2024-01-04T00:46:58.771Z5
2024-01-01T01:46:58.771Z2024-01-03T00:46:58.771Z2
2024-01-01T02:46:58.771Z2024-01-09T00:46:58.771Z9
2024-01-01T03:46:58.771Z2024-01-06T00:46:58.771Z0

The following input expression for the score measure stores the value 5:

EARLIEST_BY("score", TIME_PARSE("event_time"))

The following input expression for the score measure stores the value 0:

LATEST_BY("score", TIME_PARSE("event_time"))

The following input expression for the score measure stores the value 2:

EARLIEST_BY("score", TIME_PARSE("response_time"))

The following input expression for the score measure stores the value 9:

LATEST_BY("score", TIME_PARSE("response_time"))

Ingest earliest or latest value

This section shows you how to apply input expressions to ingest the earliest and latest values based on the primary timestamp and another reference timestamp.

You ingest the data shown in the preceding example and create four additional measures in the table:

  • score_earliest: Stores the earliest value of score with respect to event_time.
  • score_latest: Stores the latest value of score with respect to event_time.
  • score_response_earliest: Stores the earliest value of score with respect to response_time.
  • score_response_latest: Stores the latest value of score with respect to response_time.

Follow along with the example using these steps:

  1. Download this CSV file containing the sample input data.

  2. Click Tables from the left navigation menu of the Polaris UI.

  3. Click Create table.

  4. Enter Earliest demo, select the Aggregate table type, and select the Flexible schema mode. Click Next.

  5. From the table view, click Load data > Insert data.

  6. Click the Files source. Upload and select the file you downloaded, earliest.csv.

  7. Click Next > Continue.

  8. In the Map source to table step, click Add column from the menu bar.

  9. In the Column details dialog, complete the following:

    • Click the toggle to declare the column.
    • Column type: Measure
    • Data type: Long string pair
    • Name: score_earliest
    • Input expression: EARLIEST_BY("score", TIME_PARSE("event_time"))
  10. Repeat the previous step with the following names and input expressions:

    • score_latest: LATEST_BY("score", TIME_PARSE("event_time"))
    • score_response_earliest: EARLIEST_BY("score", TIME_PARSE("response_time"))
    • score_response_latest: LATEST_BY("score", TIME_PARSE("response_time"))
  11. Hover over the response_time column and click Edit > Remove. Repeat this step to remove the score column.

  12. Hover over the primary timestamp column, and click Edit. In the timestamp dialog, select Day from the Time granularity drop-down. This tells Polaris to bucket the timestamps of the original input data by day.

  13. Click Apply. Your table should resemble the following:

    Earliest demo mapping

  14. Click Start ingestion.

  15. View the table you just ingested. Note that all four input rows were aggregated to a single row in the table. The values of the new columns match the aggregated values described in the example.

Learn more

For more information, see the following topics: