Class DimensionRangePartitionsSpec
java.lang.Object
org.apache.druid.indexer.partitions.DimensionRangePartitionsSpec
- All Implemented Interfaces:
DimensionBasedPartitionsSpec,PartitionsSpec
- Direct Known Subclasses:
SingleDimensionPartitionsSpec
Spec to create partitions based on value ranges of multiple dimensions.
A MultiDimensionPartitionSpec has the following fields:
- either targetRowsPerSegment or maxRowsPerSegment
- partitionDimensions: List of dimension names to be used for partitioning
- assumeGrouped: true if input data has already been grouped on time and dimensions
-
Field Summary
FieldsFields inherited from interface org.apache.druid.indexer.partitions.DimensionBasedPartitionsSpec
ASSUME_GROUPED, FORCE_GUARANTEED_ROLLUP_COMPATIBLE, MAX_PARTITION_SIZE, PARTITION_DIMENSIONS, TARGET_PARTITION_SIZE, TARGET_ROWS_PER_SEGMENTFields inherited from interface org.apache.druid.indexer.partitions.PartitionsSpec
DEFAULT_MAX_ROWS_PER_SEGMENT, HISTORICAL_NULL, MAX_ROWS_PER_SEGMENT -
Constructor Summary
ConstructorsConstructorDescriptionDimensionRangePartitionsSpec(Integer targetRowsPerSegment, Integer maxRowsPerSegment, List<String> partitionDimensions, boolean assumeGrouped) -
Method Summary
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface org.apache.druid.indexer.partitions.PartitionsSpec
isForceGuaranteedRollupCompatible, isForceGuaranteedRollupCompatibleType
-
Field Details
-
NAME
- See Also:
-
-
Constructor Details
-
DimensionRangePartitionsSpec
-
-
Method Details
-
getTargetRowsPerSegment
- Specified by:
getTargetRowsPerSegmentin interfaceDimensionBasedPartitionsSpec
-
getType
- Specified by:
getTypein interfacePartitionsSpec
-
getMaxRowsPerSegment
Description copied from interface:PartitionsSpecReturns the max number of rows per segment. Implementations can have different default values which it could be even null. Callers should use the right value depending on the context if this returns null.- Specified by:
getMaxRowsPerSegmentin interfacePartitionsSpec- Returns:
- Resolved value of max rows per segment.
-
getMaxRowsPerSegmentForJson
-
isAssumeGrouped
public boolean isAssumeGrouped() -
getPartitionDimensions
- Specified by:
getPartitionDimensionsin interfaceDimensionBasedPartitionsSpec
-
getForceGuaranteedRollupIncompatiblityReason
- Specified by:
getForceGuaranteedRollupIncompatiblityReasonin interfacePartitionsSpec- Returns:
- Message describing why this partitionSpec is incompatible with forceGuaranteedRollup=true. Empty string if the partitionSpec is compatible.
-
needsDeterminePartitions
public boolean needsDeterminePartitions()Description copied from interface:PartitionsSpecReturns true if this partitionsSpec needs to determine the number of partitions to start data ingestion. It should usually return true if perfect rollup is enforced but number of partitions is not specified.- Specified by:
needsDeterminePartitionsin interfacePartitionsSpec
-
equals
-
hashCode
public int hashCode() -
toString
-