union() function

The union() function concatenates two or more input streams into a single output stream. In tables that have identical schemas and group keys, contents of the tables will be concatenated in the output stream. The output schemas of the union() function is the union of all input schemas.

union() does not preserve the sort order of the rows within tables. A sort operation may be added if a specific sort order is needed.

*Function type: Transformation
**
Output data type:* Record

  1. union(tables: [table1, table2])

Parameters

tables

Specifies the streams to union together. There must be at least two streams.

*Data type: Array of streams*

Examples

  1. bucket1 = from(bucket: "example-bucket-1")
  2. |> range(start: -5m)
  3. |> filter(fn: (r) => r._field == "usage_guest" or r._field == "usage_guest_nice")
  4. bucket2 = from(bucket: "example-bucket-2")
  5. |> range(start: -5m)
  6. |> filter(fn: (r) => r._field == "usage_guest" or r._field == "usage_idle")
  7. union(tables: [bucket1, bucket2])

union() versus join()

union() merges separate streams of tables into a single stream of tables and groups rows of data based on existing group keys. union() does not modify individual rows of data. join() creates new rows based on common values in one or more specified columns. Output rows also contain the differing values from each of the joined streams.

Given two streams of tables, t1 and t2, the results of join() and union() are illustrated below:

union - 图1

Related articles