esql-limitations.asciidoc 690 B

1234567891011121314151617181920212223242526272829303132
  1. [[esql-limitations]]
  2. == {esql} limitations
  3. ++++
  4. <titleabbrev>Limitations</titleabbrev>
  5. ++++
  6. [discrete]
  7. [[esql-supported-types]]
  8. === Supported types
  9. * {esql} currently supports the following <<mapping-types,field types>>:
  10. ** `alias`
  11. ** `boolean`
  12. ** `date`
  13. ** `double` (`float`, `half_float`, `scaled_float` are represented as `double`)
  14. ** `ip`
  15. ** `keyword` family including `keyword`, `constant_keyword`, and `wildcard`
  16. ** `int` (`short` and `byte` are represented as `int`)
  17. ** `long`
  18. ** `null`
  19. ** `text`
  20. ** `unsigned_long`
  21. ** `version`
  22. [discrete]
  23. [[esql-max-rows]]
  24. === 10,000 row maximum
  25. A single query will not return more than 10,000 rows, regardless of the
  26. `LIMIT` command's value.