Skip to content

Commit c1d69ec

Browse files
kkrik-esleemthompo
andauthored
[DOCS] Update ESQL limitations to remove TSDB metrics (elastic#137390)
* Update ESQL limitations to remove TSDB metrics Removed unsupported TSDB metric types from documentation. * Revise TSDB metrics support in ESQL limitations Update ESQL limitations documentation to reflect support for TSDB metrics in version 9.3. without deleting info for pre-9.3 users * Update limitations.md * Update TSDB metrics preview version in limitations.md * Replace 'position' with 'gauge' in TSDB metrics Updated TSDB metrics section to replace 'position' with 'gauge'. * Update limitations.md with time series data streams info Added information about time series data streams support in ESQL. * Revise heading for time series data streams Updated heading for time series data streams section. --------- Co-authored-by: Liam Thompson <[email protected]>
1 parent ddb1502 commit c1d69ec

File tree

1 file changed

+22
-8
lines changed

1 file changed

+22
-8
lines changed

docs/reference/query-languages/esql/limitations.md

Lines changed: 22 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -46,19 +46,28 @@ By default, an {{esql}} query returns up to 1,000 rows. You can increase the num
4646
* `geo_shape`
4747
* `point`
4848
* `shape`
49+
* TSDB metrics {preview}`9.2`
50+
* `counter`
51+
* `gauge`
52+
* `aggregate_metric_double`
4953

5054

5155

5256
### Unsupported types [_unsupported_types]
5357

5458
{{esql}} does not yet support the following field types:
5559

60+
::::{tab-set}
61+
:::{tab-item} 9.0-9.1
5662
* TSDB metrics
57-
58-
* `counter`
59-
* `position`
60-
* `aggregate_metric_double`
61-
63+
* `counter`
64+
* `gauge`
65+
* `aggregate_metric_double`
66+
:::
67+
:::{tab-item} 9.2+
68+
This limitation no longer exists and TSDB metrics are now supported (preview).
69+
:::
70+
::::
6271
* Date/time
6372

6473
* `date_range`
@@ -188,11 +197,16 @@ As discussed in more detail in [Using {{esql}} to query multiple indices](/refer
188197
* All underlying indexes and shards must be active. Using admin commands or UI, it is possible to pause an index or shard, for example by disabling a frozen tier instance, but then any {{esql}} query that includes that index or shard will fail, even if the query uses [`WHERE`](/reference/query-languages/esql/commands/where.md) to filter out the results from the paused index. If you see an error of type `search_phase_execution_exception`, with the message `Search rejected due to missing shards`, you likely have an index or shard in `UNASSIGNED` state.
189198
* The same field must have the same type across all indexes. If the same field is mapped to different types it is still possible to query the indexes, but the field must be [explicitly converted to a single type](/reference/query-languages/esql/esql-multi-index.md#esql-multi-index-union-types).
190199

200+
## Time series data streams [esql-tsdb]
191201

192-
## Time series data streams are not supported [esql-tsdb]
193-
202+
::::{tab-set}
203+
:::{tab-item} 9.0-9.1
194204
{{esql}} does not support querying time series data streams (TSDS).
195-
205+
:::
206+
:::{tab-item} 9.2+
207+
This limitation no longer exists and time series data streams (TSDS) are now supported (preview).
208+
:::
209+
::::
196210

197211
## Date math limitations [esql-limitations-date-math]
198212

0 commit comments

Comments
 (0)