Uses of Class
org.apache.accumulo.core.data.RowRange
Packages that use RowRange
Package
Description
-
Uses of RowRange in org.apache.accumulo.core.client.admin
Methods in org.apache.accumulo.core.client.admin with parameters of type RowRangeModifier and TypeMethodDescriptionstatic org.apache.hadoop.io.Textorg.apache.hadoop.io.TextTableOperations.getMaxRow(String tableName, Authorizations auths, RowRange range) Finds the max row within a given row range.default voidTableOperations.setTabletAvailability(String tableName, RowRange rowRange, TabletAvailability tabletAvailability) Sets the tablet availability for a range of Tablets in the specified table, but does not wait for the tablets to reach this availability state.Method parameters in org.apache.accumulo.core.client.admin with type arguments of type RowRangeModifier and TypeMethodDescriptiondefault Stream<TabletInformation> TableOperations.getTabletInformation(String tableName, List<RowRange> ranges, TabletInformation.Field... fields) -
Uses of RowRange in org.apache.accumulo.core.client.admin.compaction
Methods in org.apache.accumulo.core.client.admin.compaction that return RowRangeMethods in org.apache.accumulo.core.client.admin.compaction with parameters of type RowRangeModifier and TypeMethodDescriptionstatic CompactableFileCreates a new CompactableFile object that implements this interface. -
Uses of RowRange in org.apache.accumulo.core.data
Methods in org.apache.accumulo.core.data that return RowRangeModifier and TypeMethodDescriptionstatic RowRangeRowRange.all()Creates a range that includes all possible rows.static RowRangeRowRange.atLeast(CharSequence lowerBound) Creates a range of rows greater than or equal to the given row.static RowRangeRowRange.atLeast(org.apache.hadoop.io.Text lowerBound) Creates a range of rows greater than or equal to the given row.static RowRangeRowRange.atMost(CharSequence upperBound) Creates a range of rows less than or equal to the given row.static RowRangeRowRange.atMost(org.apache.hadoop.io.Text upperBound) Creates a range of rows less than or equal to the given row.Creates a row range which represents the intersection of this row range and the given row range.Creates a row range which represents the intersection of this row range and the given row range.static RowRangeRowRange.closed(CharSequence row) Creates a range that covers an entire row.static RowRangeRowRange.closed(CharSequence lowerBound, CharSequence upperBound) Creates a range of rows from lowerBound inclusive to upperBound inclusive.static RowRangeRowRange.closed(org.apache.hadoop.io.Text row) Creates a range that covers an entire row.static RowRangeRowRange.closed(org.apache.hadoop.io.Text lowerBound, org.apache.hadoop.io.Text upperBound) Creates a range of rows from lowerBound inclusive to upperBound inclusive.static RowRangeRowRange.closedOpen(CharSequence lowerBound, CharSequence upperBound) Creates a range of rows from lowerBound inclusive to upperBound exclusive.static RowRangeRowRange.closedOpen(org.apache.hadoop.io.Text lowerBound, org.apache.hadoop.io.Text upperBound) Creates a range of rows from lowerBound inclusive to upperBound exclusive.static RowRangeRowRange.greaterThan(CharSequence lowerBound) Creates a range of rows strictly greater than the given row.static RowRangeRowRange.greaterThan(org.apache.hadoop.io.Text lowerBound) Creates a range of rows strictly greater than the given row.static RowRangeRowRange.lessThan(CharSequence upperBound) Creates a range of rows strictly less than the given row.static RowRangeRowRange.lessThan(org.apache.hadoop.io.Text upperBound) Creates a range of rows strictly less than the given row.static RowRangeRowRange.open(CharSequence lowerBound, CharSequence upperBound) Creates a range of rows from lowerBound exclusive to upperBound exclusive.static RowRangeRowRange.open(org.apache.hadoop.io.Text lowerBound, org.apache.hadoop.io.Text upperBound) Creates a range of rows from lowerBound exclusive to upperBound exclusive.static RowRangeRowRange.openClosed(CharSequence lowerBound, CharSequence upperBound) Creates a range of rows from lowerBound exclusive to upperBound inclusive.static RowRangeRowRange.openClosed(org.apache.hadoop.io.Text lowerBound, org.apache.hadoop.io.Text upperBound) Creates a range of rows from lowerBound exclusive to upperBound inclusive.static RowRangeRowRange.range(CharSequence lowerBound, boolean lowerBoundInclusive, CharSequence upperBound, boolean upperBoundInclusive) Creates a range of rows from the given lowerBound to the given upperBound.static RowRangeRowRange.range(org.apache.hadoop.io.Text lowerBound, boolean lowerBoundInclusive, org.apache.hadoop.io.Text upperBound, boolean upperBoundInclusive) Creates a range of rows from the given lowerBound to the given upperBound.Methods in org.apache.accumulo.core.data that return types with arguments of type RowRangeModifier and TypeMethodDescriptionRowRange.mergeOverlapping(Collection<RowRange> rowRanges) Merges overlapping and adjacent row ranges.Methods in org.apache.accumulo.core.data with parameters of type RowRangeModifier and TypeMethodDescriptionCreates a row range which represents the intersection of this row range and the given row range.Creates a row range which represents the intersection of this row range and the given row range.intCompares this row range to another row range.booleanDetermines if this row range equals another.Method parameters in org.apache.accumulo.core.data with type arguments of type RowRangeModifier and TypeMethodDescriptionRowRange.mergeOverlapping(Collection<RowRange> rowRanges) Merges overlapping and adjacent row ranges. -
Uses of RowRange in org.apache.accumulo.core.spi.balancer
Method parameters in org.apache.accumulo.core.spi.balancer with type arguments of type RowRangeModifier and TypeMethodDescriptionBalancerEnvironment.getTabletInformation(TableId tableId, List<RowRange> ranges, TabletInformation.Field... fields) Retrieve tablet information for the provided list of row ranges.