Class NumberedOverwritePartialShardSpec
- java.lang.Object
-
- org.apache.druid.timeline.partition.NumberedOverwritePartialShardSpec
-
- All Implemented Interfaces:
PartialShardSpec
public class NumberedOverwritePartialShardSpec extends Object implements PartialShardSpec
-
-
Constructor Summary
Constructors Constructor Description NumberedOverwritePartialShardSpec(int startRootPartitionId, int endRootPartitionId, int minorVersion)NumberedOverwritePartialShardSpec(int startRootPartitionId, int endRootPartitionId, short minorVersion)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ShardSpeccomplete(com.fasterxml.jackson.databind.ObjectMapper objectMapper, int partitionId, int numCorePartitions)Creates a new ShardSpec with given partitionId and numCorePartitions.intgetEndRootPartitionId()shortgetMinorVersion()Class<? extends ShardSpec>getShardSpecClass()Returns the class of the shardSpec created by this factory.intgetStartRootPartitionId()booleanuseNonRootGenerationPartitionSpace()Returns true if this partialShardSpec needs a partitionId of a non-root generation.
-
-
-
Constructor Detail
-
NumberedOverwritePartialShardSpec
public NumberedOverwritePartialShardSpec(int startRootPartitionId, int endRootPartitionId, short minorVersion)
-
NumberedOverwritePartialShardSpec
public NumberedOverwritePartialShardSpec(int startRootPartitionId, int endRootPartitionId, int minorVersion)
-
-
Method Detail
-
getStartRootPartitionId
public int getStartRootPartitionId()
-
getEndRootPartitionId
public int getEndRootPartitionId()
-
getMinorVersion
public short getMinorVersion()
-
complete
public ShardSpec complete(com.fasterxml.jackson.databind.ObjectMapper objectMapper, int partitionId, int numCorePartitions)
Description copied from interface:PartialShardSpecCreates a new ShardSpec with given partitionId and numCorePartitions.- Specified by:
completein interfacePartialShardSpec- Parameters:
objectMapper- jsonMapper used only forHashBasedNumberedShardSpecpartitionId- partitionId of the shardSpec. must be carefully chosen to be unique in a time chunknumCorePartitions- the core partition set size. Should be set properly to determine if this segment belongs to the core partitions.
-
getShardSpecClass
public Class<? extends ShardSpec> getShardSpecClass()
Description copied from interface:PartialShardSpecReturns the class of the shardSpec created by this factory.- Specified by:
getShardSpecClassin interfacePartialShardSpec
-
useNonRootGenerationPartitionSpace
public boolean useNonRootGenerationPartitionSpace()
Description copied from interface:PartialShardSpecReturns true if this partialShardSpec needs a partitionId of a non-root generation. Any partialShardSpec to overwrite a subset of segments in a time chunk such asNumberedOverwritePartialShardSpecshould return true.- Specified by:
useNonRootGenerationPartitionSpacein interfacePartialShardSpec- See Also:
PartitionIds
-
-