mirror of
https://github.com/elastic/elasticsearch.git
synced 2025-04-25 23:57:20 -04:00
ES|QL: Set default query LIMIT to 1000 (#105618)
This commit is contained in:
parent
7cbdb6cc19
commit
f06a580eb7
15 changed files with 218 additions and 213 deletions
|
@ -26,7 +26,7 @@ corresponds to a field, and can be accessed by the name of that field.
|
|||
[NOTE]
|
||||
====
|
||||
By default, an {esql} query without an explicit <<esql-limit>> uses an implicit
|
||||
limit of 500. This applies to `FROM` too. A `FROM` command without `LIMIT`:
|
||||
limit of 1000. This applies to `FROM` too. A `FROM` command without `LIMIT`:
|
||||
|
||||
[source,esql]
|
||||
----
|
||||
|
@ -38,7 +38,7 @@ is executed as:
|
|||
[source,esql]
|
||||
----
|
||||
FROM employees
|
||||
| LIMIT 500
|
||||
| LIMIT 1000
|
||||
----
|
||||
====
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue