You're viewing version 2.19 of the OpenSearch documentation. For the latest version, see the current documentation. For information about OpenSearch version maintenance, see Release Schedule and Maintenance Policy.
Limitations
The SQL plugin has the following limitations:
Aggregation over expression is not supported
You can only apply aggregation to fields. Aggregations cannot accept an expression as a parameter. For example, avg(log(age)) is not supported.
Subquery in the FROM clause
Subquery in the FROM clause in this format: SELECT outer FROM (SELECT inner) is supported only when the query is merged into one query. For example, the following query is supported:
SELECT t.f, t.d
FROM (
SELECT FlightNum as f, DestCountry as d
FROM opensearch_dashboards_sample_data_flights
WHERE OriginCountry = 'US') t
But, if the outer query has GROUP BY or ORDER BY, then it’s not supported.
JOIN queries
Because OpenSearch doesn’t natively support relational operations, JOIN queries are supported on a best-effort basis.
JOIN does not support aggregations on the joined result
The JOIN query does not support aggregations on the joined result.
For example, SELECT depo.name, avg(empo.age) FROM empo JOIN depo WHERE empo.id = depo.id GROUP BY depo.name is not supported.
Performance
JOIN queries are prone to expensive index scanning operations.
JOIN queries may experience performance issues when working with result sets larger than 5 million matching records. To improve JOIN performance, reduce the number of records being joined by filtering your data first. For example, limit the join to a specific range of key values:
SELECT l.key, l.spanId, r.spanId
FROM logs_left AS l
JOIN logs_right AS r
ON l.key = r.key
WHERE l.key >= 17491637400000
AND l.key < 17491637500000
AND r.key >= 17491637400000
AND r.key < 17491637500000
LIMIT 10
By default, JOIN queries will automatically terminate after 60 seconds to prevent excessive resource consumption. You can adjust this timeout period using a hint in your query. For example, to set a 5-minute (300-second) timeout, use the following code:
SELECT /*! JOIN_TIME_OUT(300) */ left.a, right.b FROM left JOIN right ON left.id = right.id;
These performance restrictions don’t apply when querying external data sources.
Pagination only supports basic queries
The pagination query enables you to get back paginated responses.
Currently, the pagination only supports basic queries. For example, the following query returns the data with cursor id.
POST _plugins/_sql/
{
"fetch_size" : 5,
"query" : "SELECT OriginCountry, DestCountry FROM opensearch_dashboards_sample_data_flights ORDER BY OriginCountry ASC"
}
The response in JDBC format with cursor id.
{
"schema": [
{
"name": "OriginCountry",
"type": "keyword"
},
{
"name": "DestCountry",
"type": "keyword"
}
],
"cursor": "d:eyJhIjp7fSwicyI6IkRYRjFaWEo1UVc1a1JtVjBZMmdCQUFBQUFBQUFCSllXVTJKVU4yeExiWEJSUkhsNFVrdDVXVEZSYkVKSmR3PT0iLCJjIjpbeyJuYW1lIjoiT3JpZ2luQ291bnRyeSIsInR5cGUiOiJrZXl3b3JkIn0seyJuYW1lIjoiRGVzdENvdW50cnkiLCJ0eXBlIjoia2V5d29yZCJ9XSwiZiI6MSwiaSI6ImtpYmFuYV9zYW1wbGVfZGF0YV9mbGlnaHRzIiwibCI6MTMwNTh9",
"total": 13059,
"datarows": [[
"AE",
"CN"
]],
"size": 1,
"status": 200
}
The query with aggregation and join does not support pagination for now.
Query processing engines
The SQL plugin has two query processing engines, V1 and V2. Most of the features are supported by both engines, but only the new engine is actively being developed. A query that is first executed on the V2 engine falls back to the V1 engine in case of failure. If a query is supported in V2 but not included in V1, the query will fail with an error response.
V1 engine limitations
- The select literal expression without
FROMclause is not supported. For example,SELECT 1is not supported. - The
WHEREclause does not support expressions. For example,SELECT FlightNum FROM opensearch_dashboards_sample_data_flights where (AvgTicketPrice + 100) <= 1000is not supported. - Most relevancy search functions are implemented in the
V2engine only.
Such queries are successfully executed by the V2 engine unless they have V1-specific functions. You will likely never meet these limitations.
V2 engine limitations
- The cursor feature is supported by the
V1engine only.- For support of
cursor/paginationin theV2engine, track GitHub issue #656.
- For support of
jsonformatted output is supported inV1engine only.- The
V2engine does not track query execution time, so slow queries are not reported. - The
V2query engine not only runs queries in the OpenSearch engine but also supports post-processing for complex queries. Accordingly, theexplainoutput is no longer OpenSearch domain-specific language (DSL) but also includes query plan information from theV2query engine. - The
V2query engine does not support aggregation queries such ashistogram,date_histogram,percentiles,topHits,stats,extended_stats,terms, orrange. - JOINs and sub-queries are not supported. To stay up to date on the development for JOINs and sub-queries, track GitHub issue #1441 and GitHub issue #892.
- OpenSearch does not natively support the array data type but does allow multi-value fields implicitly. The SQL/PPL plugin adheres strictly to the data type semantics defined in index mappings. When parsing OpenSearch responses, it expects data to match the declared type and does not interpret all data in an array. If the
plugins.query.field_type_tolerancesetting is enabled, the SQL/PPL plugin handles array datasets by returning scalar data types, allowing basic queries (for example,SELECT * FROM tbl WHERE condition). However, using multi-value fields in expressions or functions will result in exceptions. If this setting is disabled or not set, only the first element of an array is returned, preserving the default behavior. - PartiQL syntax for
nestedqueries is not supported.