Skip to content

Commit 1f25669

Browse files
committed
Update Documentation Feature Flags [1.4.0.Beta1]
1 parent 47f7b27 commit 1f25669

34 files changed

+48
-48
lines changed

docs/reference/analysis/tokenfilters/keep-types-tokenfilter.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[[analysis-keep-types-tokenfilter]]
22
=== Keep Types Token Filter
33

4-
coming[1.4.0.Beta1]
4+
added[1.4.0.Beta1]
55

66
A token filter of type `keep_types` that only keeps tokens with a token type
77
contained in a predefined set.

docs/reference/api-conventions.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ specified to expand to all indices.
5151
+
5252
If `none` is specified then wildcard expansion will be disabled and if `all`
5353
is specified, wildcard expressions will expand to all indices (this is equivalent
54-
to specifying `open,closed`). coming[1.4.0.Beta1]
54+
to specifying `open,closed`). added[1.4.0.Beta1]
5555

5656
The defaults settings for the above parameters depend on the api being used.
5757

docs/reference/docs/get.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ will fail.
125125
[float]
126126
[[generated-fields]]
127127
=== Generated fields
128-
coming[1.4.0.Beta1]
128+
added[1.4.0.Beta1]
129129

130130
If no refresh occurred between indexing and refresh, GET will access the transaction log to fetch the document. However, some fields are generated only when indexing.
131131
If you try to access a field that is only generated when indexing, you will get an exception (default). You can choose to ignore field that are generated if the transaction log is accessed by setting `ignore_errors_on_generated_fields=true`.

docs/reference/docs/multi-get.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ curl 'localhost:9200/_mget' -d '{
181181
[float]
182182
=== Generated fields
183183

184-
coming[1.4.0.Beta1]
184+
added[1.4.0.Beta1]
185185

186186
See <<generated-fields>> for fields are generated only when indexing.
187187

docs/reference/docs/multi-termvectors.asciidoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
Multi termvectors API allows to get multiple termvectors at once. The
55
documents from which to retrieve the term vectors are specified by an index,
6-
type and id. But the documents could also be artificially provided coming[1.4.0.Beta1].
6+
type and id. But the documents could also be artificially provided added[1.4.0.Beta1].
77
The response includes a `docs`
88
array with all the fetched termvectors, each element having the structure
99
provided by the <<docs-termvectors,termvectors>>
@@ -92,7 +92,7 @@ curl 'localhost:9200/testidx/test/_mtermvectors' -d '{
9292
}'
9393
--------------------------------------------------
9494

95-
Additionally coming[1.4.0.Beta1], just like for the <<docs-termvectors,termvectors>>
95+
Additionally added[1.4.0.Beta1], just like for the <<docs-termvectors,termvectors>>
9696
API, term vectors could be generated for user provided documents. The syntax
9797
is similar to the <<search-percolate,percolator>> API. The mapping used is
9898
determined by `_index` and `_type`.

docs/reference/docs/termvectors.asciidoc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
Returns information and statistics on terms in the fields of a particular
55
document. The document could be stored in the index or artificially provided
6-
by the user coming[1.4.0.Beta1]. Note that for documents stored in the index, this
6+
by the user added[1.4.0.Beta1]. Note that for documents stored in the index, this
77
is a near realtime API as the term vectors are not available until the next
88
refresh.
99

@@ -22,7 +22,7 @@ curl -XGET 'http://localhost:9200/twitter/tweet/1/_termvector?fields=text,...'
2222

2323
or by adding the requested fields in the request body (see
2424
example below). Fields can also be specified with wildcards
25-
in similar way to the <<query-dsl-multi-match-query,multi match query>> coming[1.4.0.Beta1].
25+
in similar way to the <<query-dsl-multi-match-query,multi match query>> added[1.4.0.Beta1].
2626

2727
[float]
2828
=== Return values
@@ -43,7 +43,7 @@ If the requested information wasn't stored in the index, it will be
4343
computed on the fly if possible. Additionally, term vectors could be computed
4444
for documents not even existing in the index, but instead provided by the user.
4545

46-
coming[1.4.0.Beta1,The ability to computed term vectors on the fly as well as support for artificial documents is only available from 1.4.0 onwards (see below example 2 and 3 respectively)]
46+
added[1.4.0.Beta1,The ability to computed term vectors on the fly as well as support for artificial documents is only available from 1.4.0 onwards (see below example 2 and 3 respectively)]
4747

4848
[WARNING]
4949
======
@@ -230,7 +230,7 @@ Response:
230230
--------------------------------------------------
231231

232232
[float]
233-
=== Example 2 coming[1.4.0.Beta1]
233+
=== Example 2 added[1.4.0.Beta1]
234234

235235
Term vectors which are not explicitly stored in the index are automatically
236236
computed on the fly. The following request returns all information and statistics for the
@@ -249,7 +249,7 @@ curl -XGET 'http://localhost:9200/twitter/tweet/1/_termvector?pretty=true' -d '{
249249
--------------------------------------------------
250250

251251
[float]
252-
=== Example 3 coming[1.4.0.Beta1]
252+
=== Example 3 added[1.4.0.Beta1]
253253

254254
Additionally, term vectors can also be generated for artificial documents,
255255
that is for documents not present in the index. The syntax is similar to the

docs/reference/docs/update.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ curl -XPOST 'localhost:9200/test/type1/1/_update' -d '{
145145
}
146146
}'
147147
--------------------------------------------------
148-
coming[1.4.0.Beta1]
148+
added[1.4.0.Beta1]
149149

150150
If the document does not exist you may want your update script to
151151
run anyway in order to initialize the document contents using

docs/reference/index-modules/fielddata.asciidoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ example, can be set to `5m` for a 5 minute expiry.
2828
[[circuit-breaker]]
2929
=== Circuit Breaker
3030

31-
coming[1.4.0.Beta1,Prior to 1.4.0 there was only a single circuit breaker for fielddata]
31+
added[1.4.0.Beta1,Prior to 1.4.0 there was only a single circuit breaker for fielddata]
3232

3333
Elasticsearch contains multiple circuit breakers used to prevent operations from
3434
causing an OutOfMemoryError. Each breaker specifies a limit for how much memory
@@ -69,7 +69,7 @@ parameters:
6969
[[request-circuit-breaker]]
7070
==== Request circuit breaker
7171

72-
coming[1.4.0.Beta1]
72+
added[1.4.0.Beta1]
7373

7474
The request circuit breaker allows Elasticsearch to prevent per-request data
7575
structures (for example, memory used for calculating aggregations during a

docs/reference/index-modules/query-cache.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[[index-modules-shard-query-cache]]
22
== Shard query cache
33

4-
coming[1.4.0.Beta1]
4+
added[1.4.0.Beta1]
55

66
When a search request is run against an index or against many indices, each
77
involved shard executes the search locally and returns its local results to

docs/reference/indices/aliases.asciidoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ the same index. The filter can be defined using Query DSL and is applied
7474
to all Search, Count, Delete By Query and More Like This operations with
7575
this alias.
7676

77-
coming[1.4.0.Beta1,Fields referred to in alias filters must exist in the mappings of the index/indices pointed to by the alias]
77+
added[1.4.0.Beta1,Fields referred to in alias filters must exist in the mappings of the index/indices pointed to by the alias]
7878

7979
To create a filtered alias, first we need to ensure that the fields already
8080
exist in the mapping:
@@ -312,7 +312,7 @@ Possible options:
312312

313313
The rest endpoint is: `/{index}/_alias/{alias}`.
314314

315-
coming[1.4.0.Beta1,The API will always include an `aliases` section, even if there aren't any aliases. Previous versions would not return the `aliases` section]
315+
added[1.4.0.Beta1,The API will always include an `aliases` section, even if there aren't any aliases. Previous versions would not return the `aliases` section]
316316

317317
WARNING: For future versions of Elasticsearch, the default <<multi-index>> options will error if a requested index is unavailable. This is to bring
318318
this API in line with the other indices GET APIs

0 commit comments

Comments
 (0)