Class SizeLimitCompactionStrategy
- java.lang.Object
-
- org.apache.accumulo.tserver.compaction.CompactionStrategy
-
- org.apache.accumulo.tserver.compaction.DefaultCompactionStrategy
-
- org.apache.accumulo.tserver.compaction.SizeLimitCompactionStrategy
-
public class SizeLimitCompactionStrategy extends DefaultCompactionStrategy
BasicCompactionStrategyoffer the same functionality as this class and more.
-
-
Field Summary
Fields Modifier and Type Field Description static StringSIZE_LIMIT_OPT
-
Constructor Summary
Constructors Constructor Description SizeLimitCompactionStrategy()
-
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.
-
-
-
Field Detail
-
SIZE_LIMIT_OPT
public static final String SIZE_LIMIT_OPT
- See Also:
- Constant Field Values
-
-
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.
- Overrides:
shouldCompactin classDefaultCompactionStrategy
-
gatherInformation
public void gatherInformation(MajorCompactionRequest request) throws IOException
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- Throws:
IOException
-
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.
- Overrides:
getCompactionPlanin classDefaultCompactionStrategy- Parameters:
request- basic details about the tablet- Returns:
- the plan for a major compaction, or null to cancel the compaction.
-
-