Skip to content

[Transform] Change reindex links (#129879) #129914

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 1 commit into from
Jun 24, 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
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,7 @@ private DeprecationIssue oldIndicesCheck(
return new DeprecationIssue(
DeprecationIssue.Level.CRITICAL,
"One or more Transforms write to this index with a compatibility version < 8.0",
"https://www.elastic.co/guide/en/elastic-stack/9.0/upgrading-elastic-stack.html"
+ "#breaking_90_transform_destination_index",
"https://www.elastic.co/docs/deploy-manage/upgrade/prepare-to-upgrade#transform-migration",
Strings.format(
"This index was created in version [%s] and requires action before upgrading to 9.0. The following transforms are "
+ "configured to write to this index: [%s]. Refer to the migration guide to learn more about how to prepare "
Expand Down Expand Up @@ -173,8 +172,7 @@ private DeprecationIssue ignoredOldIndicesCheck(
return new DeprecationIssue(
DeprecationIssue.Level.WARNING,
"One or more Transforms write to this old index with a compatibility version < 8.0",
"https://www.elastic.co/guide/en/elastic-stack/9.0/upgrading-elastic-stack.html"
+ "#breaking_90_transform_destination_index",
"https://www.elastic.co/docs/deploy-manage/upgrade/prepare-to-upgrade#transform-migration",
Strings.format(
"This index was created in version [%s] and will be supported as a read-only index in 9.0. The following "
+ "transforms are no longer able to write to this index: [%s]. Refer to the migration guide to learn more "
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ public void testOldTransformIndicesCheck() {
var expected = new DeprecationIssue(
DeprecationIssue.Level.CRITICAL,
"One or more Transforms write to this index with a compatibility version < 8.0",
"https://www.elastic.co/guide/en/elastic-stack/9.0/upgrading-elastic-stack.html#breaking_90_transform_destination_index",
"https://www.elastic.co/docs/deploy-manage/upgrade/prepare-to-upgrade#transform-migration",
"This index was created in version ["
+ OLD_VERSION.toReleaseVersion()
+ "] and requires action before upgrading to 9.0. "
Expand All @@ -132,7 +132,7 @@ public void testOldIndicesCheckWithMultipleTransforms() {
var expected = new DeprecationIssue(
DeprecationIssue.Level.CRITICAL,
"One or more Transforms write to this index with a compatibility version < 8.0",
"https://www.elastic.co/guide/en/elastic-stack/9.0/upgrading-elastic-stack.html#breaking_90_transform_destination_index",
"https://www.elastic.co/docs/deploy-manage/upgrade/prepare-to-upgrade#transform-migration",
"This index was created in version ["
+ OLD_VERSION.toReleaseVersion()
+ "] and requires action before upgrading to 9.0. "
Expand Down Expand Up @@ -162,8 +162,7 @@ public void testMultipleOldIndicesCheckWithTransforms() {
new DeprecationIssue(
DeprecationIssue.Level.CRITICAL,
"One or more Transforms write to this index with a compatibility version < 8.0",
"https://www.elastic.co/guide/en/elastic-stack/9.0/upgrading-elastic-stack.html"
+ "#breaking_90_transform_destination_index",
"https://www.elastic.co/docs/deploy-manage/upgrade/prepare-to-upgrade#transform-migration",
"This index was created in version ["
+ OLD_VERSION.toReleaseVersion()
+ "] and requires action before upgrading to 9.0. "
Expand All @@ -178,8 +177,7 @@ public void testMultipleOldIndicesCheckWithTransforms() {
new DeprecationIssue(
DeprecationIssue.Level.CRITICAL,
"One or more Transforms write to this index with a compatibility version < 8.0",
"https://www.elastic.co/guide/en/elastic-stack/9.0/upgrading-elastic-stack.html"
+ "#breaking_90_transform_destination_index",
"https://www.elastic.co/docs/deploy-manage/upgrade/prepare-to-upgrade#transform-migration",
"This index was created in version ["
+ OLD_VERSION.toReleaseVersion()
+ "] and requires action before upgrading to 9.0. "
Expand Down Expand Up @@ -413,7 +411,7 @@ public void testOldTransformIndicesIgnoredCheck() {
var expected = new DeprecationIssue(
DeprecationIssue.Level.WARNING,
"One or more Transforms write to this old index with a compatibility version < 8.0",
"https://www.elastic.co/guide/en/elastic-stack/9.0/upgrading-elastic-stack.html#breaking_90_transform_destination_index",
"https://www.elastic.co/docs/deploy-manage/upgrade/prepare-to-upgrade#transform-migration",
"This index was created in version ["
+ OLD_VERSION.toReleaseVersion()
+ "] and will be supported as a read-only index in 9.0. "
Expand All @@ -439,7 +437,7 @@ public void testOldIndicesIgnoredCheckWithMultipleTransforms() {
var expected = new DeprecationIssue(
DeprecationIssue.Level.WARNING,
"One or more Transforms write to this old index with a compatibility version < 8.0",
"https://www.elastic.co/guide/en/elastic-stack/9.0/upgrading-elastic-stack.html#breaking_90_transform_destination_index",
"https://www.elastic.co/docs/deploy-manage/upgrade/prepare-to-upgrade#transform-migration",
"This index was created in version ["
+ OLD_VERSION.toReleaseVersion()
+ "] and will be supported as a read-only index in 9.0. "
Expand Down Expand Up @@ -469,8 +467,7 @@ public void testMultipleOldIndicesIgnoredCheckWithTransforms() {
new DeprecationIssue(
DeprecationIssue.Level.WARNING,
"One or more Transforms write to this old index with a compatibility version < 8.0",
"https://www.elastic.co/guide/en/elastic-stack/9.0/upgrading-elastic-stack.html"
+ "#breaking_90_transform_destination_index",
"https://www.elastic.co/docs/deploy-manage/upgrade/prepare-to-upgrade#transform-migration",
"This index was created in version ["
+ OLD_VERSION.toReleaseVersion()
+ "] and will be supported as a read-only index in 9.0. "
Expand All @@ -485,8 +482,7 @@ public void testMultipleOldIndicesIgnoredCheckWithTransforms() {
new DeprecationIssue(
DeprecationIssue.Level.WARNING,
"One or more Transforms write to this old index with a compatibility version < 8.0",
"https://www.elastic.co/guide/en/elastic-stack/9.0/upgrading-elastic-stack.html"
+ "#breaking_90_transform_destination_index",
"https://www.elastic.co/docs/deploy-manage/upgrade/prepare-to-upgrade#transform-migration",
"This index was created in version ["
+ OLD_VERSION.toReleaseVersion()
+ "] and will be supported as a read-only index in 9.0. "
Expand Down