File tree Expand file tree Collapse file tree
test/packages/good_v3/data_stream/foo Expand file tree Collapse file tree Original file line number Diff line number Diff line change 77 - description : Using non-GA versions of the spec in GA packages produces a filterable validation error instead of a warning.
88 type : enhancement
99 link : https://github.com/elastic/package-spec/pull/627
10+ - description : Allow to define limits of nested and total number of fields.
11+ type : enhancement
12+ link : https://github.com/elastic/package-spec/pull/641
1013- version : 3.0.0-rc1
1114 changes :
1215 - description : Validate processors used in ingest pipelines
Original file line number Diff line number Diff line change @@ -194,13 +194,13 @@ spec:
194194 mapping :
195195 type : object
196196 additionalProperties : false
197- properties :
198- dimension_fields :
197+ patternProperties :
198+ " ^(dimension|nested|total)_fields$ " :
199199 type : object
200200 additionalProperties : false
201201 properties :
202202 limit :
203- description : Limit on the number of dimension fields on this data stream.
203+ description : Limit on the number of fields of this kind on this data stream.
204204 type : integer
205205 sort :
206206 type : object
Original file line number Diff line number Diff line change @@ -46,6 +46,15 @@ streams:
4646dataset_is_prefix : true
4747elasticsearch :
4848 index_template :
49+ settings :
50+ index :
51+ mapping :
52+ nested_fields :
53+ limit : 80
54+ total_fields :
55+ limit : 5000
56+ dimension_fields :
57+ limit : 32
4958 mappings :
5059 dynamic : strict
5160 ingest_pipeline :
You can’t perform that action at this time.
0 commit comments