@InterfaceAudience.Private public class StripeStoreFileManager extends Object implements StoreFileManager, StripeCompactionPolicy.StripeInformationProvider
Modifier and Type | Field and Description |
---|---|
static byte[] |
OPEN_KEY
The key value used for range boundary, indicating that the boundary is open (i.e.
|
static byte[] |
STRIPE_END_KEY |
static byte[] |
STRIPE_START_KEY
The file metadata fields that contain the stripe information.
|
Constructor and Description |
---|
StripeStoreFileManager(KeyValue.KVComparator kvComparator,
org.apache.hadoop.conf.Configuration conf,
StripeStoreConfig config) |
Modifier and Type | Method and Description |
---|---|
void |
addCompactionResults(Collection<StoreFile> compactedFiles,
Collection<StoreFile> results)
Adds only the new compaction results into the structure.
|
com.google.common.collect.ImmutableCollection<StoreFile> |
clearCompactedFiles()
Clears all the compacted files and returns them.
|
com.google.common.collect.ImmutableCollection<StoreFile> |
clearFiles()
Clears all the files currently in use and returns them.
|
Iterator<StoreFile> |
getCandidateFilesForRowKeyBefore(KeyValue targetKey)
See
StoreFileManager.getCandidateFilesForRowKeyBefore(KeyValue)
for details on this methods. |
Collection<StoreFile> |
getCompactedfiles()
List of compacted files inside this store that needs to be excluded in reads
because further new reads will be using only the newly created files out of compaction.
|
double |
getCompactionPressure() |
byte[] |
getEndRow(int stripeIndex)
Gets the end row for a given stripe.
|
Collection<StoreFile> |
getFilesForScanOrGet(byte[] startRow,
boolean includeStartRow,
byte[] stopRow,
boolean includeStopRow)
Gets the store files to scan for a Scan or Get request.
|
List<StoreFile> |
getLevel0Files() |
byte[] |
getSplitPoint()
Gets the split point for the split of this set of store files (approx.
|
byte[] |
getStartRow(int stripeIndex)
Gets the start row for a given stripe.
|
int |
getStoreCompactionPriority() |
Comparator<StoreFile> |
getStoreFileComparator() |
int |
getStorefileCount()
Returns the number of files currently in use.
|
Collection<StoreFile> |
getStorefiles()
Gets the snapshot of the store files currently in use.
|
List<byte[]> |
getStripeBoundaries() |
int |
getStripeCount() |
ArrayList<com.google.common.collect.ImmutableList<StoreFile>> |
getStripes() |
Collection<StoreFile> |
getUnneededFiles(long maxTs,
List<StoreFile> filesCompacting) |
void |
insertNewFiles(Collection<StoreFile> sfs)
Adds new files, either for from MemStore flush or bulk insert, into the structure.
|
void |
loadFiles(List<StoreFile> storeFiles)
Loads the initial store files into empty StoreFileManager.
|
void |
removeCompactedFiles(Collection<StoreFile> compactedFiles)
Remove the compacted files
|
Iterator<StoreFile> |
updateCandidateFilesForRowKeyBefore(Iterator<StoreFile> candidateFiles,
KeyValue targetKey,
Cell candidate)
See
StoreFileManager.getCandidateFilesForRowKeyBefore(KeyValue) and
StoreFileManager.updateCandidateFilesForRowKeyBefore(Iterator, KeyValue, Cell)
for details on this methods. |
public static final byte[] STRIPE_START_KEY
public static final byte[] STRIPE_END_KEY
public static final byte[] OPEN_KEY
public StripeStoreFileManager(KeyValue.KVComparator kvComparator, org.apache.hadoop.conf.Configuration conf, StripeStoreConfig config)
public void loadFiles(List<StoreFile> storeFiles)
StoreFileManager
loadFiles
in interface StoreFileManager
storeFiles
- The files to load.public Collection<StoreFile> getStorefiles()
StoreFileManager
getStorefiles
in interface StripeCompactionPolicy.StripeInformationProvider
getStorefiles
in interface StoreFileManager
public Collection<StoreFile> getCompactedfiles()
StoreFileManager
getCompactedfiles
in interface StoreFileManager
public void insertNewFiles(Collection<StoreFile> sfs) throws IOException
StoreFileManager
insertNewFiles
in interface StoreFileManager
sfs
- New store files.IOException
public com.google.common.collect.ImmutableCollection<StoreFile> clearFiles()
StoreFileManager
clearFiles
in interface StoreFileManager
public com.google.common.collect.ImmutableCollection<StoreFile> clearCompactedFiles()
StoreFileManager
clearCompactedFiles
in interface StoreFileManager
public int getStorefileCount()
StoreFileManager
getStorefileCount
in interface StoreFileManager
public Iterator<StoreFile> getCandidateFilesForRowKeyBefore(KeyValue targetKey)
StoreFileManager.getCandidateFilesForRowKeyBefore(KeyValue)
for details on this methods.getCandidateFilesForRowKeyBefore
in interface StoreFileManager
targetKey
- The key that is the basis of the search.public Iterator<StoreFile> updateCandidateFilesForRowKeyBefore(Iterator<StoreFile> candidateFiles, KeyValue targetKey, Cell candidate)
StoreFileManager.getCandidateFilesForRowKeyBefore(KeyValue)
and
StoreFileManager.updateCandidateFilesForRowKeyBefore(Iterator, KeyValue, Cell)
for details on this methods.updateCandidateFilesForRowKeyBefore
in interface StoreFileManager
candidateFiles
- The candidate files not yet checked for better candidates - return
value from StoreFileManager.getCandidateFilesForRowKeyBefore(KeyValue)
,
with some files already removed.targetKey
- The key to search for.candidate
- The current best candidate found.public byte[] getSplitPoint() throws IOException
StoreFileManager
getSplitPoint
in interface StoreFileManager
IOException
public Collection<StoreFile> getFilesForScanOrGet(byte[] startRow, boolean includeStartRow, byte[] stopRow, boolean includeStopRow)
StoreFileManager
getFilesForScanOrGet
in interface StoreFileManager
startRow
- Start row of the request.stopRow
- Stop row of the request.public void addCompactionResults(Collection<StoreFile> compactedFiles, Collection<StoreFile> results) throws IOException
StoreFileManager
addCompactionResults
in interface StoreFileManager
compactedFiles
- The input files for the compaction.results
- The resulting files for the compaction.IOException
public void removeCompactedFiles(Collection<StoreFile> compactedFiles) throws IOException
StoreFileManager
removeCompactedFiles
in interface StoreFileManager
compactedFiles
- the list of compacted filesIOException
public int getStoreCompactionPriority()
getStoreCompactionPriority
in interface StoreFileManager
public final byte[] getStartRow(int stripeIndex)
StripeCompactionPolicy.StripeInformationProvider
getStartRow
in interface StripeCompactionPolicy.StripeInformationProvider
stripeIndex
- Stripe index.public final byte[] getEndRow(int stripeIndex)
StripeCompactionPolicy.StripeInformationProvider
getEndRow
in interface StripeCompactionPolicy.StripeInformationProvider
stripeIndex
- Stripe index.public List<StoreFile> getLevel0Files()
getLevel0Files
in interface StripeCompactionPolicy.StripeInformationProvider
public List<byte[]> getStripeBoundaries()
getStripeBoundaries
in interface StripeCompactionPolicy.StripeInformationProvider
public ArrayList<com.google.common.collect.ImmutableList<StoreFile>> getStripes()
getStripes
in interface StripeCompactionPolicy.StripeInformationProvider
public int getStripeCount()
getStripeCount
in interface StripeCompactionPolicy.StripeInformationProvider
public Collection<StoreFile> getUnneededFiles(long maxTs, List<StoreFile> filesCompacting)
getUnneededFiles
in interface StoreFileManager
maxTs
- Maximum expired timestamp.filesCompacting
- Files that are currently compacting.public double getCompactionPressure()
getCompactionPressure
in interface StoreFileManager
Store.getCompactionPressure()
public Comparator<StoreFile> getStoreFileComparator()
getStoreFileComparator
in interface StoreFileManager
StoreFile.getMaxSequenceId()
is the first priority.Copyright © 2007–2019 The Apache Software Foundation. All rights reserved.