Class ConfigurableCompactionStrategy
- java.lang.Object
-
- org.apache.accumulo.tserver.compaction.CompactionStrategy
-
- org.apache.accumulo.tserver.compaction.strategies.ConfigurableCompactionStrategy
-
public class ConfigurableCompactionStrategy extends CompactionStrategy
The compaction strategy used by the shell compact command.
-
-
Constructor Summary
Constructors Constructor Description ConfigurableCompactionStrategy()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidgatherInformation(MajorCompactionRequest request)Called prior to obtaining the tablet lock, useful for examining metadata or indexes.CompactionPlangetCompactionPlan(MajorCompactionRequest request)Get the plan for compacting a tablets files.voidinit(Map<String,String> options)The settings for the compaction strategy pulled from zookeeper.booleanshouldCompact(MajorCompactionRequest request)Determine if this tablet is eligible for a major compaction.
-
-
-
Method Detail
-
init
public void init(Map<String,String> options)
Description copied from class:CompactionStrategyThe settings for the compaction strategy pulled from zookeeper. Thetable.compacations.major.strategy.optspart of the setting will be removed.- Overrides:
initin classCompactionStrategy
-
shouldCompact
public boolean shouldCompact(MajorCompactionRequest request)
Description copied from class:CompactionStrategyDetermine if this tablet is eligible for a major compaction. It's ok if it later determines (throughCompactionStrategy.gatherInformation(MajorCompactionRequest)andCompactionStrategy.getCompactionPlan(MajorCompactionRequest)) that it does not need to. Any state stored during shouldCompact will no longer exist whenCompactionStrategy.gatherInformation(MajorCompactionRequest)andCompactionStrategy.getCompactionPlan(MajorCompactionRequest)are called.Called while holding the tablet lock, so it should not be doing any blocking.
Since no blocking should be done in this method, then its unexpected that this method will throw IOException. However since its in the API, it can not be easily removed.
- Specified by:
shouldCompactin classCompactionStrategy
-
gatherInformation
public void gatherInformation(MajorCompactionRequest request)
Description copied from class:CompactionStrategyCalled prior to obtaining the tablet lock, useful for examining metadata or indexes. State collected during this method will be available during the call theCompactionStrategy.getCompactionPlan(MajorCompactionRequest).- Overrides:
gatherInformationin classCompactionStrategy- Parameters:
request- basic details about the tablet
-
getCompactionPlan
public CompactionPlan getCompactionPlan(MajorCompactionRequest request)
Description copied from class:CompactionStrategyGet the plan for compacting a tablets files. Called while holding the tablet lock, so it should not be doing any blocking.Since no blocking should be done in this method, then its unexpected that this method will throw IOException. However since its in the API, it can not be easily removed.
- Specified by:
getCompactionPlanin classCompactionStrategy- Parameters:
request- basic details about the tablet- Returns:
- the plan for a major compaction, or null to cancel the compaction.
-
-