public abstract class DropRule extends Object implements Rule
| Constructor and Description |
|---|
DropRule() |
| Modifier and Type | Method and Description |
|---|---|
boolean |
canLoadSegments()
Return true if this Rule can load segment onto one or more type of Druid node, otherwise return false.
|
CoordinatorStats |
run(DruidCoordinator coordinator,
DruidCoordinatorRuntimeParams params,
DataSegment segment)
DruidCoordinatorRuntimeParams.getUsedSegments() must not be called in Rule's code, because the used
segments are not specified for the DruidCoordinatorRuntimeParams passed into Rule's code. |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitappliesTo, appliesTo, getType, updateUnderReplicated, updateUnderReplicatedWithClusterViewpublic CoordinatorStats run(DruidCoordinator coordinator, DruidCoordinatorRuntimeParams params, DataSegment segment)
RuleDruidCoordinatorRuntimeParams.getUsedSegments() must not be called in Rule's code, because the used
segments are not specified for the DruidCoordinatorRuntimeParams passed into Rule's code. This is because
DruidCoordinatorRuntimeParams entangles two slightly different (nonexistent yet) abstractions:
"CoordinatorDutyParams" and "RuleParams" which contain params that only CoordinatorDuty objects and Rules need, respectively. For example,
ReplicationThrottler needs to belong only to "RuleParams", but not to
"CoordinatorDutyParams". The opposite for the collection of used segments and DataSourcesSnapshot.
See https://github.com/apache/druid/issues/7228public boolean canLoadSegments()
RuleRule.updateUnderReplicated(java.util.Map<java.lang.String, it.unimi.dsi.fastutil.objects.Object2LongMap<java.lang.String>>, org.apache.druid.server.coordinator.SegmentReplicantLookup, org.apache.druid.timeline.DataSegment)canLoadSegments in interface RuleCopyright © 2011–2021 The Apache Software Foundation. All rights reserved.