File tree Expand file tree Collapse file tree 3 files changed +13
-11
lines changed
rest-api-spec/src/yamlRestTest/resources/rest-api-spec/test/update
server/src/main/java/org/elasticsearch/index/mapper
x-pack/plugin/logsdb/src/yamlRestTest/resources/rest-api-spec/test Expand file tree Collapse file tree 3 files changed +13
-11
lines changed Original file line number Diff line number Diff line change 66---
77keyword :
88 - requires :
9- cluster_features : [ "index.recovery.synthetic_source " ]
10- reason : requires synthetic recovery source
9+ cluster_features : [ "index.recovery.synthetic_source_default " ]
10+ reason : requires synthetic recovery source by default
1111
1212 - do :
1313 indices.create :
@@ -66,8 +66,8 @@ keyword:
6666---
6767stored text :
6868 - requires :
69- cluster_features : [ "index.recovery.synthetic_source " ]
70- reason : requires synthetic recovery source
69+ cluster_features : [ "index.recovery.synthetic_source_default " ]
70+ reason : requires synthetic recovery source by default
7171
7272 - do :
7373 indices.create :
Original file line number Diff line number Diff line change @@ -31,7 +31,9 @@ public class MapperFeatures implements FeatureSpecification {
3131 public static final NodeFeature SPARSE_VECTOR_STORE_SUPPORT = new NodeFeature ("mapper.sparse_vector.store_support" );
3232 public static final NodeFeature SORT_FIELDS_CHECK_FOR_NESTED_OBJECT_FIX = new NodeFeature ("mapper.nested.sorting_fields_check_fix" );
3333 public static final NodeFeature DYNAMIC_HANDLING_IN_COPY_TO = new NodeFeature ("mapper.copy_to.dynamic_handling" );
34- public static final NodeFeature SYNTHETIC_SOURCE_RECOVERY = new NodeFeature ("index.recovery.synthetic_source" );
34+ public static final NodeFeature USE_SYNTHETIC_SOURCE_FOR_RECOVERY_BY_DEFAULT = new NodeFeature (
35+ "index.recovery.synthetic_source_default"
36+ );
3537
3638 @ Override
3739 public Set <NodeFeature > getTestFeatures () {
Original file line number Diff line number Diff line change 11---
22synthetic recovery for synthetic source mode index :
33 - requires :
4- cluster_features : [ "index.recovery.synthetic_source " ]
5- reason : requires synthetic recovery source
4+ cluster_features : [ "index.recovery.synthetic_source_default " ]
5+ reason : requires synthetic recovery source by default
66
77 - do :
88 indices.create :
@@ -88,8 +88,8 @@ synthetic recovery for standard index:
8888---
8989synthetic recovery for logsdb index :
9090 - requires :
91- cluster_features : [ "index.recovery.synthetic_source " ]
92- reason : requires synthetic recovery source
91+ cluster_features : [ "index.recovery.synthetic_source_default " ]
92+ reason : requires synthetic recovery source by default
9393
9494 - do :
9595 indices.create :
@@ -109,8 +109,8 @@ synthetic recovery for logsdb index:
109109---
110110synthetic recovery for time_series index :
111111 - requires :
112- cluster_features : [ "index.recovery.synthetic_source " ]
113- reason : requires synthetic recovery source
112+ cluster_features : [ "index.recovery.synthetic_source_default " ]
113+ reason : requires synthetic recovery source by default
114114
115115 - do :
116116 indices.create :
You can’t perform that action at this time.
0 commit comments