The new ES|QL execution engine was designed with performance in mind — it operates on blocks at a time instead of per row, targets vectorization and cache locality, and embraces specialization and multi-threading. It is a separate component from the existing Elasticsearch aggregation framework with different performance characteristics.
Slide 10
Query planner ✓ Flexible distributed execution ✓ Allow multiple roundtrips ES|QL Query
Parsing
Unresolved AST
Resolved/Logical Plan
Analysis
Optimized Plan
Planning
Physical Plan
Local Replanning
Execution
Results
Slide 11
Compute engine ✓ Tabular data representation ✓ From 1 thread per shard to many ✓ Spilling to disk if needed ✓ Streaming of data across nodes
Slide 12
Vectorization “convert from a scalar implementation, which processes a single pair of operands at a time, to a vector implementation, which processes one operation on multiple pairs of operands at once. “ for (i = 0; i < n; i++) c[i] = a[i] + b[i];
https://en.wikipedia.org/wiki/Automatic_vectorization
o
e d li
ES|QL in action https://github.com/dadoonet/esql-demo
s
& s
m e d
Slide 15
PROJECTIONS
Each language client will offer a selection of projections relevant to that language ecosystem.
RESULT DATA
Ways to consume ES|QL results
Users can consume raw data directly from the server output in one of several formats.
DataFrame
Object / Dict
Cursor
For mapping domain objects within a client application
For incremental consumption of results, with implicit pagination
For data science and analytics; integration with frameworks like Pandas
Text
CSV
JSON
Human-readable format ideal for interactive work, CLIs, etc
Raw CSV data to load directly into spreadsheets and ETL processes
Structured response containing metadata and data in a 2D value array
Bring your own Custom projections built atop raw server output
Apache Arrow Dataframe IPC format
Slide 16
Object API https://github.com/dadoonet/elasticsearch-java-client-demo String query = “”” FROM persons | WHERE name == “David” | KEEP name | LIMIT 1 “”“; Iterable<Person> persons = client.esql() .query(ObjectsEsqlAdapter.of(Person.class), query); for (Person person : persons) { assertNull(person.getId()); assertNotNull(person.getName()); }
Slide 17
ResultSet JDBC API https://github.com/dadoonet/elasticsearch-java-client-demo String query = “”” FROM persons | WHERE name == “David” | KEEP name | LIMIT 1 “”“; try (ResultSet resultSet = client.esql() .query(ResultSetEsqlAdapter.INSTANCE, query)) { assertTrue(resultSet.next()); assertEquals(“David”, resultSet.getString(1)); }
Slide 18
POST /_query
8. 16
{ “query”: “”” from logs-* | stats x = ?function(?field) by ?breakdownField
A better dashboard experience with named parameters
| where x >= ?value “”“, “params”: [ {“function” : {“identifier” : “avg”}}, {“field” : {“identifier” : “network.bytes”}}, {“breakdownField” : {“identifier” : “agent.name”}}, {“value”: 1000} ] }
Slide 19
TD
B
Slide 20
TD
B
Slide 21
TD
B
Slide 22
17
Coming next
WHERE MATCH(actors, “Marlon*”) WHERE QSTR(“bytes:[1024 TO 2048]”)
Slide 23
18
Coming next
WHERE KQL(“bytes>=1024”)
Slide 24
TB joinType JOIN indexName (AS qualifier)? condition? joinType: LOOKUP | LEFT | RIGHT | INNER condition: ON identifier == identifier | USING identifier
JOINS!
INLINESTATS total_visits = COUNT() FROM employees | SORT emp_no | LOOKUP JOIN languages_lookup ON language_code | KEEP emp_no, language_name
● No need to create an enrich policy ● A drag and drop experience in the UI
D
Slide 25
Elasticsearch Query Language ES|QL
o
s
e d li
David Pilato - @dadoonet Developer | Evangelist
& s
m e d