Forward-port vector dotted field fix test features#143541
Merged
mayya-sharipova merged 3 commits intoelastic:mainfrom Mar 4, 2026
Merged
Forward-port vector dotted field fix test features#143541mayya-sharipova merged 3 commits intoelastic:mainfrom
mayya-sharipova merged 3 commits intoelastic:mainfrom
Conversation
PR elastic#143421 introduced test features mapper.dense_vector.dynamic_template_dotted_field_fix and mapper.rank_vectors.dynamic_template_dotted_field_fix on the 9.3 branch. The underlying bug was already fixed on 9.4 by During rolling upgrades test from 9.3 to 9.4 the feature barrier in NodeJoinExecutor rejects the 9.4 node: Node is missing required features [mapper.dense_vector.dynamic_template_dotted_field_fix, mapper.rank_vectors.dynamic_template_dotted_field_fix] This PR declares the same NodeFeatures in 9.4 and add the corresponding YAML regression tests.
Contributor
Author
|
Serverless check fails with: will remove test for now to unblock BWC. |
Contributor
Author
|
Serverless test fails on unrelated reasons, but given that this is blocker for other PR, I will merge it |
burqen
pushed a commit
to burqen/elasticsearch
that referenced
this pull request
Mar 5, 2026
PR elastic#143421 introduced test features mapper.dense_vector.dynamic_template_dotted_field_fix and mapper.rank_vectors.dynamic_template_dotted_field_fix on the 9.3 branch. The underlying bug was already fixed on 9.4 by During rolling upgrades test from 9.3 to 9.4 the feature barrier in NodeJoinExecutor rejects the 9.4 node: Node is missing required features [mapper.dense_vector.dynamic_template_dotted_field_fix, mapper.rank_vectors.dynamic_template_dotted_field_fix] This PR declares the same NodeFeatures in 9.4 and add the corresponding YAML regression tests. * Remove YAML tests for vector dotted field fix
This was referenced Mar 6, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
PR #143421 introduced test features
mapper.dense_vector.dynamic_template_dotted_field_fix and
mapper.rank_vectors.dynamic_template_dotted_field_fix on the
9.3 branch. The underlying bug was already fixed on 9.4 by
PR #142754, so these feature declarations were never added here.
During rolling upgrades test from 9.3 to 9.4 the feature barrier
in NodeJoinExecutor rejects the 9.4 node:
Node is missing required features
[mapper.dense_vector.dynamic_template_dotted_field_fix,
mapper.rank_vectors.dynamic_template_dotted_field_fix]
This PR declares the same NodeFeatures in 9.4 and add
the corresponding YAML regression tests.