|
@@ -92,6 +92,11 @@ POST /_query?format=txt
|
|
|
----
|
|
|
// TEST[setup:library]
|
|
|
|
|
|
+The above query's `LIMIT` command limits results to 5 rows.
|
|
|
+
|
|
|
+If not specified, `LIMIT` defaults to `500`. A single query will not return
|
|
|
+more than 10,000 rows, regardless of the `LIMIT` value.
|
|
|
+
|
|
|
[discrete]
|
|
|
==== {kib}
|
|
|
|
|
@@ -105,20 +110,23 @@ with the time filter.
|
|
|
[[esql-limitations]]
|
|
|
=== Limitations
|
|
|
|
|
|
-{esql} currently supports the following <<mapping-types,field types>>:
|
|
|
-
|
|
|
-- `alias`
|
|
|
-- `boolean`
|
|
|
-- `date`
|
|
|
-- `double` (`float`, `half_float`, `scaled_float` are represented as `double`)
|
|
|
-- `ip`
|
|
|
-- `keyword` family including `keyword`, `constant_keyword`, and `wildcard`
|
|
|
-- `int` (`short` and `byte` are represented as `int`)
|
|
|
-- `long`
|
|
|
-- `null`
|
|
|
-- `text`
|
|
|
-- `unsigned_long`
|
|
|
-- `version`
|
|
|
+* {esql} currently supports the following <<mapping-types,field types>>:
|
|
|
+
|
|
|
+** `alias`
|
|
|
+** `boolean`
|
|
|
+** `date`
|
|
|
+** `double` (`float`, `half_float`, `scaled_float` are represented as `double`)
|
|
|
+** `ip`
|
|
|
+** `keyword` family including `keyword`, `constant_keyword`, and `wildcard`
|
|
|
+** `int` (`short` and `byte` are represented as `int`)
|
|
|
+** `long`
|
|
|
+** `null`
|
|
|
+** `text`
|
|
|
+** `unsigned_long`
|
|
|
+** `version`
|
|
|
+
|
|
|
+* A single query will not return more than 10,000 rows, regardless of the
|
|
|
+`LIMIT` command's value.
|
|
|
--
|
|
|
|
|
|
include::esql-get-started.asciidoc[]
|