Step: Limit
Overview
The Limit step reduces the table to a set number of rows.
Example starting data:
/*---------+--------*
| student | score |
+---------+--------+
| jane | 83 |
| neal | 35 |
| sam | 74 |
| pat | 62 |
*---------+--------*/Example output data:
Limit to 2 rows
/*---------+--------*
| student | score |
+---------+--------+
| jane | 83 |
| neal | 35 |
*---------+--------*/Step structure

There will be one limit block where you define a limit.
Field definitions
Limit
The number of rows you would like your output data to contain.
The limit step is non-deterministic if the result set isn't ordered. Different rows may be returned from subsequent queries.
Example
Let's say we are doing initial exploratory work on data. We did a number of complex steps and want to quickly execute the query, so we can iterate.
Starting data:
Input fields:

Output data:
Last updated
Was this helpful?

