forked from opensearch-project/sql
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Support Percentile in PPL Signed-off-by: Lantao Jin <[email protected]> * Remove ANSI SQL percentile syntax Signed-off-by: Lantao Jin <[email protected]> * add more unit tests and increase test coverage Signed-off-by: Lantao Jin <[email protected]> * increase test coverage Signed-off-by: Lantao Jin <[email protected]> * address comments and add docs Signed-off-by: Lantao Jin <[email protected]> * add examples in doc Signed-off-by: Lantao Jin <[email protected]> * fix doctest failure and add more integ tests Signed-off-by: Lantao Jin <[email protected]> * remove useless code and antlr4 files Signed-off-by: Lantao Jin <[email protected]> --------- Signed-off-by: Lantao Jin <[email protected]>
- Loading branch information
Showing
27 changed files
with
1,375 additions
and
71 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
98 changes: 98 additions & 0 deletions
98
.../main/java/org/opensearch/sql/expression/aggregation/PercentileApproximateAggregator.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
/* | ||
* Copyright OpenSearch Contributors | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
package org.opensearch.sql.expression.aggregation; | ||
|
||
import static org.opensearch.sql.data.model.ExprValueUtils.doubleValue; | ||
import static org.opensearch.sql.utils.ExpressionUtils.format; | ||
|
||
import com.tdunning.math.stats.AVLTreeDigest; | ||
import java.util.List; | ||
import org.opensearch.sql.common.utils.StringUtils; | ||
import org.opensearch.sql.data.model.ExprNullValue; | ||
import org.opensearch.sql.data.model.ExprValue; | ||
import org.opensearch.sql.data.type.ExprCoreType; | ||
import org.opensearch.sql.expression.Expression; | ||
import org.opensearch.sql.expression.function.BuiltinFunctionName; | ||
|
||
/** Aggregator to calculate approximate percentile. */ | ||
public class PercentileApproximateAggregator | ||
extends Aggregator<PercentileApproximateAggregator.PercentileApproximateState> { | ||
|
||
public static Aggregator percentileApprox(List<Expression> arguments, ExprCoreType returnType) { | ||
return new PercentileApproximateAggregator(arguments, returnType); | ||
} | ||
|
||
public PercentileApproximateAggregator(List<Expression> arguments, ExprCoreType returnType) { | ||
super(BuiltinFunctionName.PERCENTILE_APPROX.getName(), arguments, returnType); | ||
if (!ExprCoreType.numberTypes().contains(returnType)) { | ||
throw new IllegalArgumentException( | ||
String.format("percentile aggregation over %s type is not supported", returnType)); | ||
} | ||
} | ||
|
||
@Override | ||
public PercentileApproximateState create() { | ||
if (getArguments().size() == 2) { | ||
return new PercentileApproximateState(getArguments().get(1).valueOf().doubleValue()); | ||
} else { | ||
return new PercentileApproximateState( | ||
getArguments().get(1).valueOf().doubleValue(), | ||
getArguments().get(2).valueOf().doubleValue()); | ||
} | ||
} | ||
|
||
@Override | ||
protected PercentileApproximateState iterate(ExprValue value, PercentileApproximateState state) { | ||
state.evaluate(value); | ||
return state; | ||
} | ||
|
||
@Override | ||
public String toString() { | ||
return StringUtils.format("%s(%s)", "percentile", format(getArguments())); | ||
} | ||
|
||
/** | ||
* PercentileApproximateState is used to store the AVLTreeDigest state for percentile estimation. | ||
*/ | ||
protected static class PercentileApproximateState extends AVLTreeDigest | ||
implements AggregationState { | ||
// The compression level for the AVLTreeDigest, keep the same default value as OpenSearch core. | ||
public static final double DEFAULT_COMPRESSION = 100.0; | ||
private final double percent; | ||
|
||
PercentileApproximateState(double percent) { | ||
super(DEFAULT_COMPRESSION); | ||
if (percent < 0.0 || percent > 100.0) { | ||
throw new IllegalArgumentException("out of bounds percent value, must be in [0, 100]"); | ||
} | ||
this.percent = percent / 100.0; | ||
} | ||
|
||
/** | ||
* Constructor for specifying both percent and compression level. | ||
* | ||
* @param percent the percent to compute, must be in [0, 100] | ||
* @param compression the compression factor of the t-digest sketches used | ||
*/ | ||
PercentileApproximateState(double percent, double compression) { | ||
super(compression); | ||
if (percent < 0.0 || percent > 100.0) { | ||
throw new IllegalArgumentException("out of bounds percent value, must be in [0, 100]"); | ||
} | ||
this.percent = percent / 100.0; | ||
} | ||
|
||
public void evaluate(ExprValue value) { | ||
this.add(value.doubleValue()); | ||
} | ||
|
||
@Override | ||
public ExprValue result() { | ||
return this.size() == 0 ? ExprNullValue.of() : doubleValue(this.quantile(percent)); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.