123456789101112131415161718192021222324252627282930313233343536373839404142 |
- [role="xpack"]
- [testenv="basic"]
- [[eql-limitations]]
- == EQL limitations
- ++++
- <titleabbrev>Limitations</titleabbrev>
- ++++
- experimental::[]
- [discrete]
- [[eql-nested-fields]]
- === EQL search on nested fields is not supported
- You cannot use EQL to search the values of a <<nested,`nested`>> field or the
- sub-fields of a `nested` field. However, indices containing `nested` field
- mappings are otherwise supported.
- [discrete]
- [[eql-unsupported-syntax]]
- === Unsupported syntax
- {es} supports a subset of {eql-ref}/index.html[EQL syntax]. {es} cannot run EQL
- queries that contain:
- * Array functions:
- ** {eql-ref}/functions.html#arrayContains[`arrayContains`]
- ** {eql-ref}/functions.html#arrayCount[`arrayCount`]
- ** {eql-ref}/functions.html#arraySearch[`arraySearch`]
- * {eql-ref}/joins.html[Joins]
- * {eql-ref}/basic-syntax.html#event-relationships[Lineage-related keywords]:
- ** `child of`
- ** `descendant of`
- ** `event of`
- * {eql-ref}/pipes.html[Pipes]
- * {eql-ref}/sequences.html[State and timespan-related sequence keywords]:
- ** `with maxspan`
- ** `until`
|