Uses of Enum
org.apache.hadoop.hbase.regionserver.MemStoreCompactionStrategy.Action
Packages that use MemStoreCompactionStrategy.Action
-
Uses of MemStoreCompactionStrategy.Action in org.apache.hadoop.hbase.regionserver
Methods in org.apache.hadoop.hbase.regionserver that return MemStoreCompactionStrategy.ActionModifier and TypeMethodDescriptionprotected MemStoreCompactionStrategy.ActionMemStoreCompactionStrategy.compact(VersionedSegmentsList versionedList, String strategyInfo) AdaptiveMemStoreCompactionStrategy.getAction(VersionedSegmentsList versionedList) BasicMemStoreCompactionStrategy.getAction(VersionedSegmentsList versionedList) EagerMemStoreCompactionStrategy.getAction(VersionedSegmentsList versionedList) abstract MemStoreCompactionStrategy.ActionMemStoreCompactionStrategy.getAction(VersionedSegmentsList versionedList) protected MemStoreCompactionStrategy.ActionAdaptiveMemStoreCompactionStrategy.getFlattenAction()protected MemStoreCompactionStrategy.ActionMemStoreCompactionStrategy.getFlattenAction()protected MemStoreCompactionStrategy.ActionAdaptiveMemStoreCompactionStrategy.getMergingAction()protected MemStoreCompactionStrategy.ActionMemStoreCompactionStrategy.getMergingAction()protected MemStoreCompactionStrategy.ActionMemStoreCompactionStrategy.simpleMergeOrFlatten(VersionedSegmentsList versionedList, String strategy) Returns the enum constant of this type with the specified name.static MemStoreCompactionStrategy.Action[]MemStoreCompactionStrategy.Action.values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.apache.hadoop.hbase.regionserver with parameters of type MemStoreCompactionStrategy.ActionModifier and TypeMethodDescriptionprivate ImmutableSegmentSegmentFactory.createImmutableSegment(org.apache.hadoop.conf.Configuration conf, CellComparator comparator, MemStoreSegmentsIterator iterator, MemStoreLAB memStoreLAB, int numOfCells, MemStoreCompactionStrategy.Action action, CompactingMemStore.IndexType idxType) SegmentFactory.createImmutableSegmentByCompaction(org.apache.hadoop.conf.Configuration conf, CellComparator comparator, MemStoreSegmentsIterator iterator, int numOfCells, CompactingMemStore.IndexType idxType, MemStoreCompactionStrategy.Action action) SegmentFactory.createImmutableSegmentByFlattening(CSLMImmutableSegment segment, CompactingMemStore.IndexType idxType, MemStoreSizing memstoreSizing, MemStoreCompactionStrategy.Action action) SegmentFactory.createImmutableSegmentByMerge(org.apache.hadoop.conf.Configuration conf, CellComparator comparator, MemStoreSegmentsIterator iterator, int numOfCells, List<ImmutableSegment> segments, CompactingMemStore.IndexType idxType, MemStoreCompactionStrategy.Action action) private ImmutableSegmentMemStoreCompactor.createSubstitution(MemStoreCompactionStrategy.Action action) ---------------------------------------------------------------------- Creation of the ImmutableSegment either by merge or copy-compact of the segments of the pipeline, based on the Compactor Iterator.voidCompactingMemStore.flattenOneSegment(long requesterVersion, MemStoreCompactionStrategy.Action action) booleanCompactionPipeline.flattenOneSegment(long requesterVersion, CompactingMemStore.IndexType idxType, MemStoreCompactionStrategy.Action action) If the caller holds the current version, go over the the pipeline and try to flatten each segment.private voidCellArrayImmutableSegment.initializeCellSet(int numOfCells, MemStoreSegmentsIterator iterator, MemStoreCompactionStrategy.Action action) private voidCellChunkImmutableSegment.initializeCellSet(int numOfCells, MemStoreSegmentsIterator iterator, MemStoreCompactionStrategy.Action action) private voidCellArrayImmutableSegment.reinitializeCellSet(int numOfCells, KeyValueScanner segmentScanner, CellSet oldCellSet, MemStoreCompactionStrategy.Action action) private voidCellChunkImmutableSegment.reinitializeCellSet(int numOfCells, KeyValueScanner segmentScanner, CellSet oldCellSet, MemStoreSizing memstoreSizing, MemStoreCompactionStrategy.Action action) Constructors in org.apache.hadoop.hbase.regionserver with parameters of type MemStoreCompactionStrategy.ActionModifierConstructorDescriptionprotectedCellArrayImmutableSegment(CellComparator comparator, MemStoreSegmentsIterator iterator, MemStoreLAB memStoreLAB, int numOfCells, MemStoreCompactionStrategy.Action action) ------------------------------------------------------------------------ C-tor to be used when new CellArrayImmutableSegment is a result of compaction of a list of older ImmutableSegments.protectedCellArrayImmutableSegment(CSLMImmutableSegment segment, MemStoreSizing mss, MemStoreCompactionStrategy.Action action) ------------------------------------------------------------------------ C-tor to be used when new CellChunkImmutableSegment is built as a result of flattening of CSLMImmutableSegment The given iterator returns the Cells that "survived" the compaction.protectedCellChunkImmutableSegment(CellComparator comparator, MemStoreSegmentsIterator iterator, MemStoreLAB memStoreLAB, int numOfCells, MemStoreCompactionStrategy.Action action) ------------------------------------------------------------------------ C-tor to be used when new CellChunkImmutableSegment is built as a result of compaction/merge of a list of older ImmutableSegments.protectedCellChunkImmutableSegment(CSLMImmutableSegment segment, MemStoreSizing memstoreSizing, MemStoreCompactionStrategy.Action action) ------------------------------------------------------------------------ C-tor to be used when new CellChunkImmutableSegment is built as a result of flattening of CSLMImmutableSegment The given iterator returns the Cells that "survived" the compaction.