limitations.asciidoc 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. [role="xpack"]
  2. [testenv="basic"]
  3. [[eql-limitations]]
  4. == EQL limitations
  5. ++++
  6. <titleabbrev>Limitations</titleabbrev>
  7. ++++
  8. experimental::[]
  9. [discrete]
  10. [[eql-nested-fields]]
  11. === EQL search on nested fields is not supported
  12. You cannot use EQL to search the values of a <<nested,`nested`>> field or the
  13. sub-fields of a `nested` field. However, data streams and indices containing
  14. `nested` field mappings are otherwise supported.
  15. [discrete]
  16. [[eql-unsupported-syntax]]
  17. === Unsupported syntax
  18. {es} supports a subset of {eql-ref}/index.html[EQL syntax]. {es} cannot run EQL
  19. queries that contain:
  20. * Array functions:
  21. ** {eql-ref}/functions.html#arrayContains[`arrayContains`]
  22. ** {eql-ref}/functions.html#arrayCount[`arrayCount`]
  23. ** {eql-ref}/functions.html#arraySearch[`arraySearch`]
  24. * {eql-ref}/joins.html[Joins]
  25. * {eql-ref}/basic-syntax.html#event-relationships[Lineage-related keywords]:
  26. ** `child of`
  27. ** `descendant of`
  28. ** `event of`
  29. * The following {eql-ref}/pipes.html[pipes]:
  30. ** {eql-ref}/pipes.html#count[`count`]
  31. ** {eql-ref}/pipes.html#filter[`filter`]
  32. ** {eql-ref}/pipes.html#sort[`sort`]
  33. ** {eql-ref}/pipes.html#unique[`unique`]
  34. ** {eql-ref}/pipes.html#unique-count[`unique_count`]