Skip to content
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
8 changes: 5 additions & 3 deletions docs/api/upgrade-assistant/batch_reindexing.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,11 @@

experimental["The underlying Upgrade Assistant concepts are stable, but the APIs for managing Upgrade Assistant are experimental."]

Start or resume multiple <<start-resume-reindex, reindexing>> tasks in one request. Additionally, reindexing tasks started or resumed
via the batch endpoint will be placed on a queue and executed one-by-one, which ensures that minimal cluster resources
are consumed over time.
Start or resume upgrading multiple indices in one request. Additionally, <<start-resume-reindex, reindexing>> tasks for upgrading
indices that are started or resumed via the batch endpoint will be placed on a queue and executed one-by-one. This ensures that
minimal cluster resources are consumed over time.

NOTE: This API does not support data streams.

[[batch-start-resume-reindex-request]]
==== Request
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48139,7 +48139,6 @@
"xpack.upgradeAssistant.esDeprecationLogs.documentationLinkText": "ドキュメント",
"xpack.upgradeAssistant.esDeprecationLogs.pageDescription": "廃止予定ログを確認し、アプリケーションが廃止予定のAPIを使用しているかどうかを判断してください。アップグレード後に、エラーまたは動作の変更を防止するには、アプリケーションを更新します。",
"xpack.upgradeAssistant.esDeprecationLogs.pageTitle": "Elasticsearchの廃止予定ログ",
"xpack.upgradeAssistant.esDeprecations.batchReindexingDocsDescription": "1つの要求で複数の再インデックスタスクを開始するには、Kibana {docsLink}を使用します。",
"xpack.upgradeAssistant.esDeprecations.batchReindexingDocsLink": "バッチ再インデックスAPI",
"xpack.upgradeAssistant.esDeprecations.clusterDeprecationTypeLabel": "クラスター",
"xpack.upgradeAssistant.esDeprecations.clusterSettings.deleteCompleteText": "廃止予定の設定が削除されました",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48246,7 +48246,6 @@
"xpack.upgradeAssistant.esDeprecationLogs.documentationLinkText": "文档",
"xpack.upgradeAssistant.esDeprecationLogs.pageDescription": "请复查弃用日志以确定您的应用程序是否正使用任何已弃用的 API。在升级后,请更新应用程序以防止错误或行为更改。",
"xpack.upgradeAssistant.esDeprecationLogs.pageTitle": "Elasticsearch 弃用日志",
"xpack.upgradeAssistant.esDeprecations.batchReindexingDocsDescription": "要在单一请求中启动多个重新索引任务,请使用 Kibana {docsLink}。",
"xpack.upgradeAssistant.esDeprecations.batchReindexingDocsLink": "批量重新索引 API",
"xpack.upgradeAssistant.esDeprecations.clusterDeprecationTypeLabel": "集群",
"xpack.upgradeAssistant.esDeprecations.clusterSettings.deleteCompleteText": "过时设置已移除",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ const getBatchReindexLink = (docLinks: DocLinksStart) => {
return (
<FormattedMessage
id="xpack.upgradeAssistant.esDeprecations.batchReindexingDocsDescription"
defaultMessage="To start multiple reindexing tasks in a single request, use the Kibana {docsLink}."
defaultMessage="To start upgrading multiple indices in a single request, use the Kibana {docsLink}. Note: this API does not support data streams."
values={{
docsLink: (
<EuiLink
Expand Down