Skip to content

Commit e8b6614

Browse files
authored
Merge branch 'main' into cat-examples
2 parents 937e4b4 + 2397e31 commit e8b6614

21 files changed

+1582
-27
lines changed

output/openapi/elasticsearch-openapi.json

Lines changed: 344 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/openapi/elasticsearch-serverless-openapi.json

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/schema/schema-serverless.json

Lines changed: 19 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/schema/schema.json

Lines changed: 719 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/typescript/types.ts

Lines changed: 68 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

specification/_doc_ids/table.csv

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -304,6 +304,7 @@ mapping-source-field,https://www.elastic.co/guide/en/elasticsearch/reference/{br
304304
mapping,https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/mapping.html
305305
mapping,https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/mapping.html
306306
mean-reciprocal,https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/search-rank-eval.html#_mean_reciprocal_rank
307+
migrate,https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/migrate-data-stream.html
307308
migrate-index-allocation-filters,https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/migrate-index-allocation-filters.html
308309
migration-api-deprecation,https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/migration-api-deprecation.html
309310
migration-api-feature-upgrade,https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/feature-migration-api.html

specification/_global/create/CreateRequest.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ import { Duration } from '@_types/Time'
7575
*
7676
* NOTE: Data streams do not support custom routing unless they were created with the `allow_custom_routing` setting enabled in the template.
7777
*
78-
* ** Distributed**
78+
* **Distributed**
7979
*
8080
* The index operation is directed to the primary shard based on its route and performed on the actual node containing this shard.
8181
* After the primary shard completes the operation, if needed, the update is distributed to applicable replicas.

specification/_global/index/IndexRequest.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ import { Duration } from '@_types/Time'
8787
*
8888
* NOTE: Data streams do not support custom routing unless they were created with the `allow_custom_routing` setting enabled in the template.
8989
*
90-
* * ** Distributed**
90+
* **Distributed**
9191
*
9292
* The index operation is directed to the primary shard based on its route and performed on the actual node containing this shard.
9393
* After the primary shard completes the operation, if needed, the update is distributed to applicable replicas.

specification/_global/reindex/ReindexRequest.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ import { Destination, Source } from './types'
9696
* done
9797
* ```
9898
*
99-
* ** Throttling**
99+
* **Throttling**
100100
*
101101
* Set `requests_per_second` to any positive decimal number (`1.4`, `6`, `1000`, for example) to throttle the rate at which reindex issues batches of index operations.
102102
* Requests are throttled by padding each batch with a wait time.
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
"migrate.cancel_reindex": {
3+
"documentation": {
4+
"url": "https://www.elastic.co/guide/en/elasticsearch/reference/master/data-stream-reindex.html",
5+
"description": "This API cancels migration reindex attempt for a data stream or index"
6+
},
7+
"stability": "experimental",
8+
"visibility": "private",
9+
"headers": {
10+
"accept": ["application/json"],
11+
"content_type": ["application/json"]
12+
},
13+
"url": {
14+
"paths": [
15+
{
16+
"path": "/_migration/reindex/{index}/_cancel",
17+
"methods": ["POST"],
18+
"parts": {
19+
"index": {
20+
"type": "string",
21+
"description": "The index or data stream name"
22+
}
23+
}
24+
}
25+
]
26+
}
27+
}
28+
}

0 commit comments

Comments
 (0)