Skip to content

Commit f413af8

Browse files
Edit migration reindexing summaries (#3573) (#3588)
(cherry picked from commit a72afb8) Co-authored-by: Lisa Cawley <[email protected]>
1 parent 4588bf5 commit f413af8

File tree

6 files changed

+39
-31
lines changed

6 files changed

+39
-31
lines changed

output/openapi/elasticsearch-openapi.json

Lines changed: 11 additions & 9 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: 17 additions & 17 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

specification/indices/cancel_migrate_reindex/MigrateCancelReindexRequest.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,9 @@ import { RequestBase } from '@_types/Base'
2121
import { Indices } from '@_types/common'
2222

2323
/**
24-
* This API cancels a migration reindex attempt for a data stream or index
24+
* Cancel a migration reindex operation.
2525
*
26+
* Cancel a migration reindex attempt for a data stream or index.
2627
* @rest_spec_name indices.cancel_migrate_reindex
2728
* @availability stack since=8.18.0 stability=experimental
2829
* @availability serverless stability=experimental visibility=private

specification/indices/create_from/MigrateCreateFromRequest.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,9 @@ import { IndexName } from '@_types/common'
2323
import { TypeMapping } from '@_types/mapping/TypeMapping'
2424

2525
/**
26-
* This API creates a destination from a source index. It copies the mappings and settings from the source index while allowing request settings and mappings to override the source values.
26+
* Create an index from a source index.
2727
*
28+
* Copy the mappings and settings from the source index to a destination index while allowing request settings and mappings to override the source values.
2829
* @rest_spec_name indices.create_from
2930
* @availability stack since=8.18.0 stability=experimental
3031
* @availability serverless stability=experimental visibility=private

specification/indices/get_migrate_reindex_status/MigrateGetReindexStatusRequest.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,9 @@ import { RequestBase } from '@_types/Base'
2121
import { Indices } from '@_types/common'
2222

2323
/**
24-
* This API returns the status of a migration reindex attempt for a data stream or index
24+
* Get the migration reindexing status.
2525
*
26+
* Get the status of a migration reindex attempt for a data stream or index.
2627
* @rest_spec_name indices.get_migrate_reindex_status
2728
* @availability stack since=8.18.0 stability=experimental
2829
* @availability serverless stability=experimental visibility=private
@@ -31,7 +32,7 @@ import { Indices } from '@_types/common'
3132
*/
3233
export interface Request extends RequestBase {
3334
path_parts: {
34-
/** The index or data stream name */
35+
/** The index or data stream name. */
3536
index: Indices
3637
}
3738
}

specification/indices/migrate_reindex/MigrateReindexRequest.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,11 @@ import { RequestBase } from '@_types/Base'
2121
import { IndexName } from '@_types/common'
2222

2323
/**
24-
* "This API reindexes all legacy backing indices for a data stream. It does this in a persistent task. The persistent task id is returned immediately, and the reindexing work is completed in that task
24+
* Reindex legacy backing indices.
2525
*
26+
* Reindex all legacy backing indices for a data stream.
27+
* This operation occurs in a persistent task.
28+
* The persistent task ID is returned immediately and the reindexing work is completed in that task.
2629
* @rest_spec_name indices.migrate_reindex
2730
* @availability stack since=8.18.0 stability=experimental
2831
* @doc_id migrate

0 commit comments

Comments
 (0)