You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Elasticsearch version (bin/elasticsearch --version): Rolling upgrade from <7.3 to ≥7.10
Description of the problem including expected versus actual behavior:
We have special handling for mapping the new pluggable master/data/ingest roles onto their legacy counterparts when talking to pre-7.3 nodes which did not support pluggable roles:
However this code does not use DiscoveryNodeRole#getCompatibilityRole() so it does not map the data-tiers-related roles DATA_{HOT,WARM,COLD,FROZEN} onto the legacy data role.
Relates #60994 and #63581 so I'm labelling this similarly.
The text was updated successfully, but these errors were encountered:
Elasticsearch version (
bin/elasticsearch --version
): Rolling upgrade from <7.3 to ≥7.10Description of the problem including expected versus actual behavior:
We have special handling for mapping the new pluggable master/data/ingest roles onto their legacy counterparts when talking to pre-7.3 nodes which did not support pluggable roles:
elasticsearch/server/src/main/java/org/elasticsearch/cluster/node/DiscoveryNode.java
Lines 332 to 344 in 941b028
However this code does not use
DiscoveryNodeRole#getCompatibilityRole()
so it does not map the data-tiers-related rolesDATA_{HOT,WARM,COLD,FROZEN}
onto the legacy data role.Relates #60994 and #63581 so I'm labelling this similarly.
The text was updated successfully, but these errors were encountered: