# Beam Window

## <img src="/files/qH8zFg0uJKQ1lM9410eW" alt="" data-size="line"> Beam Window

### Description <a href="#description" id="description"></a>

The Beam Window transform adds event-time-based window functions using the Beam execution engine.

| Hop Engine | X            |
| ---------- | ------------ |
| Spark      | <sup>✓</sup> |
| Flink      | <sup>✓</sup> |
| Dataflow   | <sup>✓</sup> |

### Options

| Option                            | Description                                                             |
| --------------------------------- | ----------------------------------------------------------------------- |
| Transform name                    | Name of the transform, this name has to be unique in a single pipeline. |
| Window type                       | <ul><li>Fixed</li><li>Sliding</li><li>Session</li><li>Global</li></ul>  |
| Window size (duration in seconds) | Sets the window duration size in seconds, default 60.                   |
| Every x seconds (Sliding windows) | Sets the slide window duration in seconds.                              |
| Window start field                | The field containing the window start time.                             |
| Window end field                  | The field containing the window end time.                               |
| Window max field                  | The field containing the max duration between events.                   |

### Window Types

#### Fixed

Fixed or tumbling windows are used to repeatedly segment data into distinct time segments and do not overlap. Events cannot belong to more than one window.

#### Sliding

Sliding windows produce an output only when an event occurs and continuously move forward. Every window will have at least one event and can overlap. Events can belong to more than one window.

#### Session

Session windows group events which arrive at similar times and filter out periods of time when there is no data.

The window begins when the first event occurs and extends to include new events within a specified timeout. If events keep occurring the window will keep extending until maximum duration is reached.

#### Global

Global windowing is the default in Beam and ignores event time (spanning all of event time) and uses triggers to provide snapshots of that window.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.primeur.com/data-shaper-1.21/knowing-the-data-shaper-designer/pipelines/transforms/beamwindow.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
