Interface CompactionDispatcher
- All Known Implementing Classes:
SimpleCompactionDispatcher
public interface CompactionDispatcher
Can be configured per table to dispatch compactions to different compaction services. For a given
table the dispatcher can choose a different compaction service for each kind of compaction. For
example, user and chop compactions could be dispatched to service_A while system compactions are
dispatched to service_B.
- Since:
- 2.1.0
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic interface
The method parameters fordispatch(DispatchParameters)
.static interface
The method parameters forinit(InitParameters)
. -
Method Summary
Modifier and TypeMethodDescriptionAccumulo calls this method for compactions to determine what service to use.default void
This method is called once after a CompactionDispatcher is instantiated.
-
Method Details
-
init
This method is called once after a CompactionDispatcher is instantiated. -
dispatch
Accumulo calls this method for compactions to determine what service to use.
-