@InterfaceAudience.Private public abstract class CompactionContext extends Object
| Modifier and Type | Field and Description | 
|---|---|
| protected CompactionRequestImpl | request | 
| Constructor and Description | 
|---|
| CompactionContext() | 
| Modifier and Type | Method and Description | 
|---|---|
| abstract List<org.apache.hadoop.fs.Path> | compact(ThroughputController throughputController,
       User user) | 
| void | forceSelect(CompactionRequestImpl request)Forces external selection to be applied for this compaction. | 
| CompactionRequestImpl | getRequest() | 
| boolean | hasSelection() | 
| abstract List<HStoreFile> | preSelect(List<HStoreFile> filesCompacting)Called before coprocessor preCompactSelection and should filter the candidates
 for coprocessor; i.e. | 
| abstract boolean | select(List<HStoreFile> filesCompacting,
      boolean isUserCompaction,
      boolean mayUseOffPeak,
      boolean forceMajor)Called to select files for compaction. | 
protected CompactionRequestImpl request
public CompactionContext()
public abstract List<HStoreFile> preSelect(List<HStoreFile> filesCompacting)
filesCompacting - files currently compactingpublic abstract boolean select(List<HStoreFile> filesCompacting, boolean isUserCompaction, boolean mayUseOffPeak, boolean forceMajor) throws IOException
filesCompacting - Files currently being compacted by other compactions.isUserCompaction - Whether this is a user compaction.mayUseOffPeak - Whether the underlying policy may assume it's off-peak hours.forceMajor - Whether to force major compaction.IOExceptionpublic void forceSelect(CompactionRequestImpl request)
request - The pre-cooked request with selection and other settings.public abstract List<org.apache.hadoop.fs.Path> compact(ThroughputController throughputController, User user) throws IOException
IOExceptionpublic CompactionRequestImpl getRequest()
public boolean hasSelection()
Copyright © 2007–2021 The Apache Software Foundation. All rights reserved.