Skip to content

Commit 85abd26

Browse files
committed
update spec-filter.yaml
Signed-off-by: yiyupan <yypan14@gmail.com>
1 parent a1583bf commit 85abd26

File tree

2 files changed

+121
-2
lines changed

2 files changed

+121
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
99
- Add BoostingQuery and SimpleQueryString protos ([#376](https://github.com/opensearch-project/opensearch-protobufs/pull/376))
1010
- Add protobuf generation documentation and remove unused BUILD dependency ([#379](https://github.com/opensearch-project/opensearch-protobufs/pull/379))
1111
- Test Coverage Improvements ([#380](https://github.com/opensearch-project/opensearch-protobufs/pull/380))
12+
- Add TermsAggregation, MinAggregation, MaxAggregation and FilterAggregation support in AggregationContainer and add TermsAggregate, MinAggregate, and MaxAggregate variants (DoubleTermsAggregate, LongTermsAggregate, StringTermsAggregate, UnmappedTermsAggregate) in Aggregate ([#391](https://github.com/opensearch-project/opensearch-protobufs/pull/391))
1213

1314
### Changed
1415

tools/proto-convert/src/config/spec-filter.yaml

Lines changed: 120 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ x-operation-groups:
66
# Schemas to exclude from proto generation
77
# These schemas and their nested dependencies will not be included
88
excluded_schemas:
9-
- AggregationContainer
10-
- Aggregate
119
- Suggester
1210
- Suggest
1311
- DisMaxQuery
@@ -39,3 +37,123 @@ excluded_schemas:
3937
- TypeQuery
4038
- WrapperQuery
4139
- XyShapeQuery
40+
41+
# AggregationContainer - exclude all except TermsAggregation
42+
- AdjacencyMatrixAggregation
43+
- AutoDateHistogramAggregation
44+
- AverageAggregation
45+
- AverageBucketAggregation
46+
- BoxplotAggregation
47+
- BucketScriptAggregation
48+
- BucketSelectorAggregation
49+
- BucketSortAggregation
50+
- CardinalityAggregation
51+
- ChildrenAggregation
52+
- CompositeAggregation
53+
- CumulativeCardinalityAggregation
54+
- CumulativeSumAggregation
55+
- DateHistogramAggregation
56+
- DateRangeAggregation
57+
- DerivativeAggregation
58+
- DiversifiedSamplerAggregation
59+
- ExtendedStatsAggregation
60+
- ExtendedStatsBucketAggregation
61+
- FiltersAggregation
62+
- GeoBoundsAggregation
63+
- GeoCentroidAggregation
64+
- GeoDistanceAggregation
65+
- GeoHashGridAggregation
66+
- GeoTileGridAggregation
67+
- GlobalAggregation
68+
- HistogramAggregation
69+
- IpRangeAggregation
70+
- MatrixStatsAggregation
71+
- MaxBucketAggregation
72+
- MedianAbsoluteDeviationAggregation
73+
- MinBucketAggregation
74+
- MissingAggregation
75+
- MovingAverageAggregation
76+
- MovingFunctionAggregation
77+
- MovingPercentilesAggregation
78+
- MultiTermsAggregation
79+
- NestedAggregation
80+
- NormalizeAggregation
81+
- ParentAggregation
82+
- PercentileRanksAggregation
83+
- PercentilesAggregation
84+
- PercentilesBucketAggregation
85+
- RangeAggregation
86+
- RareTermsAggregation
87+
- RateAggregation
88+
- ReverseNestedAggregation
89+
- SamplerAggregation
90+
- ScriptedMetricAggregation
91+
- SerialDifferencingAggregation
92+
- SignificantTermsAggregation
93+
- SignificantTextAggregation
94+
- StatsAggregation
95+
- StatsBucketAggregation
96+
- SumAggregation
97+
- SumBucketAggregation
98+
- TopHitsAggregation
99+
- TTestAggregation
100+
- ValueCountAggregation
101+
- VariableWidthHistogramAggregation
102+
- WeightedAverageAggregation
103+
104+
# Aggregate - exclude all except TermsAggregate variants (DoubleTerms, LongTerms, StringTerms, UnmappedTerms)
105+
- AdjacencyMatrixAggregate
106+
- AutoDateHistogramAggregate
107+
- AvgAggregate
108+
- BoxPlotAggregate
109+
- BucketMetricValueAggregate
110+
- CardinalityAggregate
111+
- ChildrenAggregate
112+
- CompositeAggregate
113+
- CumulativeCardinalityAggregate
114+
- DateHistogramAggregate
115+
- DateRangeAggregate
116+
- DerivativeAggregate
117+
- ExtendedStatsAggregate
118+
- ExtendedStatsBucketAggregate
119+
- FilterAggregate
120+
- FiltersAggregate
121+
- GeoBoundsAggregate
122+
- GeoCentroidAggregate
123+
- GeoDistanceAggregate
124+
- GeoHashGridAggregate
125+
- GeoTileGridAggregate
126+
- GlobalAggregate
127+
- HdrPercentileRanksAggregate
128+
- HdrPercentilesAggregate
129+
- HistogramAggregate
130+
- IpRangeAggregate
131+
- LongRareTermsAggregate
132+
- MatrixStatsAggregate
133+
- MedianAbsoluteDeviationAggregate
134+
- MissingAggregate
135+
- MultiTermsAggregate
136+
- NestedAggregate
137+
- ParentAggregate
138+
- PercentilesBucketAggregate
139+
- RangeAggregate
140+
- RateAggregate
141+
- ReverseNestedAggregate
142+
- SamplerAggregate
143+
- ScriptedMetricAggregate
144+
- SignificantLongTermsAggregate
145+
- SignificantStringTermsAggregate
146+
- SimpleValueAggregate
147+
- StatsAggregate
148+
- StatsBucketAggregate
149+
- StringRareTermsAggregate
150+
- SumAggregate
151+
- TDigestPercentileRanksAggregate
152+
- TDigestPercentilesAggregate
153+
- TopHitsAggregate
154+
- TTestAggregate
155+
- UnmappedRareTermsAggregate
156+
- UnmappedSignificantTermsAggregate
157+
- ValueCountAggregate
158+
- VariableWidthHistogramAggregate
159+
- WeightedAvgAggregate

0 commit comments

Comments
 (0)