Optimize Flux queries

Optimize your Flux queries to reduce their memory and compute (CPU) requirements.

Start queries with pushdown functions

Some Flux functions can push their data manipulation down to the underlying data source rather than storing and manipulating data in memory. These are known as “pushdown” functions and using them correctly can greatly reduce the amount of memory necessary to run a query.

Pushdown functions

Use pushdown functions at the beginning of your query. Once a non-pushdown function runs, Flux pulls data into memory and runs all subsequent operations there.

Pushdown functions in use
  1. from(bucket: "example-bucket")
  2. |> range(start: -1h) //
  3. |> filter(fn: (r) => r.sensor == "abc123") // Pushed to the data source
  4. |> group(columns: ["_field", "host"]) //
  5. |> aggregateWindow(every: 5m, fn: max) // Run in memory
  6. |> filter(fn: (r) => r._value >= 90.0) //
  7. |> top(n: 10) //

Avoid short window durations

Windowing (grouping data based on time intervals) is commonly used to aggregate and downsample data. Increase performance by avoiding short window durations. More windows require more compute power to evaluate which window each row should be assigned to. Reasonable window durations depend on the total time range queried.

Use “heavy” functions sparingly

The following functions use more memory or CPU than others. Consider their necessity in your data processing before using them:

We’re continually optimizing Flux and this list may not represent its current state.

Balance time range and data precision

To ensure queries are performant, balance the time range and the precision of your data. For example, if you query data stored every second and request six months worth of data, results will include a minimum of ≈15.5 million points. Flux must store these points in memory to generate a response.

To query data over large periods of time, create a task to downsample data, and then query the downsampled data instead.

query