Skip to content

Commit 457d99a

Browse files
Allow configuring ignore_dynamic_beyond_limit in Serverless (#113548)
This setting is already set for the Serverless templates, however, it's not marked as available on Serverless, so it's ending up ignored. This allows the setting. Co-authored-by: Elastic Machine <[email protected]>
1 parent 052dbb4 commit 457d99a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

server/src/main/java/org/elasticsearch/index/mapper/MapperService.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,8 @@ public boolean isAutoUpdate() {
125125
"index.mapping.total_fields.ignore_dynamic_beyond_limit",
126126
false,
127127
Property.Dynamic,
128-
Property.IndexScope
128+
Property.IndexScope,
129+
Property.ServerlessPublic
129130
);
130131
public static final Setting<Long> INDEX_MAPPING_DEPTH_LIMIT_SETTING = Setting.longSetting(
131132
"index.mapping.depth.limit",

0 commit comments

Comments
 (0)