esql-limitations.asciidoc 824 B

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