org.apache.kylin.measure.MeasureAggregator Maven / Gradle / Ivy
/*
* 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.kylin.measure;
import java.io.Serializable;
import org.apache.kylin.metadata.datatype.DataType;
/**
*/
@SuppressWarnings("serial")
abstract public class MeasureAggregator implements Serializable {
public static MeasureAggregator> create(String funcName, DataType dataType) {
return MeasureTypeFactory.create(funcName, dataType).newAggregator();
}
public static int guessBigDecimalMemBytes() {
// 116 returned by AggregationCacheMemSizeTest
return 8 // aggregator obj shell
+ 8 // ref to BigDecimal
+ 8 // BigDecimal obj shell
+ 100; // guess of BigDecimal internal
}
public static int guessDoubleMemBytes() {
// 29 to 44 returned by AggregationCacheMemSizeTest
return 44;
/*
return 8 // aggregator obj shell
+ 8 // ref to DoubleWritable
+ 8 // DoubleWritable obj shell
+ 8; // size of double
*/
}
public static int guessLongMemBytes() {
// 29 to 44 returned by AggregationCacheMemSizeTest
return 44;
/*
return 8 // aggregator obj shell
+ 8 // ref to LongWritable
+ 8 // LongWritable obj shell
+ 8; // size of long
*/
}
// ============================================================================
@SuppressWarnings("rawtypes")
public void setDependentAggregator(MeasureAggregator agg) {
}
abstract public void reset();
abstract public void aggregate(V value);
abstract public V getState();
// get an estimate of memory consumption UPPER BOUND
abstract public int getMemBytesEstimate();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy