Skip to content

Latest commit

 

History

History
78 lines (58 loc) · 1.82 KB

head.rst

File metadata and controls

78 lines (58 loc) · 1.82 KB

head

Table of contents

The head command returns the first N number of specified results after an optional offset in search order.

head [<size>] [from <offset>]

  • <size>: optional integer. number of results to return. Default: 10
  • <offset>: integer after optional from. number of results to skip. Default: 0

The example show maximum 10 results from accounts index.

PPL query:

os> source=accounts | fields firstname, age | head;
fetched rows / total rows = 4/4
+-----------+-----+
| firstname | age |
|-----------+-----|
| Amber     | 32  |
| Hattie    | 36  |
| Nanette   | 28  |
| Dale      | 33  |
+-----------+-----+

The example show first N results from accounts index.

PPL query:

os> source=accounts | fields firstname, age | head 3;
fetched rows / total rows = 3/3
+-----------+-----+
| firstname | age |
|-----------+-----|
| Amber     | 32  |
| Hattie    | 36  |
| Nanette   | 28  |
+-----------+-----+

The example show first N results after offset M from accounts index.

PPL query:

os> source=accounts | fields firstname, age | head 3 from 1;
fetched rows / total rows = 3/3
+-----------+-----+
| firstname | age |
|-----------+-----|
| Hattie    | 36  |
| Nanette   | 28  |
| Dale      | 33  |
+-----------+-----+

The head command is not rewritten to OpenSearch DSL, it is only executed on the coordination node.