Class TombstoneShardSpec
- java.lang.Object
-
- org.apache.druid.timeline.partition.TombstoneShardSpec
-
- All Implemented Interfaces:
ShardSpec
public class TombstoneShardSpec extends Object implements ShardSpec
A shard spec to represent tombstones. Its partition number is always zero and contains zero core partitions as it contains no data. This allows other shard types appending to an existingTombstoneShardSpec
to exist independently in the timeline even if theTombstoneShardSpec
is dropped.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.apache.druid.timeline.partition.ShardSpec
ShardSpec.Type
-
-
Field Summary
Fields Modifier and Type Field Description static TombstoneShardSpec
INSTANCE
-
Constructor Summary
Constructors Constructor Description TombstoneShardSpec()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <T> PartitionChunk<T>
createChunk(T obj)
boolean
equals(Object o)
List<String>
getDomainDimensions()
Get dimensions who have possible range for the rows this shard contains.ShardSpecLookup
getLookup(List<? extends ShardSpec> shardSpecs)
int
getNumCorePartitions()
int
getPartitionNum()
Returns the partition ID of this segment.String
getType()
Get the type name of this ShardSpec.int
hashCode()
boolean
possibleInDomain(Map<String,com.google.common.collect.RangeSet<String>> domain)
if given domain ranges are not possible in this shard, return false; otherwise return true;String
toString()
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.apache.druid.timeline.partition.ShardSpec
getAtomicUpdateGroupSize, getEndRootPartitionId, getMinorVersion, getStartRootPartitionId, sharePartitionSpace
-
-
-
-
Field Detail
-
INSTANCE
public static TombstoneShardSpec INSTANCE
-
-
Method Detail
-
getPartitionNum
public int getPartitionNum()
Description copied from interface:ShardSpec
Returns the partition ID of this segment.- Specified by:
getPartitionNum
in interfaceShardSpec
-
getLookup
public ShardSpecLookup getLookup(List<? extends ShardSpec> shardSpecs)
-
getDomainDimensions
public List<String> getDomainDimensions()
Description copied from interface:ShardSpec
Get dimensions who have possible range for the rows this shard contains.- Specified by:
getDomainDimensions
in interfaceShardSpec
- Returns:
- list of dimensions who has its possible range. Dimensions with unknown possible range are not listed
-
possibleInDomain
public boolean possibleInDomain(Map<String,com.google.common.collect.RangeSet<String>> domain)
Description copied from interface:ShardSpec
if given domain ranges are not possible in this shard, return false; otherwise return true;- Specified by:
possibleInDomain
in interfaceShardSpec
- Returns:
- possibility of in domain
-
getNumCorePartitions
public int getNumCorePartitions()
- Specified by:
getNumCorePartitions
in interfaceShardSpec
-
createChunk
public <T> PartitionChunk<T> createChunk(T obj)
- Specified by:
createChunk
in interfaceShardSpec
-
getType
public String getType()
Description copied from interface:ShardSpec
Get the type name of this ShardSpec.
-
-