blob: a258b05d394637bc2e56290f385962eae751e6b7 [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.pinot.core.startree.v2;
import java.util.Random;
import org.apache.pinot.core.common.ObjectSerDeUtils;
import org.apache.pinot.segment.local.aggregator.PercentileEstValueAggregator;
import org.apache.pinot.segment.local.aggregator.ValueAggregator;
import org.apache.pinot.segment.local.customobject.QuantileDigest;
import org.apache.pinot.spi.data.FieldSpec.DataType;
import static org.testng.Assert.assertEquals;
public class PreAggregatedPercentileEstStarTreeV2Test extends BaseStarTreeV2Test<Object, QuantileDigest> {
// Use non-default max error
private static final double MAX_ERROR = 0.1;
private static final int MAX_VALUE = 10000;
@Override
ValueAggregator<Object, QuantileDigest> getValueAggregator() {
return new PercentileEstValueAggregator();
}
@Override
DataType getRawValueType() {
return DataType.BYTES;
}
@Override
Object getRandomRawValue(Random random) {
QuantileDigest quantileDigest = new QuantileDigest(MAX_ERROR);
quantileDigest.add(random.nextInt(MAX_VALUE));
quantileDigest.add(random.nextInt(MAX_VALUE));
return ObjectSerDeUtils.QUANTILE_DIGEST_SER_DE.serialize(quantileDigest);
}
@Override
void assertAggregatedValue(QuantileDigest starTreeResult, QuantileDigest nonStarTreeResult) {
double delta = MAX_VALUE * MAX_ERROR;
for (int i = 0; i <= 100; i++) {
assertEquals(starTreeResult.getQuantile(i / 100.0), nonStarTreeResult.getQuantile(i / 100.0), delta);
}
}
}