Skip to content

[Backport 8.x] Edit migration reindexing summaries #3588

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jan 23, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 11 additions & 9 deletions output/openapi/elasticsearch-openapi.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

34 changes: 17 additions & 17 deletions output/schema/schema.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,9 @@ import { RequestBase } from '@_types/Base'
import { Indices } from '@_types/common'

/**
* This API cancels a migration reindex attempt for a data stream or index
* Cancel a migration reindex operation.
*
* Cancel a migration reindex attempt for a data stream or index.
* @rest_spec_name indices.cancel_migrate_reindex
* @availability stack since=8.18.0 stability=experimental
* @availability serverless stability=experimental visibility=private
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,9 @@ import { IndexName } from '@_types/common'
import { TypeMapping } from '@_types/mapping/TypeMapping'

/**
* 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.
* Create an index from a source index.
*
* Copy the mappings and settings from the source index to a destination index while allowing request settings and mappings to override the source values.
* @rest_spec_name indices.create_from
* @availability stack since=8.18.0 stability=experimental
* @availability serverless stability=experimental visibility=private
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,9 @@ import { RequestBase } from '@_types/Base'
import { Indices } from '@_types/common'

/**
* This API returns the status of a migration reindex attempt for a data stream or index
* Get the migration reindexing status.
*
* Get the status of a migration reindex attempt for a data stream or index.
* @rest_spec_name indices.get_migrate_reindex_status
* @availability stack since=8.18.0 stability=experimental
* @availability serverless stability=experimental visibility=private
Expand All @@ -31,7 +32,7 @@ import { Indices } from '@_types/common'
*/
export interface Request extends RequestBase {
path_parts: {
/** The index or data stream name */
/** The index or data stream name. */
index: Indices
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,11 @@ import { RequestBase } from '@_types/Base'
import { IndexName } from '@_types/common'

/**
* "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
* Reindex legacy backing indices.
*
* Reindex all legacy backing indices for a data stream.
* This operation occurs in a persistent task.
* The persistent task ID is returned immediately and the reindexing work is completed in that task.
* @rest_spec_name indices.migrate_reindex
* @availability stack since=8.18.0 stability=experimental
* @doc_id migrate
Expand Down
Loading