You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/reference/aggregations/search-aggregations-bucket-adjacency-matrix-aggregation.md
-2Lines changed: 0 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -99,8 +99,6 @@ The response contains buckets with document counts for each filter and combinati
99
99
: (Required, [Query DSL object](/reference/query-languages/querydsl.md)) Query used to filter documents. The key is the filter name.
100
100
101
101
At least one filter is required. The total number of filters cannot exceed the [`indices.query.bool.max_clause_count`](/reference/elasticsearch/configuration-reference/search-settings.md#indices-query-bool-max-clause-count) setting. See [Filter limits](#adjacency-matrix-agg-filter-limits).
Copy file name to clipboardExpand all lines: docs/reference/aggregations/search-aggregations-bucket-categorize-text-aggregation.md
+2-3Lines changed: 2 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,8 @@ The algorithm used for categorization was completely changed in version 8.3.0. A
26
26
27
27
The `categorization_analyzer` field can be specified either as a string or as an object. If it is a string it must refer to a [built-in analyzer](/reference/text-analysis/analyzer-reference.md) or one added by another plugin. If it is an object it has the following properties:
28
28
29
-
:::::{dropdown} Properties of categorization_analyzer
29
+
**Properties of `categorization_analyzer`**:
30
+
30
31
`char_filter`
31
32
: (array of strings or objects) One or more [character filters](/reference/text-analysis/character-filter-reference.md). In addition to the built-in character filters, other plugins can provide more character filters. This property is optional. If it is not specified, no character filters are applied prior to categorization. If you are customizing some other aspect of the analyzer and you need to achieve the equivalent of `categorization_filters` (which are not permitted when some other aspect of the analyzer is customized), add them here as [pattern replace character filters](/reference/text-analysis/analysis-pattern-replace-charfilter.md).
32
33
@@ -41,8 +42,6 @@ The algorithm used for categorization was completely changed in version 8.3.0. A
41
42
`filter`
42
43
: (array of strings or objects) One or more [token filters](/reference/text-analysis/token-filter-reference.md). In addition to the built-in token filters, other plugins can provide more token filters. This property is optional. If it is not specified, no token filters are applied prior to categorization.
43
44
44
-
:::::
45
-
46
45
47
46
`categorization_filters`
48
47
: (Optional, array of strings) This property expects an array of regular expressions. The expressions are used to filter out matching sequences from the categorization field values. You can use this functionality to fine tune the categorization by excluding sequences from consideration when categories are defined. For example, you can exclude SQL statements that appear in your log files. This property cannot be used at the same time as `categorization_analyzer`. If you only want to define simple regular expression filters that are applied prior to tokenization, setting this property is the easiest method. If you also want to customize the tokenizer or post-tokenization filtering, use the `categorization_analyzer` property instead and include the filters as `pattern_replace` character filters.
Copy file name to clipboardExpand all lines: docs/reference/aggregations/search-aggregations-change-point-aggregation.md
+2-3Lines changed: 2 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -46,15 +46,14 @@ A `change_point` aggregation looks like this in isolation:
46
46
`bucket`
47
47
: (Optional, object) Values of the bucket that indicates the discovered change point. Not returned if no change point was found. All the aggregations in the bucket are returned as well.
48
48
49
-
::::{dropdown} Properties of bucket
49
+
**Properties of `bucket**:
50
+
50
51
`key`
51
52
: (value) The key of the bucket matched. Could be string or numeric.
52
53
53
54
`doc_count`
54
55
: (number) The document count of the bucket.
55
56
56
-
::::
57
-
58
57
59
58
`type`
60
59
: (object) The found change point type and its related values. Possible types:
Copy file name to clipboardExpand all lines: docs/reference/elasticsearch-plugins/discovery-ec2.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ mapped_pages:
7
7
8
8
The EC2 discovery plugin provides a list of seed addresses to the [discovery process](docs-content://deploy-manage/distributed-architecture/discovery-cluster-formation/discovery-hosts-providers.md) by querying the [AWS API](https://github.com/aws/aws-sdk-java) for a list of EC2 instances matching certain criteria determined by the [plugin settings](/reference/elasticsearch-plugins/discovery-ec2-usage.md).
9
9
10
-
**If you are looking for a hosted solution of {{es}} on AWS, please visit [https://www.elastic.co/cloud.**](https://www.elastic.co/cloud.**)
10
+
**If you are looking for a hosted solution of {{es}} on AWS, please visit [https://www.elastic.co/cloud](https://www.elastic.co/cloud).**
Copy file name to clipboardExpand all lines: docs/reference/elasticsearch/rest-apis/api-conventions.md
+3-2Lines changed: 3 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -324,8 +324,9 @@ Some multi-target APIs that can target indices also support the following query
324
324
`ignore_throttled`
325
325
: (Optional, Boolean) If `true`, concrete, expanded or aliased indices are ignored when frozen. Defaults to `true`.
326
326
327
-
[7.16.0]
328
-
327
+
:::{admonition} Deprecated in 7.16.0
328
+
This parameter was deprecated in 7.16.0.
329
+
:::
329
330
330
331
::::{note}
331
332
APIs with a single target, such as the [get document API](https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-get), do not support multi-target syntax.
Copy file name to clipboardExpand all lines: docs/reference/query-languages/query-dsl/query-dsl-prefix-query.md
+6-2Lines changed: 6 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -41,8 +41,12 @@ GET /_search
41
41
`rewrite`
42
42
: (Optional, string) Method used to rewrite the query. For valid values and more information, see the [`rewrite` parameter](/reference/query-languages/query-dsl/query-dsl-multi-term-rewrite.md).
43
43
44
-
`case_insensitive`[7.10.0]
45
-
: (Optional, Boolean) Allows ASCII case insensitive matching of the value with the indexed field values when set to true. Default is false which means the case sensitivity of matching depends on the underlying field’s mapping.
44
+
`case_insensitive`
45
+
: :::{admonition} Added in 7.10.0
46
+
This parameter was added in 7.10.0.
47
+
:::
48
+
49
+
(Optional, Boolean) Allows ASCII case insensitive matching of the value with the indexed field values when set to true. Default is false which means the case sensitivity of matching depends on the underlying field’s mapping.
Copy file name to clipboardExpand all lines: docs/reference/query-languages/query-dsl/query-dsl-range-query.md
+42-43Lines changed: 42 additions & 43 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -31,30 +31,30 @@ GET /_search
31
31
## Top-level parameters for `range`[range-query-top-level-params]
32
32
33
33
`<field>`
34
-
(Required, object) Field you wish to search.
34
+
: (Required, object) Field you wish to search.
35
35
36
36
37
37
## Parameters for `<field>`[range-query-field-params]
38
38
39
39
`gt`
40
-
(Optional) Greater than.
40
+
: (Optional) Greater than.
41
41
42
42
`gte`
43
-
(Optional) Greater than or equal to.
43
+
: (Optional) Greater than or equal to.
44
44
45
45
`lt`
46
-
(Optional) Less than.
46
+
: (Optional) Less than.
47
47
48
48
`lte`
49
-
(Optional) Less than or equal to.
49
+
: (Optional) Less than or equal to.
50
50
51
51
`format`
52
-
(Optional, string) Date format used to convert `date` values in the query.
52
+
: (Optional, string) Date format used to convert `date` values in the query.
53
53
54
-
By default, {{es}} uses the [date `format`](/reference/elasticsearch/mapping-reference/mapping-date-format.md) provided in the `<field>`'s
55
-
mapping. This value overrides that mapping format.
54
+
By default, {{es}} uses the [date `format`](/reference/elasticsearch/mapping-reference/mapping-date-format.md) provided in the `<field>`'s
55
+
mapping. This value overrides that mapping format.
56
56
57
-
For valid syntax, see [`format`](/reference/elasticsearch/mapping-reference/mapping-date-format.md).
57
+
For valid syntax, see [`format`](/reference/elasticsearch/mapping-reference/mapping-date-format.md).
58
58
59
59
::::{warning}
60
60
If a format or date value is incomplete, the range query replaces any missing components with default values. See [Missing date components](#missing-date-components).
@@ -65,29 +65,28 @@ If a format or date value is incomplete, the range query replaces any missing co
65
65
$$$querying-range-fields$$$
66
66
67
67
`relation`
68
-
(Optional, string) Indicates how the range query matches values for `range`
: (Optional, string) Indicates how the range query matches values for `range`
69
+
fields. Valid values are:
70
70
71
-
`INTERSECTS` (Default)
72
-
Matches documents with a range field value that intersects the query’s range.
71
+
`INTERSECTS` (Default)
72
+
: Matches documents with a range field value that intersects the query’s range.
73
73
74
-
`CONTAINS`
75
-
Matches documents with a range field value that entirely contains the
76
-
query’s range.
74
+
`CONTAINS`
75
+
: Matches documents with a range field value that entirely contains the query’s range.
77
76
78
-
`WITHIN`
79
-
Matches documents with a range field value entirely within the query’s range.
77
+
`WITHIN`
78
+
: Matches documents with a range field value entirely within the query’s range.
80
79
81
80
82
81
`time_zone`
83
-
(Optional, string) [Coordinated Universal Time (UTC) offset](https://en.wikipedia.org/wiki/List_of_UTC_time_offsets) or [IANA time zone](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones)
84
-
used to convert `date` values in the query to UTC.
82
+
: (Optional, string) [Coordinated Universal Time (UTC) offset](https://en.wikipedia.org/wiki/List_of_UTC_time_offsets) or [IANA time zone](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones)
83
+
used to convert `date` values in the query to UTC.
85
84
86
-
Valid values are ISO 8601 UTC offsets, such as `+01:00` or -`08:00`, and IANA
87
-
time zone IDs, such as `America/Los_Angeles`.
85
+
Valid values are ISO 8601 UTC offsets, such as `+01:00` or -`08:00`, and IANA
86
+
time zone IDs, such as `America/Los_Angeles`.
88
87
89
-
For an example query using the `time_zone` parameter, see
90
-
[Time zone in `range` queries](#range-query-time-zone).
88
+
For an example query using the `time_zone` parameter, see
89
+
[Time zone in `range` queries](#range-query-time-zone).
91
90
92
91
::::{note}
93
92
The `time_zone` parameter does **not** affect the [date math](/reference/elasticsearch/rest-apis/common-options.md#date-math) value of `now`. `now` is always the current system time in UTC.
@@ -99,15 +98,15 @@ However, the `time_zone` parameter does convert dates calculated using `now` and
99
98
100
99
101
100
`boost`
102
-
(Optional, float) Floating point number used to decrease or increase the
103
-
[relevance scores](/reference/query-languages/query-dsl/query-filter-context.md#relevance-scores) of a query. Defaults to `1.0`.
101
+
: (Optional, float) Floating point number used to decrease or increase the
102
+
[relevance scores](/reference/query-languages/query-dsl/query-filter-context.md#relevance-scores) of a query. Defaults to `1.0`.
104
103
105
-
You can use the `boost` parameter to adjust relevance scores for searches
106
-
containing two or more queries.
104
+
You can use the `boost` parameter to adjust relevance scores for searches
105
+
containing two or more queries.
107
106
108
-
Boost values are relative to the default value of `1.0`. A boost value between `0`
109
-
and `1.0` decreases the relevance score. A value greater than `1.0`
110
-
increases the relevance score.
107
+
Boost values are relative to the default value of `1.0`. A boost value between `0`
108
+
and `1.0` decreases the relevance score. A value greater than `1.0`
109
+
increases the relevance score.
111
110
112
111
113
112
@@ -169,31 +168,31 @@ When no date format is specified and the range query is targeting a date field,
169
168
{{es}} rounds [date math](/reference/elasticsearch/rest-apis/common-options.md#date-math) values in parameters as follows:
170
169
171
170
`gt`
172
-
Rounds up to the first millisecond not covered by the rounded date.
171
+
: Rounds up to the first millisecond not covered by the rounded date.
173
172
174
-
For example, `2014-11-18||/M` rounds up to `2014-12-01T00:00:00.000`,
175
-
excluding the entire month of November.
173
+
For example, `2014-11-18||/M` rounds up to `2014-12-01T00:00:00.000`,
174
+
excluding the entire month of November.
176
175
177
176
178
177
`gte`
179
-
Rounds down to the first millisecond.
178
+
: Rounds down to the first millisecond.
180
179
181
-
For example, `2014-11-18||/M` rounds down to `2014-11-01T00:00:00.000`,
182
-
including the entire month.
180
+
For example, `2014-11-18||/M` rounds down to `2014-11-01T00:00:00.000`,
181
+
including the entire month.
183
182
184
183
185
184
`lt`
186
-
Rounds down to the last millisecond before the rounded value.
185
+
: Rounds down to the last millisecond before the rounded value.
187
186
188
-
For example, `2014-11-18||/M` rounds down to `2014-10-31T23:59:59.999`,
189
-
excluding the entire month of November.
187
+
For example, `2014-11-18||/M` rounds down to `2014-10-31T23:59:59.999`,
188
+
excluding the entire month of November.
190
189
191
190
192
191
`lte`
193
-
Rounds up to the latest millisecond in the rounding interval.
192
+
: Rounds up to the latest millisecond in the rounding interval.
194
193
195
-
For example, `2014-11-18||/M` rounds up to `2014-11-30T23:59:59.999`,
196
-
including the entire month.
194
+
For example, `2014-11-18||/M` rounds up to `2014-11-30T23:59:59.999`,
Copy file name to clipboardExpand all lines: docs/reference/query-languages/query-dsl/query-dsl-regexp-query.md
+6-2Lines changed: 6 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -55,8 +55,12 @@ GET /_search
55
55
`flags`
56
56
: (Optional, string) Enables optional operators for the regular expression. For valid values and more information, see [Regular expression syntax](/reference/query-languages/query-dsl/regexp-syntax.md#regexp-optional-operators).
57
57
58
-
`case_insensitive`[7.10.0]
59
-
: (Optional, Boolean) Allows case insensitive matching of the regular expression value with the indexed field values when set to true. Default is false which means the case sensitivity of matching depends on the underlying field’s mapping.
58
+
`case_insensitive`
59
+
: :::{admonition} Added in 7.10.0
60
+
This parameter was added in 7.10.0.
61
+
:::
62
+
63
+
(Optional, Boolean) Allows case insensitive matching of the regular expression value with the indexed field values when set to true. Default is false which means the case sensitivity of matching depends on the underlying field’s mapping.
60
64
61
65
`max_determinized_states`
62
66
: (Optional, integer) Maximum number of [automaton states](https://en.wikipedia.org/wiki/Deterministic_finite_automaton) required for the query. Default is `10000`.
Copy file name to clipboardExpand all lines: docs/reference/query-languages/query-dsl/query-dsl-term-query.md
+6-2Lines changed: 6 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -57,8 +57,12 @@ GET /_search
57
57
Boost values are relative to the default value of `1.0`. A boost value between `0` and `1.0` decreases the relevance score. A value greater than `1.0` increases the relevance score.
58
58
59
59
60
-
`case_insensitive`[7.10.0]
61
-
: (Optional, Boolean) Allows ASCII case insensitive matching of the value with the indexed field values when set to true. Default is false which means the case sensitivity of matching depends on the underlying field’s mapping.
60
+
`case_insensitive`
61
+
: :::{admonition} Added in 7.10.0
62
+
This parameter was added in 7.10.0.
63
+
:::
64
+
65
+
(Optional, Boolean) Allows ASCII case insensitive matching of the value with the indexed field values when set to true. Default is false which means the case sensitivity of matching depends on the underlying field’s mapping.
Copy file name to clipboardExpand all lines: docs/reference/query-languages/query-dsl/query-dsl-wildcard-query.md
+6-2Lines changed: 6 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -47,8 +47,12 @@ GET /_search
47
47
Boost values are relative to the default value of `1.0`. A boost value between `0` and `1.0` decreases the relevance score. A value greater than `1.0` increases the relevance score.
48
48
49
49
50
-
`case_insensitive`[7.10.0]
51
-
: (Optional, Boolean) Allows case insensitive matching of the pattern with the indexed field values when set to true. Default is false which means the case sensitivity of matching depends on the underlying field’s mapping.
50
+
`case_insensitive`
51
+
: :::{admonition} Added in 7.10.0
52
+
This parameter was added in 7.10.0.
53
+
:::
54
+
55
+
(Optional, Boolean) Allows case insensitive matching of the pattern with the indexed field values when set to true. Default is false which means the case sensitivity of matching depends on the underlying field’s mapping.
52
56
53
57
`rewrite`
54
58
: (Optional, string) Method used to rewrite the query. For valid values and more information, see the [`rewrite` parameter](/reference/query-languages/query-dsl/query-dsl-multi-term-rewrite.md).
0 commit comments