Uses of Interface
org.apache.pinot.segment.spi.partition.PartitionFunction
-
-
Uses of PartitionFunction in org.apache.pinot.segment.spi
Methods in org.apache.pinot.segment.spi that return PartitionFunction Modifier and Type Method Description PartitionFunctionColumnMetadata. getPartitionFunction() -
Uses of PartitionFunction in org.apache.pinot.segment.spi.creator
Methods in org.apache.pinot.segment.spi.creator that return PartitionFunction Modifier and Type Method Description PartitionFunctionColumnIndexCreationInfo. getPartitionFunction()PartitionFunctionColumnStatistics. getPartitionFunction() -
Uses of PartitionFunction in org.apache.pinot.segment.spi.datasource
Methods in org.apache.pinot.segment.spi.datasource that return PartitionFunction Modifier and Type Method Description PartitionFunctionDataSourceMetadata. getPartitionFunction()Returns the partition function of the column, ornullif the column is not partitioned. -
Uses of PartitionFunction in org.apache.pinot.segment.spi.index.metadata
Methods in org.apache.pinot.segment.spi.index.metadata that return PartitionFunction Modifier and Type Method Description PartitionFunctionColumnMetadataImpl. getPartitionFunction()Methods in org.apache.pinot.segment.spi.index.metadata with parameters of type PartitionFunction Modifier and Type Method Description ColumnMetadataImpl.BuilderColumnMetadataImpl.Builder. setPartitionFunction(PartitionFunction partitionFunction) -
Uses of PartitionFunction in org.apache.pinot.segment.spi.partition
Classes in org.apache.pinot.segment.spi.partition that implement PartitionFunction Modifier and Type Class Description classBoundedColumnValuePartitionFunctionImplementation ofPartitionFunctionwhich partitions based configured column values.classByteArrayPartitionFunctionImplementation ofarray partitionerclassHashCodePartitionFunctionHash code partition function, where: partitionId = value.hashCode() %HashCodePartitionFunction._numPartitionsclassModuloPartitionFunctionModulo operation based partition function, where: partitionId = value %ModuloPartitionFunction._numPartitionsclassMurmurPartitionFunctionImplementation ofPartitionFunctionwhich partitions based on 32 bit murmur hashMethods in org.apache.pinot.segment.spi.partition that return PartitionFunction Modifier and Type Method Description static PartitionFunctionPartitionFunctionFactory. getPartitionFunction(String functionName, int numPartitions, Map<String,String> functionConfig)This method generates and returns a partition function based on the provided string.
-