[Rename] refactor o.e.search.aggregations.bucket package in the server module. (#326)
Rename `org.elasticserach.search.aggregations.bucket` to `org.opensearch.search.aggregations.bucket` in package names and references. Signed-off-by: Rabi Panda <adnapibar@gmail.com>
This commit is contained in:
parent
f216f2e556
commit
e99f000366
|
@ -95,58 +95,58 @@ import org.opensearch.script.mustache.MultiSearchTemplateResponse;
|
||||||
import org.opensearch.script.mustache.SearchTemplateRequest;
|
import org.opensearch.script.mustache.SearchTemplateRequest;
|
||||||
import org.opensearch.script.mustache.SearchTemplateResponse;
|
import org.opensearch.script.mustache.SearchTemplateResponse;
|
||||||
import org.elasticsearch.search.aggregations.Aggregation;
|
import org.elasticsearch.search.aggregations.Aggregation;
|
||||||
import org.elasticsearch.search.aggregations.bucket.adjacency.AdjacencyMatrixAggregationBuilder;
|
import org.opensearch.search.aggregations.bucket.adjacency.AdjacencyMatrixAggregationBuilder;
|
||||||
import org.elasticsearch.search.aggregations.bucket.adjacency.ParsedAdjacencyMatrix;
|
import org.opensearch.search.aggregations.bucket.adjacency.ParsedAdjacencyMatrix;
|
||||||
import org.elasticsearch.search.aggregations.bucket.composite.CompositeAggregationBuilder;
|
import org.opensearch.search.aggregations.bucket.composite.CompositeAggregationBuilder;
|
||||||
import org.elasticsearch.search.aggregations.bucket.composite.ParsedComposite;
|
import org.opensearch.search.aggregations.bucket.composite.ParsedComposite;
|
||||||
import org.elasticsearch.search.aggregations.bucket.filter.FilterAggregationBuilder;
|
import org.opensearch.search.aggregations.bucket.filter.FilterAggregationBuilder;
|
||||||
import org.elasticsearch.search.aggregations.bucket.filter.FiltersAggregationBuilder;
|
import org.opensearch.search.aggregations.bucket.filter.FiltersAggregationBuilder;
|
||||||
import org.elasticsearch.search.aggregations.bucket.filter.ParsedFilter;
|
import org.opensearch.search.aggregations.bucket.filter.ParsedFilter;
|
||||||
import org.elasticsearch.search.aggregations.bucket.filter.ParsedFilters;
|
import org.opensearch.search.aggregations.bucket.filter.ParsedFilters;
|
||||||
import org.elasticsearch.search.aggregations.bucket.geogrid.GeoHashGridAggregationBuilder;
|
import org.opensearch.search.aggregations.bucket.geogrid.GeoHashGridAggregationBuilder;
|
||||||
import org.elasticsearch.search.aggregations.bucket.geogrid.GeoTileGridAggregationBuilder;
|
import org.opensearch.search.aggregations.bucket.geogrid.GeoTileGridAggregationBuilder;
|
||||||
import org.elasticsearch.search.aggregations.bucket.geogrid.ParsedGeoHashGrid;
|
import org.opensearch.search.aggregations.bucket.geogrid.ParsedGeoHashGrid;
|
||||||
import org.elasticsearch.search.aggregations.bucket.geogrid.ParsedGeoTileGrid;
|
import org.opensearch.search.aggregations.bucket.geogrid.ParsedGeoTileGrid;
|
||||||
import org.elasticsearch.search.aggregations.bucket.global.GlobalAggregationBuilder;
|
import org.opensearch.search.aggregations.bucket.global.GlobalAggregationBuilder;
|
||||||
import org.elasticsearch.search.aggregations.bucket.global.ParsedGlobal;
|
import org.opensearch.search.aggregations.bucket.global.ParsedGlobal;
|
||||||
import org.elasticsearch.search.aggregations.bucket.histogram.AutoDateHistogramAggregationBuilder;
|
import org.opensearch.search.aggregations.bucket.histogram.AutoDateHistogramAggregationBuilder;
|
||||||
import org.elasticsearch.search.aggregations.bucket.histogram.DateHistogramAggregationBuilder;
|
import org.opensearch.search.aggregations.bucket.histogram.DateHistogramAggregationBuilder;
|
||||||
import org.elasticsearch.search.aggregations.bucket.histogram.HistogramAggregationBuilder;
|
import org.opensearch.search.aggregations.bucket.histogram.HistogramAggregationBuilder;
|
||||||
import org.elasticsearch.search.aggregations.bucket.histogram.ParsedAutoDateHistogram;
|
import org.opensearch.search.aggregations.bucket.histogram.ParsedAutoDateHistogram;
|
||||||
import org.elasticsearch.search.aggregations.bucket.histogram.ParsedDateHistogram;
|
import org.opensearch.search.aggregations.bucket.histogram.ParsedDateHistogram;
|
||||||
import org.elasticsearch.search.aggregations.bucket.histogram.ParsedHistogram;
|
import org.opensearch.search.aggregations.bucket.histogram.ParsedHistogram;
|
||||||
import org.elasticsearch.search.aggregations.bucket.histogram.ParsedVariableWidthHistogram;
|
import org.opensearch.search.aggregations.bucket.histogram.ParsedVariableWidthHistogram;
|
||||||
import org.elasticsearch.search.aggregations.bucket.histogram.VariableWidthHistogramAggregationBuilder;
|
import org.opensearch.search.aggregations.bucket.histogram.VariableWidthHistogramAggregationBuilder;
|
||||||
import org.elasticsearch.search.aggregations.bucket.missing.MissingAggregationBuilder;
|
import org.opensearch.search.aggregations.bucket.missing.MissingAggregationBuilder;
|
||||||
import org.elasticsearch.search.aggregations.bucket.missing.ParsedMissing;
|
import org.opensearch.search.aggregations.bucket.missing.ParsedMissing;
|
||||||
import org.elasticsearch.search.aggregations.bucket.nested.NestedAggregationBuilder;
|
import org.opensearch.search.aggregations.bucket.nested.NestedAggregationBuilder;
|
||||||
import org.elasticsearch.search.aggregations.bucket.nested.ParsedNested;
|
import org.opensearch.search.aggregations.bucket.nested.ParsedNested;
|
||||||
import org.elasticsearch.search.aggregations.bucket.nested.ParsedReverseNested;
|
import org.opensearch.search.aggregations.bucket.nested.ParsedReverseNested;
|
||||||
import org.elasticsearch.search.aggregations.bucket.nested.ReverseNestedAggregationBuilder;
|
import org.opensearch.search.aggregations.bucket.nested.ReverseNestedAggregationBuilder;
|
||||||
import org.elasticsearch.search.aggregations.bucket.range.DateRangeAggregationBuilder;
|
import org.opensearch.search.aggregations.bucket.range.DateRangeAggregationBuilder;
|
||||||
import org.elasticsearch.search.aggregations.bucket.range.GeoDistanceAggregationBuilder;
|
import org.opensearch.search.aggregations.bucket.range.GeoDistanceAggregationBuilder;
|
||||||
import org.elasticsearch.search.aggregations.bucket.range.IpRangeAggregationBuilder;
|
import org.opensearch.search.aggregations.bucket.range.IpRangeAggregationBuilder;
|
||||||
import org.elasticsearch.search.aggregations.bucket.range.ParsedBinaryRange;
|
import org.opensearch.search.aggregations.bucket.range.ParsedBinaryRange;
|
||||||
import org.elasticsearch.search.aggregations.bucket.range.ParsedDateRange;
|
import org.opensearch.search.aggregations.bucket.range.ParsedDateRange;
|
||||||
import org.elasticsearch.search.aggregations.bucket.range.ParsedGeoDistance;
|
import org.opensearch.search.aggregations.bucket.range.ParsedGeoDistance;
|
||||||
import org.elasticsearch.search.aggregations.bucket.range.ParsedRange;
|
import org.opensearch.search.aggregations.bucket.range.ParsedRange;
|
||||||
import org.elasticsearch.search.aggregations.bucket.range.RangeAggregationBuilder;
|
import org.opensearch.search.aggregations.bucket.range.RangeAggregationBuilder;
|
||||||
import org.elasticsearch.search.aggregations.bucket.sampler.InternalSampler;
|
import org.opensearch.search.aggregations.bucket.sampler.InternalSampler;
|
||||||
import org.elasticsearch.search.aggregations.bucket.sampler.ParsedSampler;
|
import org.opensearch.search.aggregations.bucket.sampler.ParsedSampler;
|
||||||
import org.elasticsearch.search.aggregations.bucket.terms.LongRareTerms;
|
import org.opensearch.search.aggregations.bucket.terms.LongRareTerms;
|
||||||
import org.elasticsearch.search.aggregations.bucket.terms.ParsedLongRareTerms;
|
import org.opensearch.search.aggregations.bucket.terms.ParsedLongRareTerms;
|
||||||
import org.elasticsearch.search.aggregations.bucket.terms.ParsedSignificantLongTerms;
|
import org.opensearch.search.aggregations.bucket.terms.ParsedSignificantLongTerms;
|
||||||
import org.elasticsearch.search.aggregations.bucket.terms.ParsedSignificantStringTerms;
|
import org.opensearch.search.aggregations.bucket.terms.ParsedSignificantStringTerms;
|
||||||
import org.elasticsearch.search.aggregations.bucket.terms.ParsedStringRareTerms;
|
import org.opensearch.search.aggregations.bucket.terms.ParsedStringRareTerms;
|
||||||
import org.elasticsearch.search.aggregations.bucket.terms.SignificantLongTerms;
|
import org.opensearch.search.aggregations.bucket.terms.SignificantLongTerms;
|
||||||
import org.elasticsearch.search.aggregations.bucket.terms.SignificantStringTerms;
|
import org.opensearch.search.aggregations.bucket.terms.SignificantStringTerms;
|
||||||
import org.elasticsearch.search.aggregations.bucket.terms.DoubleTerms;
|
import org.opensearch.search.aggregations.bucket.terms.DoubleTerms;
|
||||||
import org.elasticsearch.search.aggregations.bucket.terms.LongTerms;
|
import org.opensearch.search.aggregations.bucket.terms.LongTerms;
|
||||||
import org.elasticsearch.search.aggregations.bucket.terms.ParsedDoubleTerms;
|
import org.opensearch.search.aggregations.bucket.terms.ParsedDoubleTerms;
|
||||||
import org.elasticsearch.search.aggregations.bucket.terms.ParsedLongTerms;
|
import org.opensearch.search.aggregations.bucket.terms.ParsedLongTerms;
|
||||||
import org.elasticsearch.search.aggregations.bucket.terms.ParsedStringTerms;
|
import org.opensearch.search.aggregations.bucket.terms.ParsedStringTerms;
|
||||||
import org.elasticsearch.search.aggregations.bucket.terms.StringRareTerms;
|
import org.opensearch.search.aggregations.bucket.terms.StringRareTerms;
|
||||||
import org.elasticsearch.search.aggregations.bucket.terms.StringTerms;
|
import org.opensearch.search.aggregations.bucket.terms.StringTerms;
|
||||||
import org.opensearch.search.aggregations.metrics.AvgAggregationBuilder;
|
import org.opensearch.search.aggregations.metrics.AvgAggregationBuilder;
|
||||||
import org.opensearch.search.aggregations.metrics.CardinalityAggregationBuilder;
|
import org.opensearch.search.aggregations.metrics.CardinalityAggregationBuilder;
|
||||||
import org.opensearch.search.aggregations.metrics.ExtendedStatsAggregationBuilder;
|
import org.opensearch.search.aggregations.metrics.ExtendedStatsAggregationBuilder;
|
||||||
|
|
|
@ -94,7 +94,7 @@ import org.opensearch.script.ScriptType;
|
||||||
import org.opensearch.script.mustache.MultiSearchTemplateRequest;
|
import org.opensearch.script.mustache.MultiSearchTemplateRequest;
|
||||||
import org.opensearch.script.mustache.SearchTemplateRequest;
|
import org.opensearch.script.mustache.SearchTemplateRequest;
|
||||||
import org.opensearch.search.Scroll;
|
import org.opensearch.search.Scroll;
|
||||||
import org.elasticsearch.search.aggregations.bucket.terms.TermsAggregationBuilder;
|
import org.opensearch.search.aggregations.bucket.terms.TermsAggregationBuilder;
|
||||||
import org.opensearch.search.aggregations.support.ValueType;
|
import org.opensearch.search.aggregations.support.ValueType;
|
||||||
import org.opensearch.search.builder.SearchSourceBuilder;
|
import org.opensearch.search.builder.SearchSourceBuilder;
|
||||||
import org.opensearch.search.collapse.CollapseBuilder;
|
import org.opensearch.search.collapse.CollapseBuilder;
|
||||||
|
|
|
@ -63,15 +63,15 @@ import org.opensearch.script.mustache.SearchTemplateResponse;
|
||||||
import org.opensearch.search.SearchHit;
|
import org.opensearch.search.SearchHit;
|
||||||
import org.elasticsearch.search.aggregations.AggregationBuilders;
|
import org.elasticsearch.search.aggregations.AggregationBuilders;
|
||||||
import org.elasticsearch.search.aggregations.BucketOrder;
|
import org.elasticsearch.search.aggregations.BucketOrder;
|
||||||
import org.elasticsearch.search.aggregations.bucket.composite.CompositeAggregation;
|
import org.opensearch.search.aggregations.bucket.composite.CompositeAggregation;
|
||||||
import org.elasticsearch.search.aggregations.bucket.composite.CompositeValuesSourceBuilder;
|
import org.opensearch.search.aggregations.bucket.composite.CompositeValuesSourceBuilder;
|
||||||
import org.elasticsearch.search.aggregations.bucket.composite.TermsValuesSourceBuilder;
|
import org.opensearch.search.aggregations.bucket.composite.TermsValuesSourceBuilder;
|
||||||
import org.elasticsearch.search.aggregations.bucket.range.Range;
|
import org.opensearch.search.aggregations.bucket.range.Range;
|
||||||
import org.elasticsearch.search.aggregations.bucket.range.RangeAggregationBuilder;
|
import org.opensearch.search.aggregations.bucket.range.RangeAggregationBuilder;
|
||||||
import org.elasticsearch.search.aggregations.bucket.terms.RareTerms;
|
import org.opensearch.search.aggregations.bucket.terms.RareTerms;
|
||||||
import org.elasticsearch.search.aggregations.bucket.terms.RareTermsAggregationBuilder;
|
import org.opensearch.search.aggregations.bucket.terms.RareTermsAggregationBuilder;
|
||||||
import org.elasticsearch.search.aggregations.bucket.terms.Terms;
|
import org.opensearch.search.aggregations.bucket.terms.Terms;
|
||||||
import org.elasticsearch.search.aggregations.bucket.terms.TermsAggregationBuilder;
|
import org.opensearch.search.aggregations.bucket.terms.TermsAggregationBuilder;
|
||||||
import org.opensearch.search.aggregations.matrix.stats.MatrixStats;
|
import org.opensearch.search.aggregations.matrix.stats.MatrixStats;
|
||||||
import org.opensearch.search.aggregations.matrix.stats.MatrixStatsAggregationBuilder;
|
import org.opensearch.search.aggregations.matrix.stats.MatrixStatsAggregationBuilder;
|
||||||
import org.opensearch.search.aggregations.metrics.WeightedAvg;
|
import org.opensearch.search.aggregations.metrics.WeightedAvg;
|
||||||
|
|
|
@ -86,10 +86,10 @@ import org.opensearch.search.SearchHits;
|
||||||
import org.elasticsearch.search.aggregations.Aggregation;
|
import org.elasticsearch.search.aggregations.Aggregation;
|
||||||
import org.elasticsearch.search.aggregations.AggregationBuilders;
|
import org.elasticsearch.search.aggregations.AggregationBuilders;
|
||||||
import org.elasticsearch.search.aggregations.Aggregations;
|
import org.elasticsearch.search.aggregations.Aggregations;
|
||||||
import org.elasticsearch.search.aggregations.bucket.range.Range;
|
import org.opensearch.search.aggregations.bucket.range.Range;
|
||||||
import org.elasticsearch.search.aggregations.bucket.terms.Terms;
|
import org.opensearch.search.aggregations.bucket.terms.Terms;
|
||||||
import org.elasticsearch.search.aggregations.bucket.terms.Terms.Bucket;
|
import org.opensearch.search.aggregations.bucket.terms.Terms.Bucket;
|
||||||
import org.elasticsearch.search.aggregations.bucket.terms.TermsAggregationBuilder;
|
import org.opensearch.search.aggregations.bucket.terms.TermsAggregationBuilder;
|
||||||
import org.opensearch.search.aggregations.metrics.Avg;
|
import org.opensearch.search.aggregations.metrics.Avg;
|
||||||
import org.opensearch.search.builder.SearchSourceBuilder;
|
import org.opensearch.search.builder.SearchSourceBuilder;
|
||||||
import org.opensearch.search.fetch.subphase.FetchSourceContext;
|
import org.opensearch.search.fetch.subphase.FetchSourceContext;
|
||||||
|
|
|
@ -35,7 +35,7 @@ import org.opensearch.script.Script;
|
||||||
import org.opensearch.script.ScriptType;
|
import org.opensearch.script.ScriptType;
|
||||||
import org.opensearch.search.SearchHits;
|
import org.opensearch.search.SearchHits;
|
||||||
import org.elasticsearch.search.aggregations.AggregationBuilders;
|
import org.elasticsearch.search.aggregations.AggregationBuilders;
|
||||||
import org.elasticsearch.search.aggregations.bucket.histogram.Histogram;
|
import org.opensearch.search.aggregations.bucket.histogram.Histogram;
|
||||||
import org.opensearch.search.aggregations.metrics.Stats;
|
import org.opensearch.search.aggregations.metrics.Stats;
|
||||||
import org.opensearch.search.aggregations.pipeline.SimpleValue;
|
import org.opensearch.search.aggregations.pipeline.SimpleValue;
|
||||||
import org.opensearch.search.sort.SortBuilders;
|
import org.opensearch.search.sort.SortBuilders;
|
||||||
|
|
|
@ -31,7 +31,7 @@ import org.elasticsearch.common.settings.Settings;
|
||||||
import org.opensearch.index.query.QueryBuilders;
|
import org.opensearch.index.query.QueryBuilders;
|
||||||
import org.opensearch.search.SearchHit;
|
import org.opensearch.search.SearchHit;
|
||||||
import org.elasticsearch.search.aggregations.AggregationBuilders;
|
import org.elasticsearch.search.aggregations.AggregationBuilders;
|
||||||
import org.elasticsearch.search.aggregations.bucket.terms.Terms;
|
import org.opensearch.search.aggregations.bucket.terms.Terms;
|
||||||
import org.elasticsearch.test.ESIntegTestCase;
|
import org.elasticsearch.test.ESIntegTestCase;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
|
|
|
@ -28,7 +28,7 @@ import org.elasticsearch.common.settings.Settings;
|
||||||
import org.opensearch.search.SearchHit;
|
import org.opensearch.search.SearchHit;
|
||||||
import org.elasticsearch.search.aggregations.AggregationBuilders;
|
import org.elasticsearch.search.aggregations.AggregationBuilders;
|
||||||
import org.elasticsearch.search.aggregations.InternalAggregation;
|
import org.elasticsearch.search.aggregations.InternalAggregation;
|
||||||
import org.elasticsearch.search.aggregations.bucket.terms.Terms;
|
import org.opensearch.search.aggregations.bucket.terms.Terms;
|
||||||
import org.opensearch.search.aggregations.metrics.Sum;
|
import org.opensearch.search.aggregations.metrics.Sum;
|
||||||
import org.opensearch.search.aggregations.metrics.TopHits;
|
import org.opensearch.search.aggregations.metrics.TopHits;
|
||||||
import org.opensearch.search.sort.SortOrder;
|
import org.opensearch.search.sort.SortOrder;
|
||||||
|
|
|
@ -22,8 +22,8 @@ package org.opensearch.join.aggregations;
|
||||||
import org.opensearch.action.search.SearchRequestBuilder;
|
import org.opensearch.action.search.SearchRequestBuilder;
|
||||||
import org.opensearch.action.search.SearchResponse;
|
import org.opensearch.action.search.SearchResponse;
|
||||||
import org.elasticsearch.search.aggregations.Aggregation;
|
import org.elasticsearch.search.aggregations.Aggregation;
|
||||||
import org.elasticsearch.search.aggregations.bucket.MultiBucketsAggregation;
|
import org.opensearch.search.aggregations.bucket.MultiBucketsAggregation;
|
||||||
import org.elasticsearch.search.aggregations.bucket.terms.Terms;
|
import org.opensearch.search.aggregations.bucket.terms.Terms;
|
||||||
|
|
||||||
import java.util.HashMap;
|
import java.util.HashMap;
|
||||||
import java.util.HashSet;
|
import java.util.HashSet;
|
||||||
|
|
|
@ -40,9 +40,9 @@ import org.opensearch.index.query.functionscore.FunctionScoreQueryBuilder;
|
||||||
import org.opensearch.rest.RestStatus;
|
import org.opensearch.rest.RestStatus;
|
||||||
import org.opensearch.search.SearchHit;
|
import org.opensearch.search.SearchHit;
|
||||||
import org.elasticsearch.search.aggregations.AggregationBuilders;
|
import org.elasticsearch.search.aggregations.AggregationBuilders;
|
||||||
import org.elasticsearch.search.aggregations.bucket.filter.Filter;
|
import org.opensearch.search.aggregations.bucket.filter.Filter;
|
||||||
import org.elasticsearch.search.aggregations.bucket.global.Global;
|
import org.opensearch.search.aggregations.bucket.global.Global;
|
||||||
import org.elasticsearch.search.aggregations.bucket.terms.Terms;
|
import org.opensearch.search.aggregations.bucket.terms.Terms;
|
||||||
import org.opensearch.search.fetch.subphase.highlight.HighlightBuilder;
|
import org.opensearch.search.fetch.subphase.highlight.HighlightBuilder;
|
||||||
import org.opensearch.search.fetch.subphase.highlight.HighlightBuilder.Field;
|
import org.opensearch.search.fetch.subphase.highlight.HighlightBuilder.Field;
|
||||||
import org.opensearch.search.fetch.subphase.highlight.HighlightField;
|
import org.opensearch.search.fetch.subphase.highlight.HighlightField;
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
|
|
||||||
package org.opensearch.join.aggregations;
|
package org.opensearch.join.aggregations;
|
||||||
|
|
||||||
import org.elasticsearch.search.aggregations.bucket.SingleBucketAggregation;
|
import org.opensearch.search.aggregations.bucket.SingleBucketAggregation;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* An single bucket aggregation that translates parent documents to their children documents.
|
* An single bucket aggregation that translates parent documents to their children documents.
|
||||||
|
|
|
@ -24,7 +24,7 @@ import org.elasticsearch.search.aggregations.Aggregator;
|
||||||
import org.elasticsearch.search.aggregations.AggregatorFactories;
|
import org.elasticsearch.search.aggregations.AggregatorFactories;
|
||||||
import org.elasticsearch.search.aggregations.CardinalityUpperBound;
|
import org.elasticsearch.search.aggregations.CardinalityUpperBound;
|
||||||
import org.elasticsearch.search.aggregations.InternalAggregation;
|
import org.elasticsearch.search.aggregations.InternalAggregation;
|
||||||
import org.elasticsearch.search.aggregations.bucket.BucketsAggregator;
|
import org.opensearch.search.aggregations.bucket.BucketsAggregator;
|
||||||
import org.opensearch.search.aggregations.support.ValuesSource;
|
import org.opensearch.search.aggregations.support.ValuesSource;
|
||||||
import org.opensearch.search.internal.SearchContext;
|
import org.opensearch.search.internal.SearchContext;
|
||||||
|
|
||||||
|
|
|
@ -21,7 +21,7 @@ package org.opensearch.join.aggregations;
|
||||||
|
|
||||||
import org.opensearch.common.io.stream.StreamInput;
|
import org.opensearch.common.io.stream.StreamInput;
|
||||||
import org.elasticsearch.search.aggregations.InternalAggregations;
|
import org.elasticsearch.search.aggregations.InternalAggregations;
|
||||||
import org.elasticsearch.search.aggregations.bucket.InternalSingleBucketAggregation;
|
import org.opensearch.search.aggregations.bucket.InternalSingleBucketAggregation;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
|
|
@ -21,7 +21,7 @@ package org.opensearch.join.aggregations;
|
||||||
|
|
||||||
import org.opensearch.common.io.stream.StreamInput;
|
import org.opensearch.common.io.stream.StreamInput;
|
||||||
import org.elasticsearch.search.aggregations.InternalAggregations;
|
import org.elasticsearch.search.aggregations.InternalAggregations;
|
||||||
import org.elasticsearch.search.aggregations.bucket.InternalSingleBucketAggregation;
|
import org.opensearch.search.aggregations.bucket.InternalSingleBucketAggregation;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
|
|
||||||
package org.opensearch.join.aggregations;
|
package org.opensearch.join.aggregations;
|
||||||
|
|
||||||
import org.elasticsearch.search.aggregations.bucket.SingleBucketAggregation;
|
import org.opensearch.search.aggregations.bucket.SingleBucketAggregation;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* An single bucket aggregation that translates child documents to their parent documents.
|
* An single bucket aggregation that translates child documents to their parent documents.
|
||||||
|
|
|
@ -37,9 +37,9 @@ import org.elasticsearch.search.aggregations.Aggregator;
|
||||||
import org.elasticsearch.search.aggregations.AggregatorFactories;
|
import org.elasticsearch.search.aggregations.AggregatorFactories;
|
||||||
import org.elasticsearch.search.aggregations.CardinalityUpperBound;
|
import org.elasticsearch.search.aggregations.CardinalityUpperBound;
|
||||||
import org.elasticsearch.search.aggregations.LeafBucketCollector;
|
import org.elasticsearch.search.aggregations.LeafBucketCollector;
|
||||||
import org.elasticsearch.search.aggregations.bucket.BucketsAggregator;
|
import org.opensearch.search.aggregations.bucket.BucketsAggregator;
|
||||||
import org.elasticsearch.search.aggregations.bucket.SingleBucketAggregator;
|
import org.opensearch.search.aggregations.bucket.SingleBucketAggregator;
|
||||||
import org.elasticsearch.search.aggregations.bucket.terms.LongKeyedBucketOrds;
|
import org.opensearch.search.aggregations.bucket.terms.LongKeyedBucketOrds;
|
||||||
import org.opensearch.search.aggregations.support.ValuesSource;
|
import org.opensearch.search.aggregations.support.ValuesSource;
|
||||||
import org.opensearch.search.internal.SearchContext;
|
import org.opensearch.search.internal.SearchContext;
|
||||||
|
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
package org.opensearch.join.aggregations;
|
package org.opensearch.join.aggregations;
|
||||||
|
|
||||||
import org.elasticsearch.common.xcontent.XContentParser;
|
import org.elasticsearch.common.xcontent.XContentParser;
|
||||||
import org.elasticsearch.search.aggregations.bucket.ParsedSingleBucketAggregation;
|
import org.opensearch.search.aggregations.bucket.ParsedSingleBucketAggregation;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
|
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
package org.opensearch.join.aggregations;
|
package org.opensearch.join.aggregations;
|
||||||
|
|
||||||
import org.elasticsearch.common.xcontent.XContentParser;
|
import org.elasticsearch.common.xcontent.XContentParser;
|
||||||
import org.elasticsearch.search.aggregations.bucket.ParsedSingleBucketAggregation;
|
import org.opensearch.search.aggregations.bucket.ParsedSingleBucketAggregation;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
|
|
||||||
|
|
|
@ -55,8 +55,8 @@ import org.elasticsearch.plugins.SearchPlugin;
|
||||||
import org.elasticsearch.search.aggregations.Aggregation;
|
import org.elasticsearch.search.aggregations.Aggregation;
|
||||||
import org.elasticsearch.search.aggregations.AggregationBuilder;
|
import org.elasticsearch.search.aggregations.AggregationBuilder;
|
||||||
import org.elasticsearch.search.aggregations.AggregatorTestCase;
|
import org.elasticsearch.search.aggregations.AggregatorTestCase;
|
||||||
import org.elasticsearch.search.aggregations.bucket.terms.LongTerms;
|
import org.opensearch.search.aggregations.bucket.terms.LongTerms;
|
||||||
import org.elasticsearch.search.aggregations.bucket.terms.TermsAggregationBuilder;
|
import org.opensearch.search.aggregations.bucket.terms.TermsAggregationBuilder;
|
||||||
import org.opensearch.search.aggregations.metrics.InternalMin;
|
import org.opensearch.search.aggregations.metrics.InternalMin;
|
||||||
import org.opensearch.search.aggregations.metrics.MinAggregationBuilder;
|
import org.opensearch.search.aggregations.metrics.MinAggregationBuilder;
|
||||||
|
|
||||||
|
|
|
@ -27,7 +27,7 @@ import org.elasticsearch.plugins.SearchPlugin;
|
||||||
import org.elasticsearch.search.aggregations.Aggregation;
|
import org.elasticsearch.search.aggregations.Aggregation;
|
||||||
import org.elasticsearch.search.aggregations.InternalAggregations;
|
import org.elasticsearch.search.aggregations.InternalAggregations;
|
||||||
import org.elasticsearch.search.aggregations.InternalSingleBucketAggregationTestCase;
|
import org.elasticsearch.search.aggregations.InternalSingleBucketAggregationTestCase;
|
||||||
import org.elasticsearch.search.aggregations.bucket.ParsedSingleBucketAggregation;
|
import org.opensearch.search.aggregations.bucket.ParsedSingleBucketAggregation;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
|
@ -26,7 +26,7 @@ import org.elasticsearch.plugins.SearchPlugin;
|
||||||
import org.elasticsearch.search.aggregations.Aggregation;
|
import org.elasticsearch.search.aggregations.Aggregation;
|
||||||
import org.elasticsearch.search.aggregations.InternalAggregations;
|
import org.elasticsearch.search.aggregations.InternalAggregations;
|
||||||
import org.elasticsearch.search.aggregations.InternalSingleBucketAggregationTestCase;
|
import org.elasticsearch.search.aggregations.InternalSingleBucketAggregationTestCase;
|
||||||
import org.elasticsearch.search.aggregations.bucket.ParsedSingleBucketAggregation;
|
import org.opensearch.search.aggregations.bucket.ParsedSingleBucketAggregation;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
|
@ -55,8 +55,8 @@ import org.opensearch.join.mapper.ParentJoinFieldMapper;
|
||||||
import org.elasticsearch.plugins.SearchPlugin;
|
import org.elasticsearch.plugins.SearchPlugin;
|
||||||
import org.elasticsearch.search.aggregations.AggregationBuilder;
|
import org.elasticsearch.search.aggregations.AggregationBuilder;
|
||||||
import org.elasticsearch.search.aggregations.AggregatorTestCase;
|
import org.elasticsearch.search.aggregations.AggregatorTestCase;
|
||||||
import org.elasticsearch.search.aggregations.bucket.terms.StringTerms;
|
import org.opensearch.search.aggregations.bucket.terms.StringTerms;
|
||||||
import org.elasticsearch.search.aggregations.bucket.terms.TermsAggregationBuilder;
|
import org.opensearch.search.aggregations.bucket.terms.TermsAggregationBuilder;
|
||||||
import org.opensearch.search.aggregations.metrics.InternalMin;
|
import org.opensearch.search.aggregations.metrics.InternalMin;
|
||||||
import org.opensearch.search.aggregations.metrics.MinAggregationBuilder;
|
import org.opensearch.search.aggregations.metrics.MinAggregationBuilder;
|
||||||
|
|
||||||
|
|
|
@ -21,43 +21,43 @@ package org.elasticsearch.search.aggregations;
|
||||||
import org.opensearch.common.geo.GeoDistance;
|
import org.opensearch.common.geo.GeoDistance;
|
||||||
import org.opensearch.common.geo.GeoPoint;
|
import org.opensearch.common.geo.GeoPoint;
|
||||||
import org.elasticsearch.index.query.QueryBuilder;
|
import org.elasticsearch.index.query.QueryBuilder;
|
||||||
import org.elasticsearch.search.aggregations.bucket.adjacency.AdjacencyMatrix;
|
import org.opensearch.search.aggregations.bucket.adjacency.AdjacencyMatrix;
|
||||||
import org.elasticsearch.search.aggregations.bucket.adjacency.AdjacencyMatrixAggregationBuilder;
|
import org.opensearch.search.aggregations.bucket.adjacency.AdjacencyMatrixAggregationBuilder;
|
||||||
import org.elasticsearch.search.aggregations.bucket.composite.CompositeAggregationBuilder;
|
import org.opensearch.search.aggregations.bucket.composite.CompositeAggregationBuilder;
|
||||||
import org.elasticsearch.search.aggregations.bucket.composite.CompositeValuesSourceBuilder;
|
import org.opensearch.search.aggregations.bucket.composite.CompositeValuesSourceBuilder;
|
||||||
import org.elasticsearch.search.aggregations.bucket.filter.Filter;
|
import org.opensearch.search.aggregations.bucket.filter.Filter;
|
||||||
import org.elasticsearch.search.aggregations.bucket.filter.FilterAggregationBuilder;
|
import org.opensearch.search.aggregations.bucket.filter.FilterAggregationBuilder;
|
||||||
import org.elasticsearch.search.aggregations.bucket.filter.Filters;
|
import org.opensearch.search.aggregations.bucket.filter.Filters;
|
||||||
import org.elasticsearch.search.aggregations.bucket.filter.FiltersAggregationBuilder;
|
import org.opensearch.search.aggregations.bucket.filter.FiltersAggregationBuilder;
|
||||||
import org.elasticsearch.search.aggregations.bucket.filter.FiltersAggregator.KeyedFilter;
|
import org.opensearch.search.aggregations.bucket.filter.FiltersAggregator.KeyedFilter;
|
||||||
import org.elasticsearch.search.aggregations.bucket.geogrid.InternalGeoHashGrid;
|
import org.opensearch.search.aggregations.bucket.geogrid.InternalGeoHashGrid;
|
||||||
import org.elasticsearch.search.aggregations.bucket.geogrid.GeoHashGridAggregationBuilder;
|
import org.opensearch.search.aggregations.bucket.geogrid.GeoHashGridAggregationBuilder;
|
||||||
import org.elasticsearch.search.aggregations.bucket.geogrid.InternalGeoTileGrid;
|
import org.opensearch.search.aggregations.bucket.geogrid.InternalGeoTileGrid;
|
||||||
import org.elasticsearch.search.aggregations.bucket.geogrid.GeoTileGridAggregationBuilder;
|
import org.opensearch.search.aggregations.bucket.geogrid.GeoTileGridAggregationBuilder;
|
||||||
import org.elasticsearch.search.aggregations.bucket.global.Global;
|
import org.opensearch.search.aggregations.bucket.global.Global;
|
||||||
import org.elasticsearch.search.aggregations.bucket.global.GlobalAggregationBuilder;
|
import org.opensearch.search.aggregations.bucket.global.GlobalAggregationBuilder;
|
||||||
import org.elasticsearch.search.aggregations.bucket.histogram.DateHistogramAggregationBuilder;
|
import org.opensearch.search.aggregations.bucket.histogram.DateHistogramAggregationBuilder;
|
||||||
import org.elasticsearch.search.aggregations.bucket.histogram.Histogram;
|
import org.opensearch.search.aggregations.bucket.histogram.Histogram;
|
||||||
import org.elasticsearch.search.aggregations.bucket.histogram.HistogramAggregationBuilder;
|
import org.opensearch.search.aggregations.bucket.histogram.HistogramAggregationBuilder;
|
||||||
import org.elasticsearch.search.aggregations.bucket.missing.Missing;
|
import org.opensearch.search.aggregations.bucket.missing.Missing;
|
||||||
import org.elasticsearch.search.aggregations.bucket.missing.MissingAggregationBuilder;
|
import org.opensearch.search.aggregations.bucket.missing.MissingAggregationBuilder;
|
||||||
import org.elasticsearch.search.aggregations.bucket.nested.Nested;
|
import org.opensearch.search.aggregations.bucket.nested.Nested;
|
||||||
import org.elasticsearch.search.aggregations.bucket.nested.NestedAggregationBuilder;
|
import org.opensearch.search.aggregations.bucket.nested.NestedAggregationBuilder;
|
||||||
import org.elasticsearch.search.aggregations.bucket.nested.ReverseNested;
|
import org.opensearch.search.aggregations.bucket.nested.ReverseNested;
|
||||||
import org.elasticsearch.search.aggregations.bucket.nested.ReverseNestedAggregationBuilder;
|
import org.opensearch.search.aggregations.bucket.nested.ReverseNestedAggregationBuilder;
|
||||||
import org.elasticsearch.search.aggregations.bucket.range.DateRangeAggregationBuilder;
|
import org.opensearch.search.aggregations.bucket.range.DateRangeAggregationBuilder;
|
||||||
import org.elasticsearch.search.aggregations.bucket.range.GeoDistanceAggregationBuilder;
|
import org.opensearch.search.aggregations.bucket.range.GeoDistanceAggregationBuilder;
|
||||||
import org.elasticsearch.search.aggregations.bucket.range.IpRangeAggregationBuilder;
|
import org.opensearch.search.aggregations.bucket.range.IpRangeAggregationBuilder;
|
||||||
import org.elasticsearch.search.aggregations.bucket.range.Range;
|
import org.opensearch.search.aggregations.bucket.range.Range;
|
||||||
import org.elasticsearch.search.aggregations.bucket.range.RangeAggregationBuilder;
|
import org.opensearch.search.aggregations.bucket.range.RangeAggregationBuilder;
|
||||||
import org.elasticsearch.search.aggregations.bucket.sampler.DiversifiedAggregationBuilder;
|
import org.opensearch.search.aggregations.bucket.sampler.DiversifiedAggregationBuilder;
|
||||||
import org.elasticsearch.search.aggregations.bucket.sampler.Sampler;
|
import org.opensearch.search.aggregations.bucket.sampler.Sampler;
|
||||||
import org.elasticsearch.search.aggregations.bucket.sampler.SamplerAggregationBuilder;
|
import org.opensearch.search.aggregations.bucket.sampler.SamplerAggregationBuilder;
|
||||||
import org.elasticsearch.search.aggregations.bucket.terms.SignificantTerms;
|
import org.opensearch.search.aggregations.bucket.terms.SignificantTerms;
|
||||||
import org.elasticsearch.search.aggregations.bucket.terms.SignificantTermsAggregationBuilder;
|
import org.opensearch.search.aggregations.bucket.terms.SignificantTermsAggregationBuilder;
|
||||||
import org.elasticsearch.search.aggregations.bucket.terms.SignificantTextAggregationBuilder;
|
import org.opensearch.search.aggregations.bucket.terms.SignificantTextAggregationBuilder;
|
||||||
import org.elasticsearch.search.aggregations.bucket.terms.Terms;
|
import org.opensearch.search.aggregations.bucket.terms.Terms;
|
||||||
import org.elasticsearch.search.aggregations.bucket.terms.TermsAggregationBuilder;
|
import org.opensearch.search.aggregations.bucket.terms.TermsAggregationBuilder;
|
||||||
import org.opensearch.search.aggregations.metrics.Avg;
|
import org.opensearch.search.aggregations.metrics.Avg;
|
||||||
import org.opensearch.search.aggregations.metrics.AvgAggregationBuilder;
|
import org.opensearch.search.aggregations.metrics.AvgAggregationBuilder;
|
||||||
import org.opensearch.search.aggregations.metrics.Cardinality;
|
import org.opensearch.search.aggregations.metrics.Cardinality;
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.apache.lucene.search.Collector;
|
||||||
import org.apache.lucene.search.Query;
|
import org.apache.lucene.search.Query;
|
||||||
import org.opensearch.common.inject.Inject;
|
import org.opensearch.common.inject.Inject;
|
||||||
import org.opensearch.common.lucene.search.Queries;
|
import org.opensearch.common.lucene.search.Queries;
|
||||||
import org.elasticsearch.search.aggregations.bucket.global.GlobalAggregator;
|
import org.opensearch.search.aggregations.bucket.global.GlobalAggregator;
|
||||||
import org.opensearch.search.internal.SearchContext;
|
import org.opensearch.search.internal.SearchContext;
|
||||||
import org.opensearch.search.profile.query.CollectorResult;
|
import org.opensearch.search.profile.query.CollectorResult;
|
||||||
import org.opensearch.search.profile.query.InternalProfileCollector;
|
import org.opensearch.search.profile.query.InternalProfileCollector;
|
||||||
|
|
|
@ -33,8 +33,8 @@ import org.elasticsearch.common.xcontent.XContentParser;
|
||||||
import org.elasticsearch.index.query.QueryRewriteContext;
|
import org.elasticsearch.index.query.QueryRewriteContext;
|
||||||
import org.elasticsearch.index.query.QueryShardContext;
|
import org.elasticsearch.index.query.QueryShardContext;
|
||||||
import org.elasticsearch.index.query.Rewriteable;
|
import org.elasticsearch.index.query.Rewriteable;
|
||||||
import org.elasticsearch.search.aggregations.bucket.global.GlobalAggregationBuilder;
|
import org.opensearch.search.aggregations.bucket.global.GlobalAggregationBuilder;
|
||||||
import org.elasticsearch.search.aggregations.bucket.terms.TermsAggregationBuilder;
|
import org.opensearch.search.aggregations.bucket.terms.TermsAggregationBuilder;
|
||||||
import org.opensearch.search.aggregations.pipeline.PipelineAggregator;
|
import org.opensearch.search.aggregations.pipeline.PipelineAggregator;
|
||||||
import org.opensearch.search.aggregations.pipeline.PipelineAggregator.PipelineTree;
|
import org.opensearch.search.aggregations.pipeline.PipelineAggregator.PipelineTree;
|
||||||
import org.opensearch.search.aggregations.support.AggregationPath;
|
import org.opensearch.search.aggregations.support.AggregationPath;
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.opensearch.common.Strings;
|
||||||
import org.opensearch.common.io.stream.StreamOutput;
|
import org.opensearch.common.io.stream.StreamOutput;
|
||||||
import org.opensearch.common.io.stream.Writeable;
|
import org.opensearch.common.io.stream.Writeable;
|
||||||
import org.elasticsearch.common.xcontent.ToXContentObject;
|
import org.elasticsearch.common.xcontent.ToXContentObject;
|
||||||
import org.elasticsearch.search.aggregations.bucket.MultiBucketsAggregation.Bucket;
|
import org.opensearch.search.aggregations.bucket.MultiBucketsAggregation.Bucket;
|
||||||
import org.opensearch.search.aggregations.support.AggregationPath;
|
import org.opensearch.search.aggregations.support.AggregationPath;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
|
|
|
@ -19,9 +19,9 @@
|
||||||
|
|
||||||
package org.elasticsearch.search.aggregations;
|
package org.elasticsearch.search.aggregations;
|
||||||
|
|
||||||
import org.elasticsearch.search.aggregations.bucket.BucketsAggregator;
|
import org.opensearch.search.aggregations.bucket.BucketsAggregator;
|
||||||
import org.elasticsearch.search.aggregations.bucket.filter.FilterAggregator;
|
import org.opensearch.search.aggregations.bucket.filter.FilterAggregator;
|
||||||
import org.elasticsearch.search.aggregations.bucket.range.RangeAggregator;
|
import org.opensearch.search.aggregations.bucket.range.RangeAggregator;
|
||||||
|
|
||||||
import java.util.function.IntFunction;
|
import java.util.function.IntFunction;
|
||||||
|
|
||||||
|
|
|
@ -21,8 +21,8 @@ package org.elasticsearch.search.aggregations;
|
||||||
|
|
||||||
import org.opensearch.common.io.stream.StreamInput;
|
import org.opensearch.common.io.stream.StreamInput;
|
||||||
import org.opensearch.common.io.stream.Writeable;
|
import org.opensearch.common.io.stream.Writeable;
|
||||||
import org.elasticsearch.search.aggregations.bucket.MultiBucketsAggregation;
|
import org.opensearch.search.aggregations.bucket.MultiBucketsAggregation;
|
||||||
import org.elasticsearch.search.aggregations.bucket.SingleBucketAggregation;
|
import org.opensearch.search.aggregations.bucket.SingleBucketAggregation;
|
||||||
import org.opensearch.search.aggregations.pipeline.PipelineAggregator.PipelineTree;
|
import org.opensearch.search.aggregations.pipeline.PipelineAggregator.PipelineTree;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
|
|
|
@ -28,7 +28,7 @@ import org.elasticsearch.common.xcontent.XContent;
|
||||||
import org.elasticsearch.common.xcontent.XContentBuilder;
|
import org.elasticsearch.common.xcontent.XContentBuilder;
|
||||||
import org.elasticsearch.common.xcontent.XContentParser;
|
import org.elasticsearch.common.xcontent.XContentParser;
|
||||||
import org.elasticsearch.search.aggregations.Aggregator.BucketComparator;
|
import org.elasticsearch.search.aggregations.Aggregator.BucketComparator;
|
||||||
import org.elasticsearch.search.aggregations.bucket.MultiBucketsAggregation.Bucket;
|
import org.opensearch.search.aggregations.bucket.MultiBucketsAggregation.Bucket;
|
||||||
import org.opensearch.search.aggregations.support.AggregationPath;
|
import org.opensearch.search.aggregations.support.AggregationPath;
|
||||||
import org.opensearch.search.sort.SortOrder;
|
import org.opensearch.search.sort.SortOrder;
|
||||||
|
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
*/
|
*/
|
||||||
package org.elasticsearch.search.aggregations;
|
package org.elasticsearch.search.aggregations;
|
||||||
|
|
||||||
import org.elasticsearch.search.aggregations.bucket.MultiBucketsAggregation.Bucket;
|
import org.opensearch.search.aggregations.bucket.MultiBucketsAggregation.Bucket;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Defines behavior for comparing {@link Bucket#getKey() bucket keys} to imposes a total ordering
|
* Defines behavior for comparing {@link Bucket#getKey() bucket keys} to imposes a total ordering
|
||||||
|
|
|
@ -21,7 +21,7 @@ package org.elasticsearch.search.aggregations;
|
||||||
|
|
||||||
import org.apache.lucene.search.LeafCollector;
|
import org.apache.lucene.search.LeafCollector;
|
||||||
import org.apache.lucene.search.Scorable;
|
import org.apache.lucene.search.Scorable;
|
||||||
import org.elasticsearch.search.aggregations.bucket.terms.LongKeyedBucketOrds;
|
import org.opensearch.search.aggregations.bucket.terms.LongKeyedBucketOrds;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.util.stream.Stream;
|
import java.util.stream.Stream;
|
||||||
|
|
|
@ -26,7 +26,7 @@ import org.elasticsearch.common.settings.Setting;
|
||||||
import org.elasticsearch.common.settings.Settings;
|
import org.elasticsearch.common.settings.Settings;
|
||||||
import org.elasticsearch.common.xcontent.XContentBuilder;
|
import org.elasticsearch.common.xcontent.XContentBuilder;
|
||||||
import org.opensearch.rest.RestStatus;
|
import org.opensearch.rest.RestStatus;
|
||||||
import org.elasticsearch.search.aggregations.bucket.BucketsAggregator;
|
import org.opensearch.search.aggregations.bucket.BucketsAggregator;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.util.function.IntConsumer;
|
import java.util.function.IntConsumer;
|
||||||
|
|
|
@ -25,7 +25,7 @@ import org.elasticsearch.common.xcontent.ObjectParser;
|
||||||
import org.elasticsearch.common.xcontent.XContentBuilder;
|
import org.elasticsearch.common.xcontent.XContentBuilder;
|
||||||
import org.elasticsearch.common.xcontent.XContentParser;
|
import org.elasticsearch.common.xcontent.XContentParser;
|
||||||
import org.elasticsearch.common.xcontent.XContentParserUtils;
|
import org.elasticsearch.common.xcontent.XContentParserUtils;
|
||||||
import org.elasticsearch.search.aggregations.bucket.MultiBucketsAggregation;
|
import org.opensearch.search.aggregations.bucket.MultiBucketsAggregation;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
|
|
|
@ -26,9 +26,9 @@ import org.elasticsearch.common.xcontent.ToXContentFragment;
|
||||||
import org.elasticsearch.index.query.QueryRewriteContext;
|
import org.elasticsearch.index.query.QueryRewriteContext;
|
||||||
import org.elasticsearch.index.query.Rewriteable;
|
import org.elasticsearch.index.query.Rewriteable;
|
||||||
import org.elasticsearch.search.aggregations.AggregatorFactories.Builder;
|
import org.elasticsearch.search.aggregations.AggregatorFactories.Builder;
|
||||||
import org.elasticsearch.search.aggregations.bucket.histogram.AutoDateHistogramAggregationBuilder;
|
import org.opensearch.search.aggregations.bucket.histogram.AutoDateHistogramAggregationBuilder;
|
||||||
import org.elasticsearch.search.aggregations.bucket.histogram.DateHistogramAggregationBuilder;
|
import org.opensearch.search.aggregations.bucket.histogram.DateHistogramAggregationBuilder;
|
||||||
import org.elasticsearch.search.aggregations.bucket.histogram.HistogramAggregationBuilder;
|
import org.opensearch.search.aggregations.bucket.histogram.HistogramAggregationBuilder;
|
||||||
import org.opensearch.search.aggregations.pipeline.PipelineAggregator;
|
import org.opensearch.search.aggregations.pipeline.PipelineAggregator;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
|
|
|
@ -34,7 +34,7 @@ import org.opensearch.common.time.DateMathParser;
|
||||||
import org.opensearch.common.time.DateUtils;
|
import org.opensearch.common.time.DateUtils;
|
||||||
import org.opensearch.geometry.utils.Geohash;
|
import org.opensearch.geometry.utils.Geohash;
|
||||||
import org.elasticsearch.index.mapper.DateFieldMapper;
|
import org.elasticsearch.index.mapper.DateFieldMapper;
|
||||||
import org.elasticsearch.search.aggregations.bucket.geogrid.GeoTileUtils;
|
import org.opensearch.search.aggregations.bucket.geogrid.GeoTileUtils;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.math.BigInteger;
|
import java.math.BigInteger;
|
||||||
|
|
|
@ -104,67 +104,67 @@ import org.elasticsearch.search.aggregations.AggregationBuilder;
|
||||||
import org.elasticsearch.search.aggregations.BaseAggregationBuilder;
|
import org.elasticsearch.search.aggregations.BaseAggregationBuilder;
|
||||||
import org.elasticsearch.search.aggregations.InternalAggregation;
|
import org.elasticsearch.search.aggregations.InternalAggregation;
|
||||||
import org.elasticsearch.search.aggregations.PipelineAggregationBuilder;
|
import org.elasticsearch.search.aggregations.PipelineAggregationBuilder;
|
||||||
import org.elasticsearch.search.aggregations.bucket.adjacency.AdjacencyMatrixAggregationBuilder;
|
import org.opensearch.search.aggregations.bucket.adjacency.AdjacencyMatrixAggregationBuilder;
|
||||||
import org.elasticsearch.search.aggregations.bucket.adjacency.InternalAdjacencyMatrix;
|
import org.opensearch.search.aggregations.bucket.adjacency.InternalAdjacencyMatrix;
|
||||||
import org.elasticsearch.search.aggregations.bucket.composite.CompositeAggregationBuilder;
|
import org.opensearch.search.aggregations.bucket.composite.CompositeAggregationBuilder;
|
||||||
import org.elasticsearch.search.aggregations.bucket.composite.InternalComposite;
|
import org.opensearch.search.aggregations.bucket.composite.InternalComposite;
|
||||||
import org.elasticsearch.search.aggregations.bucket.filter.FilterAggregationBuilder;
|
import org.opensearch.search.aggregations.bucket.filter.FilterAggregationBuilder;
|
||||||
import org.elasticsearch.search.aggregations.bucket.filter.FiltersAggregationBuilder;
|
import org.opensearch.search.aggregations.bucket.filter.FiltersAggregationBuilder;
|
||||||
import org.elasticsearch.search.aggregations.bucket.filter.InternalFilter;
|
import org.opensearch.search.aggregations.bucket.filter.InternalFilter;
|
||||||
import org.elasticsearch.search.aggregations.bucket.filter.InternalFilters;
|
import org.opensearch.search.aggregations.bucket.filter.InternalFilters;
|
||||||
import org.elasticsearch.search.aggregations.bucket.geogrid.GeoHashGridAggregationBuilder;
|
import org.opensearch.search.aggregations.bucket.geogrid.GeoHashGridAggregationBuilder;
|
||||||
import org.elasticsearch.search.aggregations.bucket.geogrid.GeoTileGridAggregationBuilder;
|
import org.opensearch.search.aggregations.bucket.geogrid.GeoTileGridAggregationBuilder;
|
||||||
import org.elasticsearch.search.aggregations.bucket.geogrid.InternalGeoHashGrid;
|
import org.opensearch.search.aggregations.bucket.geogrid.InternalGeoHashGrid;
|
||||||
import org.elasticsearch.search.aggregations.bucket.geogrid.InternalGeoTileGrid;
|
import org.opensearch.search.aggregations.bucket.geogrid.InternalGeoTileGrid;
|
||||||
import org.elasticsearch.search.aggregations.bucket.global.GlobalAggregationBuilder;
|
import org.opensearch.search.aggregations.bucket.global.GlobalAggregationBuilder;
|
||||||
import org.elasticsearch.search.aggregations.bucket.global.InternalGlobal;
|
import org.opensearch.search.aggregations.bucket.global.InternalGlobal;
|
||||||
import org.elasticsearch.search.aggregations.bucket.histogram.AutoDateHistogramAggregationBuilder;
|
import org.opensearch.search.aggregations.bucket.histogram.AutoDateHistogramAggregationBuilder;
|
||||||
import org.elasticsearch.search.aggregations.bucket.histogram.DateHistogramAggregationBuilder;
|
import org.opensearch.search.aggregations.bucket.histogram.DateHistogramAggregationBuilder;
|
||||||
import org.elasticsearch.search.aggregations.bucket.histogram.HistogramAggregationBuilder;
|
import org.opensearch.search.aggregations.bucket.histogram.HistogramAggregationBuilder;
|
||||||
import org.elasticsearch.search.aggregations.bucket.histogram.InternalAutoDateHistogram;
|
import org.opensearch.search.aggregations.bucket.histogram.InternalAutoDateHistogram;
|
||||||
import org.elasticsearch.search.aggregations.bucket.histogram.InternalDateHistogram;
|
import org.opensearch.search.aggregations.bucket.histogram.InternalDateHistogram;
|
||||||
import org.elasticsearch.search.aggregations.bucket.histogram.InternalHistogram;
|
import org.opensearch.search.aggregations.bucket.histogram.InternalHistogram;
|
||||||
import org.elasticsearch.search.aggregations.bucket.histogram.InternalVariableWidthHistogram;
|
import org.opensearch.search.aggregations.bucket.histogram.InternalVariableWidthHistogram;
|
||||||
import org.elasticsearch.search.aggregations.bucket.histogram.VariableWidthHistogramAggregationBuilder;
|
import org.opensearch.search.aggregations.bucket.histogram.VariableWidthHistogramAggregationBuilder;
|
||||||
import org.elasticsearch.search.aggregations.bucket.missing.InternalMissing;
|
import org.opensearch.search.aggregations.bucket.missing.InternalMissing;
|
||||||
import org.elasticsearch.search.aggregations.bucket.missing.MissingAggregationBuilder;
|
import org.opensearch.search.aggregations.bucket.missing.MissingAggregationBuilder;
|
||||||
import org.elasticsearch.search.aggregations.bucket.nested.InternalNested;
|
import org.opensearch.search.aggregations.bucket.nested.InternalNested;
|
||||||
import org.elasticsearch.search.aggregations.bucket.nested.InternalReverseNested;
|
import org.opensearch.search.aggregations.bucket.nested.InternalReverseNested;
|
||||||
import org.elasticsearch.search.aggregations.bucket.nested.NestedAggregationBuilder;
|
import org.opensearch.search.aggregations.bucket.nested.NestedAggregationBuilder;
|
||||||
import org.elasticsearch.search.aggregations.bucket.nested.ReverseNestedAggregationBuilder;
|
import org.opensearch.search.aggregations.bucket.nested.ReverseNestedAggregationBuilder;
|
||||||
import org.elasticsearch.search.aggregations.bucket.range.DateRangeAggregationBuilder;
|
import org.opensearch.search.aggregations.bucket.range.DateRangeAggregationBuilder;
|
||||||
import org.elasticsearch.search.aggregations.bucket.range.GeoDistanceAggregationBuilder;
|
import org.opensearch.search.aggregations.bucket.range.GeoDistanceAggregationBuilder;
|
||||||
import org.elasticsearch.search.aggregations.bucket.range.InternalBinaryRange;
|
import org.opensearch.search.aggregations.bucket.range.InternalBinaryRange;
|
||||||
import org.elasticsearch.search.aggregations.bucket.range.InternalDateRange;
|
import org.opensearch.search.aggregations.bucket.range.InternalDateRange;
|
||||||
import org.elasticsearch.search.aggregations.bucket.range.InternalGeoDistance;
|
import org.opensearch.search.aggregations.bucket.range.InternalGeoDistance;
|
||||||
import org.elasticsearch.search.aggregations.bucket.range.InternalRange;
|
import org.opensearch.search.aggregations.bucket.range.InternalRange;
|
||||||
import org.elasticsearch.search.aggregations.bucket.range.IpRangeAggregationBuilder;
|
import org.opensearch.search.aggregations.bucket.range.IpRangeAggregationBuilder;
|
||||||
import org.elasticsearch.search.aggregations.bucket.range.RangeAggregationBuilder;
|
import org.opensearch.search.aggregations.bucket.range.RangeAggregationBuilder;
|
||||||
import org.elasticsearch.search.aggregations.bucket.sampler.DiversifiedAggregationBuilder;
|
import org.opensearch.search.aggregations.bucket.sampler.DiversifiedAggregationBuilder;
|
||||||
import org.elasticsearch.search.aggregations.bucket.sampler.InternalSampler;
|
import org.opensearch.search.aggregations.bucket.sampler.InternalSampler;
|
||||||
import org.elasticsearch.search.aggregations.bucket.sampler.SamplerAggregationBuilder;
|
import org.opensearch.search.aggregations.bucket.sampler.SamplerAggregationBuilder;
|
||||||
import org.elasticsearch.search.aggregations.bucket.sampler.UnmappedSampler;
|
import org.opensearch.search.aggregations.bucket.sampler.UnmappedSampler;
|
||||||
import org.elasticsearch.search.aggregations.bucket.terms.DoubleTerms;
|
import org.opensearch.search.aggregations.bucket.terms.DoubleTerms;
|
||||||
import org.elasticsearch.search.aggregations.bucket.terms.LongRareTerms;
|
import org.opensearch.search.aggregations.bucket.terms.LongRareTerms;
|
||||||
import org.elasticsearch.search.aggregations.bucket.terms.LongTerms;
|
import org.opensearch.search.aggregations.bucket.terms.LongTerms;
|
||||||
import org.elasticsearch.search.aggregations.bucket.terms.RareTermsAggregationBuilder;
|
import org.opensearch.search.aggregations.bucket.terms.RareTermsAggregationBuilder;
|
||||||
import org.elasticsearch.search.aggregations.bucket.terms.SignificantLongTerms;
|
import org.opensearch.search.aggregations.bucket.terms.SignificantLongTerms;
|
||||||
import org.elasticsearch.search.aggregations.bucket.terms.SignificantStringTerms;
|
import org.opensearch.search.aggregations.bucket.terms.SignificantStringTerms;
|
||||||
import org.elasticsearch.search.aggregations.bucket.terms.SignificantTermsAggregationBuilder;
|
import org.opensearch.search.aggregations.bucket.terms.SignificantTermsAggregationBuilder;
|
||||||
import org.elasticsearch.search.aggregations.bucket.terms.SignificantTextAggregationBuilder;
|
import org.opensearch.search.aggregations.bucket.terms.SignificantTextAggregationBuilder;
|
||||||
import org.elasticsearch.search.aggregations.bucket.terms.StringRareTerms;
|
import org.opensearch.search.aggregations.bucket.terms.StringRareTerms;
|
||||||
import org.elasticsearch.search.aggregations.bucket.terms.StringTerms;
|
import org.opensearch.search.aggregations.bucket.terms.StringTerms;
|
||||||
import org.elasticsearch.search.aggregations.bucket.terms.TermsAggregationBuilder;
|
import org.opensearch.search.aggregations.bucket.terms.TermsAggregationBuilder;
|
||||||
import org.elasticsearch.search.aggregations.bucket.terms.UnmappedRareTerms;
|
import org.opensearch.search.aggregations.bucket.terms.UnmappedRareTerms;
|
||||||
import org.elasticsearch.search.aggregations.bucket.terms.UnmappedSignificantTerms;
|
import org.opensearch.search.aggregations.bucket.terms.UnmappedSignificantTerms;
|
||||||
import org.elasticsearch.search.aggregations.bucket.terms.UnmappedTerms;
|
import org.opensearch.search.aggregations.bucket.terms.UnmappedTerms;
|
||||||
import org.elasticsearch.search.aggregations.bucket.terms.heuristic.ChiSquare;
|
import org.opensearch.search.aggregations.bucket.terms.heuristic.ChiSquare;
|
||||||
import org.elasticsearch.search.aggregations.bucket.terms.heuristic.GND;
|
import org.opensearch.search.aggregations.bucket.terms.heuristic.GND;
|
||||||
import org.elasticsearch.search.aggregations.bucket.terms.heuristic.JLHScore;
|
import org.opensearch.search.aggregations.bucket.terms.heuristic.JLHScore;
|
||||||
import org.elasticsearch.search.aggregations.bucket.terms.heuristic.MutualInformation;
|
import org.opensearch.search.aggregations.bucket.terms.heuristic.MutualInformation;
|
||||||
import org.elasticsearch.search.aggregations.bucket.terms.heuristic.PercentageScore;
|
import org.opensearch.search.aggregations.bucket.terms.heuristic.PercentageScore;
|
||||||
import org.elasticsearch.search.aggregations.bucket.terms.heuristic.ScriptHeuristic;
|
import org.opensearch.search.aggregations.bucket.terms.heuristic.ScriptHeuristic;
|
||||||
import org.elasticsearch.search.aggregations.bucket.terms.heuristic.SignificanceHeuristic;
|
import org.opensearch.search.aggregations.bucket.terms.heuristic.SignificanceHeuristic;
|
||||||
import org.opensearch.search.aggregations.metrics.AvgAggregationBuilder;
|
import org.opensearch.search.aggregations.metrics.AvgAggregationBuilder;
|
||||||
import org.opensearch.search.aggregations.metrics.CardinalityAggregationBuilder;
|
import org.opensearch.search.aggregations.metrics.CardinalityAggregationBuilder;
|
||||||
import org.opensearch.search.aggregations.metrics.ExtendedStatsAggregationBuilder;
|
import org.opensearch.search.aggregations.metrics.ExtendedStatsAggregationBuilder;
|
||||||
|
|
|
@ -17,7 +17,7 @@
|
||||||
* under the License.
|
* under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package org.elasticsearch.search.aggregations.bucket;
|
package org.opensearch.search.aggregations.bucket;
|
||||||
|
|
||||||
import org.apache.lucene.index.LeafReaderContext;
|
import org.apache.lucene.index.LeafReaderContext;
|
||||||
import org.apache.lucene.search.CollectionTerminatedException;
|
import org.apache.lucene.search.CollectionTerminatedException;
|
|
@ -16,7 +16,7 @@
|
||||||
* specific language governing permissions and limitations
|
* specific language governing permissions and limitations
|
||||||
* under the License.
|
* under the License.
|
||||||
*/
|
*/
|
||||||
package org.elasticsearch.search.aggregations.bucket;
|
package org.opensearch.search.aggregations.bucket;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Helper functions for common Bucketing functions
|
* Helper functions for common Bucketing functions
|
||||||
|
@ -28,7 +28,7 @@ public final class BucketUtils {
|
||||||
/**
|
/**
|
||||||
* Heuristic used to determine the size of shard-side PriorityQueues when
|
* Heuristic used to determine the size of shard-side PriorityQueues when
|
||||||
* selecting the top N terms from a distributed index.
|
* selecting the top N terms from a distributed index.
|
||||||
*
|
*
|
||||||
* @param finalSize
|
* @param finalSize
|
||||||
* The number of terms required in the final reduce phase.
|
* The number of terms required in the final reduce phase.
|
||||||
* @return A suggested default for the size of any shard-side PriorityQueues
|
* @return A suggested default for the size of any shard-side PriorityQueues
|
|
@ -16,7 +16,7 @@
|
||||||
* specific language governing permissions and limitations
|
* specific language governing permissions and limitations
|
||||||
* under the License.
|
* under the License.
|
||||||
*/
|
*/
|
||||||
package org.elasticsearch.search.aggregations.bucket;
|
package org.opensearch.search.aggregations.bucket;
|
||||||
|
|
||||||
import org.opensearch.common.lease.Releasable;
|
import org.opensearch.common.lease.Releasable;
|
||||||
import org.elasticsearch.common.util.BigArrays;
|
import org.elasticsearch.common.util.BigArrays;
|
||||||
|
@ -29,8 +29,8 @@ import org.elasticsearch.search.aggregations.CardinalityUpperBound;
|
||||||
import org.elasticsearch.search.aggregations.InternalAggregation;
|
import org.elasticsearch.search.aggregations.InternalAggregation;
|
||||||
import org.elasticsearch.search.aggregations.InternalAggregations;
|
import org.elasticsearch.search.aggregations.InternalAggregations;
|
||||||
import org.elasticsearch.search.aggregations.LeafBucketCollector;
|
import org.elasticsearch.search.aggregations.LeafBucketCollector;
|
||||||
import org.elasticsearch.search.aggregations.bucket.global.GlobalAggregator;
|
import org.opensearch.search.aggregations.bucket.global.GlobalAggregator;
|
||||||
import org.elasticsearch.search.aggregations.bucket.terms.LongKeyedBucketOrds;
|
import org.opensearch.search.aggregations.bucket.terms.LongKeyedBucketOrds;
|
||||||
import org.opensearch.search.aggregations.support.AggregationPath;
|
import org.opensearch.search.aggregations.support.AggregationPath;
|
||||||
import org.opensearch.search.internal.SearchContext;
|
import org.opensearch.search.internal.SearchContext;
|
||||||
import org.opensearch.search.sort.SortOrder;
|
import org.opensearch.search.sort.SortOrder;
|
|
@ -17,7 +17,7 @@
|
||||||
* under the License.
|
* under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package org.elasticsearch.search.aggregations.bucket;
|
package org.opensearch.search.aggregations.bucket;
|
||||||
|
|
||||||
import org.elasticsearch.search.aggregations.Aggregator;
|
import org.elasticsearch.search.aggregations.Aggregator;
|
||||||
import org.elasticsearch.search.aggregations.AggregatorFactories;
|
import org.elasticsearch.search.aggregations.AggregatorFactories;
|
|
@ -17,7 +17,7 @@
|
||||||
* under the License.
|
* under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package org.elasticsearch.search.aggregations.bucket;
|
package org.opensearch.search.aggregations.bucket;
|
||||||
|
|
||||||
import org.apache.lucene.index.LeafReaderContext;
|
import org.apache.lucene.index.LeafReaderContext;
|
||||||
import org.apache.lucene.search.ScoreMode;
|
import org.apache.lucene.search.ScoreMode;
|
|
@ -16,7 +16,7 @@
|
||||||
* specific language governing permissions and limitations
|
* specific language governing permissions and limitations
|
||||||
* under the License.
|
* under the License.
|
||||||
*/
|
*/
|
||||||
package org.elasticsearch.search.aggregations.bucket;
|
package org.opensearch.search.aggregations.bucket;
|
||||||
|
|
||||||
import org.opensearch.common.io.stream.StreamInput;
|
import org.opensearch.common.io.stream.StreamInput;
|
||||||
import org.opensearch.common.io.stream.StreamOutput;
|
import org.opensearch.common.io.stream.StreamOutput;
|
|
@ -17,7 +17,7 @@
|
||||||
* under the License.
|
* under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package org.elasticsearch.search.aggregations.bucket;
|
package org.opensearch.search.aggregations.bucket;
|
||||||
|
|
||||||
import org.elasticsearch.search.aggregations.InternalMultiBucketAggregation;
|
import org.elasticsearch.search.aggregations.InternalMultiBucketAggregation;
|
||||||
|
|
|
@ -17,7 +17,7 @@
|
||||||
* under the License.
|
* under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package org.elasticsearch.search.aggregations.bucket;
|
package org.opensearch.search.aggregations.bucket;
|
||||||
|
|
||||||
import org.apache.lucene.util.packed.PackedInts;
|
import org.apache.lucene.util.packed.PackedInts;
|
||||||
import org.apache.lucene.util.packed.PackedLongValues;
|
import org.apache.lucene.util.packed.PackedLongValues;
|
|
@ -17,7 +17,7 @@
|
||||||
* under the License.
|
* under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package org.elasticsearch.search.aggregations.bucket;
|
package org.opensearch.search.aggregations.bucket;
|
||||||
|
|
||||||
import org.elasticsearch.common.xcontent.ToXContent;
|
import org.elasticsearch.common.xcontent.ToXContent;
|
||||||
import org.elasticsearch.search.aggregations.Aggregation;
|
import org.elasticsearch.search.aggregations.Aggregation;
|
|
@ -16,7 +16,7 @@
|
||||||
* specific language governing permissions and limitations
|
* specific language governing permissions and limitations
|
||||||
* under the License.
|
* under the License.
|
||||||
*/
|
*/
|
||||||
package org.elasticsearch.search.aggregations.bucket;
|
package org.opensearch.search.aggregations.bucket;
|
||||||
|
|
||||||
import org.elasticsearch.common.xcontent.XContentBuilder;
|
import org.elasticsearch.common.xcontent.XContentBuilder;
|
||||||
import org.elasticsearch.common.xcontent.XContentParser;
|
import org.elasticsearch.common.xcontent.XContentParser;
|
|
@ -17,7 +17,7 @@
|
||||||
* under the License.
|
* under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package org.elasticsearch.search.aggregations.bucket;
|
package org.opensearch.search.aggregations.bucket;
|
||||||
|
|
||||||
import org.elasticsearch.search.aggregations.Aggregation;
|
import org.elasticsearch.search.aggregations.Aggregation;
|
||||||
import org.elasticsearch.search.aggregations.Aggregations;
|
import org.elasticsearch.search.aggregations.Aggregations;
|
|
@ -16,7 +16,7 @@
|
||||||
* specific language governing permissions and limitations
|
* specific language governing permissions and limitations
|
||||||
* under the License.
|
* under the License.
|
||||||
*/
|
*/
|
||||||
package org.elasticsearch.search.aggregations.bucket;
|
package org.opensearch.search.aggregations.bucket;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A bucket aggregator that doesn't create new buckets.
|
* A bucket aggregator that doesn't create new buckets.
|
|
@ -17,15 +17,15 @@
|
||||||
* under the License.
|
* under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package org.elasticsearch.search.aggregations.bucket.adjacency;
|
package org.opensearch.search.aggregations.bucket.adjacency;
|
||||||
|
|
||||||
import org.elasticsearch.search.aggregations.bucket.MultiBucketsAggregation;
|
import org.opensearch.search.aggregations.bucket.MultiBucketsAggregation;
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A multi bucket aggregation where the buckets are defined by a set of filters
|
* A multi bucket aggregation where the buckets are defined by a set of filters
|
||||||
* (a bucket is produced per filter plus a bucket for each non-empty filter
|
* (a bucket is produced per filter plus a bucket for each non-empty filter
|
||||||
* intersection so A, B and A&B).
|
* intersection so A, B and A&B).
|
||||||
*/
|
*/
|
||||||
public interface AdjacencyMatrix extends MultiBucketsAggregation {
|
public interface AdjacencyMatrix extends MultiBucketsAggregation {
|
|
@ -17,7 +17,7 @@
|
||||||
* under the License.
|
* under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package org.elasticsearch.search.aggregations.bucket.adjacency;
|
package org.opensearch.search.aggregations.bucket.adjacency;
|
||||||
|
|
||||||
import org.elasticsearch.common.ParseField;
|
import org.elasticsearch.common.ParseField;
|
||||||
import org.opensearch.common.io.stream.StreamInput;
|
import org.opensearch.common.io.stream.StreamInput;
|
||||||
|
@ -34,7 +34,7 @@ import org.elasticsearch.search.aggregations.AbstractAggregationBuilder;
|
||||||
import org.elasticsearch.search.aggregations.AggregationBuilder;
|
import org.elasticsearch.search.aggregations.AggregationBuilder;
|
||||||
import org.elasticsearch.search.aggregations.AggregatorFactories.Builder;
|
import org.elasticsearch.search.aggregations.AggregatorFactories.Builder;
|
||||||
import org.elasticsearch.search.aggregations.AggregatorFactory;
|
import org.elasticsearch.search.aggregations.AggregatorFactory;
|
||||||
import org.elasticsearch.search.aggregations.bucket.adjacency.AdjacencyMatrixAggregator.KeyedFilter;
|
import org.opensearch.search.aggregations.bucket.adjacency.AdjacencyMatrixAggregator.KeyedFilter;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
|
@ -17,7 +17,7 @@
|
||||||
* under the License.
|
* under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package org.elasticsearch.search.aggregations.bucket.adjacency;
|
package org.opensearch.search.aggregations.bucket.adjacency;
|
||||||
|
|
||||||
import org.apache.lucene.index.LeafReaderContext;
|
import org.apache.lucene.index.LeafReaderContext;
|
||||||
import org.apache.lucene.search.Weight;
|
import org.apache.lucene.search.Weight;
|
||||||
|
@ -39,7 +39,7 @@ import org.elasticsearch.search.aggregations.InternalAggregation;
|
||||||
import org.elasticsearch.search.aggregations.InternalAggregations;
|
import org.elasticsearch.search.aggregations.InternalAggregations;
|
||||||
import org.elasticsearch.search.aggregations.LeafBucketCollector;
|
import org.elasticsearch.search.aggregations.LeafBucketCollector;
|
||||||
import org.elasticsearch.search.aggregations.LeafBucketCollectorBase;
|
import org.elasticsearch.search.aggregations.LeafBucketCollectorBase;
|
||||||
import org.elasticsearch.search.aggregations.bucket.BucketsAggregator;
|
import org.opensearch.search.aggregations.bucket.BucketsAggregator;
|
||||||
import org.opensearch.search.internal.SearchContext;
|
import org.opensearch.search.internal.SearchContext;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
|
@ -17,7 +17,7 @@
|
||||||
* under the License.
|
* under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package org.elasticsearch.search.aggregations.bucket.adjacency;
|
package org.opensearch.search.aggregations.bucket.adjacency;
|
||||||
|
|
||||||
import org.apache.lucene.search.IndexSearcher;
|
import org.apache.lucene.search.IndexSearcher;
|
||||||
import org.apache.lucene.search.Query;
|
import org.apache.lucene.search.Query;
|
||||||
|
@ -28,7 +28,7 @@ import org.elasticsearch.search.aggregations.Aggregator;
|
||||||
import org.elasticsearch.search.aggregations.AggregatorFactories;
|
import org.elasticsearch.search.aggregations.AggregatorFactories;
|
||||||
import org.elasticsearch.search.aggregations.AggregatorFactory;
|
import org.elasticsearch.search.aggregations.AggregatorFactory;
|
||||||
import org.elasticsearch.search.aggregations.CardinalityUpperBound;
|
import org.elasticsearch.search.aggregations.CardinalityUpperBound;
|
||||||
import org.elasticsearch.search.aggregations.bucket.adjacency.AdjacencyMatrixAggregator.KeyedFilter;
|
import org.opensearch.search.aggregations.bucket.adjacency.AdjacencyMatrixAggregator.KeyedFilter;
|
||||||
import org.opensearch.search.internal.SearchContext;
|
import org.opensearch.search.internal.SearchContext;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
|
@ -17,7 +17,7 @@
|
||||||
* under the License.
|
* under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package org.elasticsearch.search.aggregations.bucket.adjacency;
|
package org.opensearch.search.aggregations.bucket.adjacency;
|
||||||
|
|
||||||
import org.opensearch.common.io.stream.StreamInput;
|
import org.opensearch.common.io.stream.StreamInput;
|
||||||
import org.opensearch.common.io.stream.StreamOutput;
|
import org.opensearch.common.io.stream.StreamOutput;
|
|
@ -17,7 +17,7 @@
|
||||||
* under the License.
|
* under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package org.elasticsearch.search.aggregations.bucket.adjacency;
|
package org.opensearch.search.aggregations.bucket.adjacency;
|
||||||
|
|
||||||
import org.elasticsearch.common.xcontent.ObjectParser;
|
import org.elasticsearch.common.xcontent.ObjectParser;
|
||||||
import org.elasticsearch.common.xcontent.XContentParser;
|
import org.elasticsearch.common.xcontent.XContentParser;
|
|
@ -17,7 +17,7 @@
|
||||||
* under the License.
|
* under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package org.elasticsearch.search.aggregations.bucket.composite;
|
package org.opensearch.search.aggregations.bucket.composite;
|
||||||
|
|
||||||
import org.apache.lucene.index.IndexReader;
|
import org.apache.lucene.index.IndexReader;
|
||||||
import org.apache.lucene.index.LeafReaderContext;
|
import org.apache.lucene.index.LeafReaderContext;
|
|
@ -17,10 +17,10 @@
|
||||||
* under the License.
|
* under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package org.elasticsearch.search.aggregations.bucket.composite;
|
package org.opensearch.search.aggregations.bucket.composite;
|
||||||
|
|
||||||
import org.elasticsearch.common.xcontent.XContentBuilder;
|
import org.elasticsearch.common.xcontent.XContentBuilder;
|
||||||
import org.elasticsearch.search.aggregations.bucket.MultiBucketsAggregation;
|
import org.opensearch.search.aggregations.bucket.MultiBucketsAggregation;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.util.List;
|
import java.util.List;
|
|
@ -17,7 +17,7 @@
|
||||||
* under the License.
|
* under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package org.elasticsearch.search.aggregations.bucket.composite;
|
package org.opensearch.search.aggregations.bucket.composite;
|
||||||
|
|
||||||
import org.elasticsearch.common.ParseField;
|
import org.elasticsearch.common.ParseField;
|
||||||
import org.opensearch.common.io.stream.StreamInput;
|
import org.opensearch.common.io.stream.StreamInput;
|
||||||
|
@ -29,7 +29,7 @@ import org.elasticsearch.search.aggregations.AbstractAggregationBuilder;
|
||||||
import org.elasticsearch.search.aggregations.AggregationBuilder;
|
import org.elasticsearch.search.aggregations.AggregationBuilder;
|
||||||
import org.elasticsearch.search.aggregations.AggregatorFactories;
|
import org.elasticsearch.search.aggregations.AggregatorFactories;
|
||||||
import org.elasticsearch.search.aggregations.AggregatorFactory;
|
import org.elasticsearch.search.aggregations.AggregatorFactory;
|
||||||
import org.elasticsearch.search.aggregations.bucket.nested.NestedAggregatorFactory;
|
import org.opensearch.search.aggregations.bucket.nested.NestedAggregatorFactory;
|
||||||
import org.opensearch.search.aggregations.support.ValuesSourceRegistry;
|
import org.opensearch.search.aggregations.support.ValuesSourceRegistry;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
|
@ -17,7 +17,7 @@
|
||||||
* under the License.
|
* under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package org.elasticsearch.search.aggregations.bucket.composite;
|
package org.opensearch.search.aggregations.bucket.composite;
|
||||||
|
|
||||||
import org.elasticsearch.index.query.QueryShardContext;
|
import org.elasticsearch.index.query.QueryShardContext;
|
||||||
import org.elasticsearch.search.aggregations.Aggregator;
|
import org.elasticsearch.search.aggregations.Aggregator;
|
|
@ -17,7 +17,7 @@
|
||||||
* under the License.
|
* under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package org.elasticsearch.search.aggregations.bucket.composite;
|
package org.opensearch.search.aggregations.bucket.composite;
|
||||||
|
|
||||||
import org.apache.lucene.index.DocValues;
|
import org.apache.lucene.index.DocValues;
|
||||||
import org.apache.lucene.index.LeafReaderContext;
|
import org.apache.lucene.index.LeafReaderContext;
|
||||||
|
@ -56,7 +56,7 @@ import org.elasticsearch.search.aggregations.InternalAggregations;
|
||||||
import org.elasticsearch.search.aggregations.LeafBucketCollector;
|
import org.elasticsearch.search.aggregations.LeafBucketCollector;
|
||||||
import org.elasticsearch.search.aggregations.MultiBucketCollector;
|
import org.elasticsearch.search.aggregations.MultiBucketCollector;
|
||||||
import org.elasticsearch.search.aggregations.MultiBucketConsumerService;
|
import org.elasticsearch.search.aggregations.MultiBucketConsumerService;
|
||||||
import org.elasticsearch.search.aggregations.bucket.BucketsAggregator;
|
import org.opensearch.search.aggregations.bucket.BucketsAggregator;
|
||||||
import org.opensearch.search.internal.SearchContext;
|
import org.opensearch.search.internal.SearchContext;
|
||||||
import org.opensearch.search.searchafter.SearchAfterBuilder;
|
import org.opensearch.search.searchafter.SearchAfterBuilder;
|
||||||
import org.opensearch.search.sort.SortAndFormats;
|
import org.opensearch.search.sort.SortAndFormats;
|
|
@ -17,7 +17,7 @@
|
||||||
* under the License.
|
* under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package org.elasticsearch.search.aggregations.bucket.composite;
|
package org.opensearch.search.aggregations.bucket.composite;
|
||||||
|
|
||||||
import org.opensearch.common.io.stream.StreamInput;
|
import org.opensearch.common.io.stream.StreamInput;
|
||||||
import org.opensearch.common.io.stream.StreamOutput;
|
import org.opensearch.common.io.stream.StreamOutput;
|
|
@ -17,7 +17,7 @@
|
||||||
* under the License.
|
* under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package org.elasticsearch.search.aggregations.bucket.composite;
|
package org.opensearch.search.aggregations.bucket.composite;
|
||||||
|
|
||||||
import org.apache.lucene.index.LeafReaderContext;
|
import org.apache.lucene.index.LeafReaderContext;
|
||||||
import org.apache.lucene.search.CollectionTerminatedException;
|
import org.apache.lucene.search.CollectionTerminatedException;
|
|
@ -17,7 +17,7 @@
|
||||||
* under the License.
|
* under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package org.elasticsearch.search.aggregations.bucket.composite;
|
package org.opensearch.search.aggregations.bucket.composite;
|
||||||
|
|
||||||
import org.opensearch.Version;
|
import org.opensearch.Version;
|
||||||
import org.opensearch.common.io.stream.StreamInput;
|
import org.opensearch.common.io.stream.StreamInput;
|
|
@ -17,7 +17,7 @@
|
||||||
* under the License.
|
* under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package org.elasticsearch.search.aggregations.bucket.composite;
|
package org.opensearch.search.aggregations.bucket.composite;
|
||||||
|
|
||||||
import org.apache.lucene.index.IndexReader;
|
import org.apache.lucene.index.IndexReader;
|
||||||
import org.elasticsearch.common.Nullable;
|
import org.elasticsearch.common.Nullable;
|
|
@ -17,7 +17,7 @@
|
||||||
* under the License.
|
* under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package org.elasticsearch.search.aggregations.bucket.composite;
|
package org.opensearch.search.aggregations.bucket.composite;
|
||||||
|
|
||||||
import org.opensearch.Version;
|
import org.opensearch.Version;
|
||||||
import org.elasticsearch.common.ParseField;
|
import org.elasticsearch.common.ParseField;
|
|
@ -17,7 +17,7 @@
|
||||||
* under the License.
|
* under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package org.elasticsearch.search.aggregations.bucket.composite;
|
package org.opensearch.search.aggregations.bucket.composite;
|
||||||
|
|
||||||
import org.apache.lucene.index.IndexReader;
|
import org.apache.lucene.index.IndexReader;
|
||||||
import org.opensearch.Version;
|
import org.opensearch.Version;
|
||||||
|
@ -34,11 +34,11 @@ import org.elasticsearch.index.mapper.MappedFieldType;
|
||||||
import org.elasticsearch.index.query.QueryShardContext;
|
import org.elasticsearch.index.query.QueryShardContext;
|
||||||
import org.opensearch.script.Script;
|
import org.opensearch.script.Script;
|
||||||
import org.opensearch.search.DocValueFormat;
|
import org.opensearch.search.DocValueFormat;
|
||||||
import org.elasticsearch.search.aggregations.bucket.histogram.DateHistogramAggregationBuilder;
|
import org.opensearch.search.aggregations.bucket.histogram.DateHistogramAggregationBuilder;
|
||||||
import org.elasticsearch.search.aggregations.bucket.histogram.DateHistogramInterval;
|
import org.opensearch.search.aggregations.bucket.histogram.DateHistogramInterval;
|
||||||
import org.elasticsearch.search.aggregations.bucket.histogram.DateIntervalConsumer;
|
import org.opensearch.search.aggregations.bucket.histogram.DateIntervalConsumer;
|
||||||
import org.elasticsearch.search.aggregations.bucket.histogram.DateIntervalWrapper;
|
import org.opensearch.search.aggregations.bucket.histogram.DateIntervalWrapper;
|
||||||
import org.elasticsearch.search.aggregations.bucket.histogram.Histogram;
|
import org.opensearch.search.aggregations.bucket.histogram.Histogram;
|
||||||
import org.opensearch.search.aggregations.support.CoreValuesSourceType;
|
import org.opensearch.search.aggregations.support.CoreValuesSourceType;
|
||||||
import org.opensearch.search.aggregations.support.ValuesSource;
|
import org.opensearch.search.aggregations.support.ValuesSource;
|
||||||
import org.opensearch.search.aggregations.support.ValuesSourceConfig;
|
import org.opensearch.search.aggregations.support.ValuesSourceConfig;
|
|
@ -17,7 +17,7 @@
|
||||||
* under the License.
|
* under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package org.elasticsearch.search.aggregations.bucket.composite;
|
package org.opensearch.search.aggregations.bucket.composite;
|
||||||
|
|
||||||
import org.apache.lucene.index.IndexReader;
|
import org.apache.lucene.index.IndexReader;
|
||||||
import org.apache.lucene.index.LeafReaderContext;
|
import org.apache.lucene.index.LeafReaderContext;
|
|
@ -17,7 +17,7 @@
|
||||||
* under the License.
|
* under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package org.elasticsearch.search.aggregations.bucket.composite;
|
package org.opensearch.search.aggregations.bucket.composite;
|
||||||
|
|
||||||
import org.apache.lucene.index.IndexReader;
|
import org.apache.lucene.index.IndexReader;
|
||||||
import org.opensearch.Version;
|
import org.opensearch.Version;
|
||||||
|
@ -33,9 +33,9 @@ import org.elasticsearch.common.xcontent.XContentParser;
|
||||||
import org.elasticsearch.index.mapper.MappedFieldType;
|
import org.elasticsearch.index.mapper.MappedFieldType;
|
||||||
import org.elasticsearch.index.query.QueryShardContext;
|
import org.elasticsearch.index.query.QueryShardContext;
|
||||||
import org.opensearch.search.DocValueFormat;
|
import org.opensearch.search.DocValueFormat;
|
||||||
import org.elasticsearch.search.aggregations.bucket.geogrid.CellIdSource;
|
import org.opensearch.search.aggregations.bucket.geogrid.CellIdSource;
|
||||||
import org.elasticsearch.search.aggregations.bucket.geogrid.GeoTileGridAggregationBuilder;
|
import org.opensearch.search.aggregations.bucket.geogrid.GeoTileGridAggregationBuilder;
|
||||||
import org.elasticsearch.search.aggregations.bucket.geogrid.GeoTileUtils;
|
import org.opensearch.search.aggregations.bucket.geogrid.GeoTileUtils;
|
||||||
import org.opensearch.search.aggregations.support.CoreValuesSourceType;
|
import org.opensearch.search.aggregations.support.CoreValuesSourceType;
|
||||||
import org.opensearch.search.aggregations.support.ValuesSource;
|
import org.opensearch.search.aggregations.support.ValuesSource;
|
||||||
import org.opensearch.search.aggregations.support.ValuesSourceConfig;
|
import org.opensearch.search.aggregations.support.ValuesSourceConfig;
|
|
@ -17,7 +17,7 @@
|
||||||
* under the License.
|
* under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package org.elasticsearch.search.aggregations.bucket.composite;
|
package org.opensearch.search.aggregations.bucket.composite;
|
||||||
|
|
||||||
import org.apache.lucene.index.LeafReaderContext;
|
import org.apache.lucene.index.LeafReaderContext;
|
||||||
import org.apache.lucene.index.SortedNumericDocValues;
|
import org.apache.lucene.index.SortedNumericDocValues;
|
||||||
|
@ -25,7 +25,7 @@ import org.elasticsearch.common.CheckedFunction;
|
||||||
import org.elasticsearch.common.util.BigArrays;
|
import org.elasticsearch.common.util.BigArrays;
|
||||||
import org.elasticsearch.index.mapper.MappedFieldType;
|
import org.elasticsearch.index.mapper.MappedFieldType;
|
||||||
import org.opensearch.search.DocValueFormat;
|
import org.opensearch.search.DocValueFormat;
|
||||||
import org.elasticsearch.search.aggregations.bucket.geogrid.GeoTileUtils;
|
import org.opensearch.search.aggregations.bucket.geogrid.GeoTileUtils;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.util.function.LongUnaryOperator;
|
import java.util.function.LongUnaryOperator;
|
|
@ -17,7 +17,7 @@
|
||||||
* under the License.
|
* under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package org.elasticsearch.search.aggregations.bucket.composite;
|
package org.opensearch.search.aggregations.bucket.composite;
|
||||||
|
|
||||||
import org.apache.lucene.index.IndexReader;
|
import org.apache.lucene.index.IndexReader;
|
||||||
import org.apache.lucene.index.LeafReaderContext;
|
import org.apache.lucene.index.LeafReaderContext;
|
|
@ -17,7 +17,7 @@
|
||||||
* under the License.
|
* under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package org.elasticsearch.search.aggregations.bucket.composite;
|
package org.opensearch.search.aggregations.bucket.composite;
|
||||||
|
|
||||||
import org.apache.lucene.index.LeafReaderContext;
|
import org.apache.lucene.index.LeafReaderContext;
|
||||||
import org.apache.lucene.index.SortedNumericDocValues;
|
import org.apache.lucene.index.SortedNumericDocValues;
|
|
@ -17,7 +17,7 @@
|
||||||
* under the License.
|
* under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package org.elasticsearch.search.aggregations.bucket.composite;
|
package org.opensearch.search.aggregations.bucket.composite;
|
||||||
|
|
||||||
import org.apache.lucene.index.IndexReader;
|
import org.apache.lucene.index.IndexReader;
|
||||||
import org.opensearch.common.io.stream.StreamInput;
|
import org.opensearch.common.io.stream.StreamInput;
|
||||||
|
@ -28,7 +28,7 @@ import org.elasticsearch.common.xcontent.XContentBuilder;
|
||||||
import org.elasticsearch.common.xcontent.XContentParser;
|
import org.elasticsearch.common.xcontent.XContentParser;
|
||||||
import org.elasticsearch.index.mapper.MappedFieldType;
|
import org.elasticsearch.index.mapper.MappedFieldType;
|
||||||
import org.elasticsearch.index.query.QueryShardContext;
|
import org.elasticsearch.index.query.QueryShardContext;
|
||||||
import org.elasticsearch.search.aggregations.bucket.histogram.Histogram;
|
import org.opensearch.search.aggregations.bucket.histogram.Histogram;
|
||||||
import org.opensearch.search.aggregations.support.CoreValuesSourceType;
|
import org.opensearch.search.aggregations.support.CoreValuesSourceType;
|
||||||
import org.opensearch.search.aggregations.support.ValuesSource;
|
import org.opensearch.search.aggregations.support.ValuesSource;
|
||||||
import org.opensearch.search.aggregations.support.ValuesSourceConfig;
|
import org.opensearch.search.aggregations.support.ValuesSourceConfig;
|
|
@ -17,7 +17,7 @@
|
||||||
* under the License.
|
* under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package org.elasticsearch.search.aggregations.bucket.composite;
|
package org.opensearch.search.aggregations.bucket.composite;
|
||||||
|
|
||||||
import org.apache.lucene.util.BytesRef;
|
import org.apache.lucene.util.BytesRef;
|
||||||
import org.opensearch.Version;
|
import org.opensearch.Version;
|
|
@ -17,7 +17,7 @@
|
||||||
* under the License.
|
* under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package org.elasticsearch.search.aggregations.bucket.composite;
|
package org.opensearch.search.aggregations.bucket.composite;
|
||||||
|
|
||||||
import org.apache.lucene.document.IntPoint;
|
import org.apache.lucene.document.IntPoint;
|
||||||
import org.apache.lucene.document.LongPoint;
|
import org.apache.lucene.document.LongPoint;
|
|
@ -17,7 +17,7 @@
|
||||||
* under the License.
|
* under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package org.elasticsearch.search.aggregations.bucket.composite;
|
package org.opensearch.search.aggregations.bucket.composite;
|
||||||
|
|
||||||
import org.elasticsearch.common.ParseField;
|
import org.elasticsearch.common.ParseField;
|
||||||
import org.elasticsearch.common.xcontent.ObjectParser;
|
import org.elasticsearch.common.xcontent.ObjectParser;
|
|
@ -17,7 +17,7 @@
|
||||||
* under the License.
|
* under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package org.elasticsearch.search.aggregations.bucket.composite;
|
package org.opensearch.search.aggregations.bucket.composite;
|
||||||
|
|
||||||
import org.apache.lucene.index.LeafReaderContext;
|
import org.apache.lucene.index.LeafReaderContext;
|
||||||
import org.apache.lucene.index.PointValues;
|
import org.apache.lucene.index.PointValues;
|
|
@ -17,7 +17,7 @@
|
||||||
* under the License.
|
* under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package org.elasticsearch.search.aggregations.bucket.composite;
|
package org.opensearch.search.aggregations.bucket.composite;
|
||||||
|
|
||||||
import org.apache.lucene.index.LeafReaderContext;
|
import org.apache.lucene.index.LeafReaderContext;
|
||||||
import org.apache.lucene.index.SortedNumericDocValues;
|
import org.apache.lucene.index.SortedNumericDocValues;
|
|
@ -17,7 +17,7 @@
|
||||||
* under the License.
|
* under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package org.elasticsearch.search.aggregations.bucket.composite;
|
package org.opensearch.search.aggregations.bucket.composite;
|
||||||
|
|
||||||
import org.apache.lucene.index.IndexReader;
|
import org.apache.lucene.index.IndexReader;
|
||||||
import org.apache.lucene.index.LeafReaderContext;
|
import org.apache.lucene.index.LeafReaderContext;
|
|
@ -17,7 +17,7 @@
|
||||||
* under the License.
|
* under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package org.elasticsearch.search.aggregations.bucket.composite;
|
package org.opensearch.search.aggregations.bucket.composite;
|
||||||
|
|
||||||
import org.apache.lucene.index.LeafReaderContext;
|
import org.apache.lucene.index.LeafReaderContext;
|
||||||
import org.apache.lucene.search.DocIdSet;
|
import org.apache.lucene.search.DocIdSet;
|
|
@ -17,7 +17,7 @@
|
||||||
* under the License.
|
* under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package org.elasticsearch.search.aggregations.bucket.composite;
|
package org.opensearch.search.aggregations.bucket.composite;
|
||||||
|
|
||||||
import org.apache.lucene.index.LeafReaderContext;
|
import org.apache.lucene.index.LeafReaderContext;
|
||||||
import org.apache.lucene.index.PostingsEnum;
|
import org.apache.lucene.index.PostingsEnum;
|
|
@ -17,7 +17,7 @@
|
||||||
* under the License.
|
* under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package org.elasticsearch.search.aggregations.bucket.composite;
|
package org.opensearch.search.aggregations.bucket.composite;
|
||||||
|
|
||||||
import org.apache.lucene.index.DirectoryReader;
|
import org.apache.lucene.index.DirectoryReader;
|
||||||
import org.apache.lucene.index.IndexReader;
|
import org.apache.lucene.index.IndexReader;
|
|
@ -16,9 +16,9 @@
|
||||||
* specific language governing permissions and limitations
|
* specific language governing permissions and limitations
|
||||||
* under the License.
|
* under the License.
|
||||||
*/
|
*/
|
||||||
package org.elasticsearch.search.aggregations.bucket.filter;
|
package org.opensearch.search.aggregations.bucket.filter;
|
||||||
|
|
||||||
import org.elasticsearch.search.aggregations.bucket.SingleBucketAggregation;
|
import org.opensearch.search.aggregations.bucket.SingleBucketAggregation;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A {@code filter} aggregation. Defines a single bucket that holds all documents that match a specific filter.
|
* A {@code filter} aggregation. Defines a single bucket that holds all documents that match a specific filter.
|
|
@ -17,7 +17,7 @@
|
||||||
* under the License.
|
* under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package org.elasticsearch.search.aggregations.bucket.filter;
|
package org.opensearch.search.aggregations.bucket.filter;
|
||||||
|
|
||||||
import org.opensearch.common.io.stream.StreamInput;
|
import org.opensearch.common.io.stream.StreamInput;
|
||||||
import org.opensearch.common.io.stream.StreamOutput;
|
import org.opensearch.common.io.stream.StreamOutput;
|
|
@ -16,7 +16,7 @@
|
||||||
* specific language governing permissions and limitations
|
* specific language governing permissions and limitations
|
||||||
* under the License.
|
* under the License.
|
||||||
*/
|
*/
|
||||||
package org.elasticsearch.search.aggregations.bucket.filter;
|
package org.opensearch.search.aggregations.bucket.filter;
|
||||||
|
|
||||||
import org.apache.lucene.index.LeafReaderContext;
|
import org.apache.lucene.index.LeafReaderContext;
|
||||||
import org.apache.lucene.search.Weight;
|
import org.apache.lucene.search.Weight;
|
||||||
|
@ -28,8 +28,8 @@ import org.elasticsearch.search.aggregations.CardinalityUpperBound;
|
||||||
import org.elasticsearch.search.aggregations.InternalAggregation;
|
import org.elasticsearch.search.aggregations.InternalAggregation;
|
||||||
import org.elasticsearch.search.aggregations.LeafBucketCollector;
|
import org.elasticsearch.search.aggregations.LeafBucketCollector;
|
||||||
import org.elasticsearch.search.aggregations.LeafBucketCollectorBase;
|
import org.elasticsearch.search.aggregations.LeafBucketCollectorBase;
|
||||||
import org.elasticsearch.search.aggregations.bucket.BucketsAggregator;
|
import org.opensearch.search.aggregations.bucket.BucketsAggregator;
|
||||||
import org.elasticsearch.search.aggregations.bucket.SingleBucketAggregator;
|
import org.opensearch.search.aggregations.bucket.SingleBucketAggregator;
|
||||||
import org.opensearch.search.internal.SearchContext;
|
import org.opensearch.search.internal.SearchContext;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
|
@ -17,7 +17,7 @@
|
||||||
* under the License.
|
* under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package org.elasticsearch.search.aggregations.bucket.filter;
|
package org.opensearch.search.aggregations.bucket.filter;
|
||||||
|
|
||||||
import org.apache.lucene.search.IndexSearcher;
|
import org.apache.lucene.search.IndexSearcher;
|
||||||
import org.apache.lucene.search.Query;
|
import org.apache.lucene.search.Query;
|
|
@ -17,9 +17,9 @@
|
||||||
* under the License.
|
* under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package org.elasticsearch.search.aggregations.bucket.filter;
|
package org.opensearch.search.aggregations.bucket.filter;
|
||||||
|
|
||||||
import org.elasticsearch.search.aggregations.bucket.MultiBucketsAggregation;
|
import org.opensearch.search.aggregations.bucket.MultiBucketsAggregation;
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
|
@ -17,7 +17,7 @@
|
||||||
* under the License.
|
* under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package org.elasticsearch.search.aggregations.bucket.filter;
|
package org.opensearch.search.aggregations.bucket.filter;
|
||||||
|
|
||||||
import org.elasticsearch.common.ParseField;
|
import org.elasticsearch.common.ParseField;
|
||||||
import org.opensearch.common.ParsingException;
|
import org.opensearch.common.ParsingException;
|
||||||
|
@ -33,7 +33,7 @@ import org.elasticsearch.search.aggregations.AbstractAggregationBuilder;
|
||||||
import org.elasticsearch.search.aggregations.AggregationBuilder;
|
import org.elasticsearch.search.aggregations.AggregationBuilder;
|
||||||
import org.elasticsearch.search.aggregations.AggregatorFactories.Builder;
|
import org.elasticsearch.search.aggregations.AggregatorFactories.Builder;
|
||||||
import org.elasticsearch.search.aggregations.AggregatorFactory;
|
import org.elasticsearch.search.aggregations.AggregatorFactory;
|
||||||
import org.elasticsearch.search.aggregations.bucket.filter.FiltersAggregator.KeyedFilter;
|
import org.opensearch.search.aggregations.bucket.filter.FiltersAggregator.KeyedFilter;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
|
@ -17,7 +17,7 @@
|
||||||
* under the License.
|
* under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package org.elasticsearch.search.aggregations.bucket.filter;
|
package org.opensearch.search.aggregations.bucket.filter;
|
||||||
|
|
||||||
import org.apache.lucene.index.LeafReaderContext;
|
import org.apache.lucene.index.LeafReaderContext;
|
||||||
import org.apache.lucene.search.Weight;
|
import org.apache.lucene.search.Weight;
|
||||||
|
@ -37,7 +37,7 @@ import org.elasticsearch.search.aggregations.InternalAggregation;
|
||||||
import org.elasticsearch.search.aggregations.InternalAggregations;
|
import org.elasticsearch.search.aggregations.InternalAggregations;
|
||||||
import org.elasticsearch.search.aggregations.LeafBucketCollector;
|
import org.elasticsearch.search.aggregations.LeafBucketCollector;
|
||||||
import org.elasticsearch.search.aggregations.LeafBucketCollectorBase;
|
import org.elasticsearch.search.aggregations.LeafBucketCollectorBase;
|
||||||
import org.elasticsearch.search.aggregations.bucket.BucketsAggregator;
|
import org.opensearch.search.aggregations.bucket.BucketsAggregator;
|
||||||
import org.opensearch.search.internal.SearchContext;
|
import org.opensearch.search.internal.SearchContext;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
|
@ -17,7 +17,7 @@
|
||||||
* under the License.
|
* under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package org.elasticsearch.search.aggregations.bucket.filter;
|
package org.opensearch.search.aggregations.bucket.filter;
|
||||||
|
|
||||||
import org.apache.lucene.search.IndexSearcher;
|
import org.apache.lucene.search.IndexSearcher;
|
||||||
import org.apache.lucene.search.Query;
|
import org.apache.lucene.search.Query;
|
||||||
|
@ -29,7 +29,7 @@ import org.elasticsearch.search.aggregations.Aggregator;
|
||||||
import org.elasticsearch.search.aggregations.AggregatorFactories;
|
import org.elasticsearch.search.aggregations.AggregatorFactories;
|
||||||
import org.elasticsearch.search.aggregations.AggregatorFactory;
|
import org.elasticsearch.search.aggregations.AggregatorFactory;
|
||||||
import org.elasticsearch.search.aggregations.CardinalityUpperBound;
|
import org.elasticsearch.search.aggregations.CardinalityUpperBound;
|
||||||
import org.elasticsearch.search.aggregations.bucket.filter.FiltersAggregator.KeyedFilter;
|
import org.opensearch.search.aggregations.bucket.filter.FiltersAggregator.KeyedFilter;
|
||||||
import org.opensearch.search.internal.SearchContext;
|
import org.opensearch.search.internal.SearchContext;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
|
@ -17,11 +17,11 @@
|
||||||
* under the License.
|
* under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package org.elasticsearch.search.aggregations.bucket.filter;
|
package org.opensearch.search.aggregations.bucket.filter;
|
||||||
|
|
||||||
import org.opensearch.common.io.stream.StreamInput;
|
import org.opensearch.common.io.stream.StreamInput;
|
||||||
import org.elasticsearch.search.aggregations.InternalAggregations;
|
import org.elasticsearch.search.aggregations.InternalAggregations;
|
||||||
import org.elasticsearch.search.aggregations.bucket.InternalSingleBucketAggregation;
|
import org.opensearch.search.aggregations.bucket.InternalSingleBucketAggregation;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
|
@ -17,7 +17,7 @@
|
||||||
* under the License.
|
* under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package org.elasticsearch.search.aggregations.bucket.filter;
|
package org.opensearch.search.aggregations.bucket.filter;
|
||||||
|
|
||||||
import org.opensearch.common.io.stream.StreamInput;
|
import org.opensearch.common.io.stream.StreamInput;
|
||||||
import org.opensearch.common.io.stream.StreamOutput;
|
import org.opensearch.common.io.stream.StreamOutput;
|
|
@ -16,10 +16,10 @@
|
||||||
* specific language governing permissions and limitations
|
* specific language governing permissions and limitations
|
||||||
* under the License.
|
* under the License.
|
||||||
*/
|
*/
|
||||||
package org.elasticsearch.search.aggregations.bucket.filter;
|
package org.opensearch.search.aggregations.bucket.filter;
|
||||||
|
|
||||||
import org.elasticsearch.common.xcontent.XContentParser;
|
import org.elasticsearch.common.xcontent.XContentParser;
|
||||||
import org.elasticsearch.search.aggregations.bucket.ParsedSingleBucketAggregation;
|
import org.opensearch.search.aggregations.bucket.ParsedSingleBucketAggregation;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
|
|
|
@ -17,7 +17,7 @@
|
||||||
* under the License.
|
* under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package org.elasticsearch.search.aggregations.bucket.filter;
|
package org.opensearch.search.aggregations.bucket.filter;
|
||||||
|
|
||||||
import org.elasticsearch.common.xcontent.ObjectParser;
|
import org.elasticsearch.common.xcontent.ObjectParser;
|
||||||
import org.elasticsearch.common.xcontent.XContentBuilder;
|
import org.elasticsearch.common.xcontent.XContentBuilder;
|
|
@ -16,7 +16,7 @@
|
||||||
* specific language governing permissions and limitations
|
* specific language governing permissions and limitations
|
||||||
* under the License.
|
* under the License.
|
||||||
*/
|
*/
|
||||||
package org.elasticsearch.search.aggregations.bucket.geogrid;
|
package org.opensearch.search.aggregations.bucket.geogrid;
|
||||||
|
|
||||||
import org.opensearch.common.geo.GeoBoundingBox;
|
import org.opensearch.common.geo.GeoBoundingBox;
|
||||||
import org.elasticsearch.index.fielddata.MultiGeoPointValues;
|
import org.elasticsearch.index.fielddata.MultiGeoPointValues;
|
|
@ -16,7 +16,7 @@
|
||||||
* specific language governing permissions and limitations
|
* specific language governing permissions and limitations
|
||||||
* under the License.
|
* under the License.
|
||||||
*/
|
*/
|
||||||
package org.elasticsearch.search.aggregations.bucket.geogrid;
|
package org.opensearch.search.aggregations.bucket.geogrid;
|
||||||
|
|
||||||
import org.apache.lucene.util.PriorityQueue;
|
import org.apache.lucene.util.PriorityQueue;
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
* specific language governing permissions and limitations
|
* specific language governing permissions and limitations
|
||||||
* under the License.
|
* under the License.
|
||||||
*/
|
*/
|
||||||
package org.elasticsearch.search.aggregations.bucket.geogrid;
|
package org.opensearch.search.aggregations.bucket.geogrid;
|
||||||
|
|
||||||
import org.apache.lucene.index.LeafReaderContext;
|
import org.apache.lucene.index.LeafReaderContext;
|
||||||
import org.apache.lucene.index.SortedNumericDocValues;
|
import org.apache.lucene.index.SortedNumericDocValues;
|
|
@ -16,7 +16,7 @@
|
||||||
* specific language governing permissions and limitations
|
* specific language governing permissions and limitations
|
||||||
* under the License.
|
* under the License.
|
||||||
*/
|
*/
|
||||||
package org.elasticsearch.search.aggregations.bucket.geogrid;
|
package org.opensearch.search.aggregations.bucket.geogrid;
|
||||||
|
|
||||||
import org.opensearch.index.fielddata.AbstractSortingNumericDocValues;
|
import org.opensearch.index.fielddata.AbstractSortingNumericDocValues;
|
||||||
import org.opensearch.index.fielddata.MultiGeoPointValues;
|
import org.opensearch.index.fielddata.MultiGeoPointValues;
|
|
@ -16,9 +16,9 @@
|
||||||
* specific language governing permissions and limitations
|
* specific language governing permissions and limitations
|
||||||
* under the License.
|
* under the License.
|
||||||
*/
|
*/
|
||||||
package org.elasticsearch.search.aggregations.bucket.geogrid;
|
package org.opensearch.search.aggregations.bucket.geogrid;
|
||||||
|
|
||||||
import org.elasticsearch.search.aggregations.bucket.MultiBucketsAggregation;
|
import org.opensearch.search.aggregations.bucket.MultiBucketsAggregation;
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
|
@ -17,7 +17,7 @@
|
||||||
* under the License.
|
* under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package org.elasticsearch.search.aggregations.bucket.geogrid;
|
package org.opensearch.search.aggregations.bucket.geogrid;
|
||||||
|
|
||||||
import org.opensearch.OpenSearchException;
|
import org.opensearch.OpenSearchException;
|
||||||
import org.opensearch.Version;
|
import org.opensearch.Version;
|
||||||
|
@ -32,7 +32,7 @@ import org.elasticsearch.common.xcontent.XContentParser;
|
||||||
import org.elasticsearch.index.query.QueryShardContext;
|
import org.elasticsearch.index.query.QueryShardContext;
|
||||||
import org.elasticsearch.search.aggregations.AggregatorFactories.Builder;
|
import org.elasticsearch.search.aggregations.AggregatorFactories.Builder;
|
||||||
import org.elasticsearch.search.aggregations.AggregatorFactory;
|
import org.elasticsearch.search.aggregations.AggregatorFactory;
|
||||||
import org.elasticsearch.search.aggregations.bucket.BucketUtils;
|
import org.opensearch.search.aggregations.bucket.BucketUtils;
|
||||||
import org.opensearch.search.aggregations.support.CoreValuesSourceType;
|
import org.opensearch.search.aggregations.support.CoreValuesSourceType;
|
||||||
import org.opensearch.search.aggregations.support.ValuesSourceAggregationBuilder;
|
import org.opensearch.search.aggregations.support.ValuesSourceAggregationBuilder;
|
||||||
import org.opensearch.search.aggregations.support.ValuesSourceAggregatorFactory;
|
import org.opensearch.search.aggregations.support.ValuesSourceAggregatorFactory;
|
|
@ -16,7 +16,7 @@
|
||||||
* specific language governing permissions and limitations
|
* specific language governing permissions and limitations
|
||||||
* under the License.
|
* under the License.
|
||||||
*/
|
*/
|
||||||
package org.elasticsearch.search.aggregations.bucket.geogrid;
|
package org.opensearch.search.aggregations.bucket.geogrid;
|
||||||
|
|
||||||
import org.apache.lucene.index.LeafReaderContext;
|
import org.apache.lucene.index.LeafReaderContext;
|
||||||
import org.apache.lucene.index.SortedNumericDocValues;
|
import org.apache.lucene.index.SortedNumericDocValues;
|
||||||
|
@ -28,8 +28,8 @@ import org.elasticsearch.search.aggregations.CardinalityUpperBound;
|
||||||
import org.elasticsearch.search.aggregations.InternalAggregation;
|
import org.elasticsearch.search.aggregations.InternalAggregation;
|
||||||
import org.elasticsearch.search.aggregations.LeafBucketCollector;
|
import org.elasticsearch.search.aggregations.LeafBucketCollector;
|
||||||
import org.elasticsearch.search.aggregations.LeafBucketCollectorBase;
|
import org.elasticsearch.search.aggregations.LeafBucketCollectorBase;
|
||||||
import org.elasticsearch.search.aggregations.bucket.BucketsAggregator;
|
import org.opensearch.search.aggregations.bucket.BucketsAggregator;
|
||||||
import org.elasticsearch.search.aggregations.bucket.terms.LongKeyedBucketOrds;
|
import org.opensearch.search.aggregations.bucket.terms.LongKeyedBucketOrds;
|
||||||
import org.opensearch.search.aggregations.support.ValuesSource;
|
import org.opensearch.search.aggregations.support.ValuesSource;
|
||||||
import org.opensearch.search.internal.SearchContext;
|
import org.opensearch.search.internal.SearchContext;
|
||||||
|
|
|
@ -17,7 +17,7 @@
|
||||||
* under the License.
|
* under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package org.elasticsearch.search.aggregations.bucket.geogrid;
|
package org.opensearch.search.aggregations.bucket.geogrid;
|
||||||
|
|
||||||
import org.opensearch.common.geo.GeoBoundingBox;
|
import org.opensearch.common.geo.GeoBoundingBox;
|
||||||
import org.opensearch.common.geo.GeoUtils;
|
import org.opensearch.common.geo.GeoUtils;
|
|
@ -16,7 +16,7 @@
|
||||||
* specific language governing permissions and limitations
|
* specific language governing permissions and limitations
|
||||||
* under the License.
|
* under the License.
|
||||||
*/
|
*/
|
||||||
package org.elasticsearch.search.aggregations.bucket.geogrid;
|
package org.opensearch.search.aggregations.bucket.geogrid;
|
||||||
|
|
||||||
import org.elasticsearch.search.aggregations.Aggregator;
|
import org.elasticsearch.search.aggregations.Aggregator;
|
||||||
import org.elasticsearch.search.aggregations.AggregatorFactories;
|
import org.elasticsearch.search.aggregations.AggregatorFactories;
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue