Behavior for a Stream without a Window?

What is the expected behavior if you write a TICKscript that gets its data from a stream, but has no window() node to define the rolling window of time for the data it analyzes?

Hi!

If you don’t include the .window() to define a rolling window of time for the data, the TICKscript will just process the data as each data point is written to Influx.

However, if you don’t define a window of time, you wouldn’t be able to perform aggregate transformations on the data (such as mean, or sum, etc.) that require a defined time interval. These are often exactly the types of transformations users need to perform.

1 Like

OK. Thanks for the quick reply.