Skip to content

Commit 13bbd4b

Browse files
authored
Don't enable docvalues by default for the time being. (#124787)
By change index.mapping.use_doc_values_skipper setting's default to false.
1 parent af6eb8c commit 13bbd4b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/src/main/java/org/elasticsearch/index/IndexSettings.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -688,7 +688,7 @@ public boolean isES87TSDBCodecEnabled() {
688688
public static final FeatureFlag DOC_VALUES_SKIPPER = new FeatureFlag("doc_values_skipper");
689689
public static final Setting<Boolean> USE_DOC_VALUES_SKIPPER = Setting.boolSetting(
690690
"index.mapping.use_doc_values_skipper",
691-
IndexSettings.DOC_VALUES_SKIPPER.isEnabled(),
691+
false,
692692
Property.IndexScope,
693693
Property.Final
694694
);

0 commit comments

Comments
 (0)