Uses of Class
org.apache.accumulo.core.data.Range
Package
Description
Mock framework for Accumulo
-
Uses of Range in org.apache.accumulo.core.client
Modifier and TypeMethodDescriptionClientSideIteratorScanner.getRange()
IsolatedScanner.getRange()
Scanner.getRange()
Returns the range of keys to scan over.Modifier and TypeMethodDescriptionvoid
void
void
Sets the range of keys to scan over.Modifier and TypeMethodDescriptionvoid
BatchDeleter.setRanges
(Collection<Range> ranges) Allows deleting multiple ranges efficiently.void
BatchScanner.setRanges
(Collection<Range> ranges) Allows scanning over multiple ranges efficiently. -
Uses of Range in org.apache.accumulo.core.client.admin
Modifier and TypeMethodDescriptionLocations.groupByRange()
For all of the ranges passed toTableOperations.locate(String, java.util.Collection)
, return a map of the tablets each range overlaps.Locations.groupByTablet()
For all of the ranges passed toTableOperations.locate(String, java.util.Collection)
, return a map of the ranges each tablet overlaps.TableOperations.splitRangeByTablets
(String tableName, Range range, int maxSplits) Modifier and TypeMethodDescriptionTableOperations.splitRangeByTablets
(String tableName, Range range, int maxSplits) Modifier and TypeMethodDescriptionTableOperations.locate
(String tableName, Collection<Range> ranges) Locates the tablet servers and tablets that would service a collections of ranges. -
Uses of Range in org.apache.accumulo.core.client.mapred
Modifier and TypeMethodDescriptionInputFormatBase.getRanges
(org.apache.hadoop.mapred.JobConf job) Gets the ranges to scan over from a job.Modifier and TypeMethodDescriptionstatic void
InputFormatBase.setRanges
(org.apache.hadoop.mapred.JobConf job, Collection<Range> ranges) Sets the input ranges to scan for this job.ModifierConstructorDescriptionRangeInputSplit
(String table, String tableId, Range range, String[] locations) Deprecated.protected
RangeInputSplit
(String table, Range range, String[] locations) Deprecated.protected
RangeInputSplit
(String table, String tableId, Range range, String[] locations) -
Uses of Range in org.apache.accumulo.core.client.mapreduce
Modifier and TypeMethodDescriptionInputFormatBase.getRanges
(org.apache.hadoop.mapreduce.JobContext context) Gets the ranges to scan over from a job.InputTableConfig.getRanges()
Returns the ranges to be queried in the configurationModifier and TypeMethodDescriptionstatic void
InputFormatBase.setRanges
(org.apache.hadoop.mapreduce.Job job, Collection<Range> ranges) Sets the input ranges to scan for the single input table associated with this job.Sets the input ranges to scan for all tables associated with this job.ModifierConstructorDescriptionRangeInputSplit
(String table, String tableId, Range range, String[] locations) Deprecated.protected
RangeInputSplit
(String table, Range range, String[] locations) Deprecated.protected
RangeInputSplit
(String table, String tableId, Range range, String[] locations) -
Uses of Range in org.apache.accumulo.core.client.mapreduce.lib.util
Modifier and TypeMethodDescriptionDeprecated.since 1.6.0; Configure your job with the appropriate InputFormat or OutputFormat.Modifier and TypeMethodDescriptionstatic void
InputConfigurator.setRanges
(Class<?> implementingClass, org.apache.hadoop.conf.Configuration conf, Collection<Range> ranges) Deprecated.since 1.6.0; Configure your job with the appropriate InputFormat or OutputFormat. -
Uses of Range in org.apache.accumulo.core.client.mock
Modifier and TypeMethodDescriptionvoid
MockBatchScanner.setRanges
(Collection<Range> ranges) Deprecated. -
Uses of Range in org.apache.accumulo.core.client.rfile
Modifier and TypeMethodDescriptionRFile.ScannerOptions.withBounds
(Range range) This option allows limiting theScanner
from reading data outside of a given range. -
Uses of Range in org.apache.accumulo.core.data
Modifier and TypeMethodDescriptionCreates a new range that is bounded by the columns passed in.Creates a range which represents the intersection of this range and the passed in range.Creates a range which represents the intersection of this range and the passed in range.static Range
Range.exact
(CharSequence row) Creates a range that covers an exact row.static Range
Range.exact
(CharSequence row, CharSequence cf) Creates a range that covers an exact row and column family.static Range
Range.exact
(CharSequence row, CharSequence cf, CharSequence cq) Creates a range that covers an exact row, column family, and column qualifier.static Range
Range.exact
(CharSequence row, CharSequence cf, CharSequence cq, CharSequence cv) Creates a range that covers an exact row, column family, column qualifier, and column visibility.static Range
Range.exact
(CharSequence row, CharSequence cf, CharSequence cq, CharSequence cv, long ts) Creates a range that covers an exact row, column family, column qualifier, column visibility, and timestamp.static Range
Range.exact
(org.apache.hadoop.io.Text row) Creates a range that covers an exact row.static Range
Range.exact
(org.apache.hadoop.io.Text row, org.apache.hadoop.io.Text cf) Creates a range that covers an exact row and column family.static Range
Range.exact
(org.apache.hadoop.io.Text row, org.apache.hadoop.io.Text cf, org.apache.hadoop.io.Text cq) Creates a range that covers an exact row, column family, and column qualifier.static Range
Range.exact
(org.apache.hadoop.io.Text row, org.apache.hadoop.io.Text cf, org.apache.hadoop.io.Text cq, org.apache.hadoop.io.Text cv) Creates a range that covers an exact row, column family, column qualifier, and column visibility.static Range
Range.exact
(org.apache.hadoop.io.Text row, org.apache.hadoop.io.Text cf, org.apache.hadoop.io.Text cq, org.apache.hadoop.io.Text cv, long ts) Creates a range that covers an exact row, column family, column qualifier, column visibility, and timestamp.static Range
Range.prefix
(CharSequence rowPrefix) Returns a Range that covers all rows beginning with a prefix.static Range
Range.prefix
(CharSequence row, CharSequence cfPrefix) Returns a Range that covers all column families beginning with a prefix within a given row.static Range
Range.prefix
(CharSequence row, CharSequence cf, CharSequence cqPrefix) Returns a Range that covers all column qualifiers beginning with a prefix within a given row and column family.static Range
Range.prefix
(CharSequence row, CharSequence cf, CharSequence cq, CharSequence cvPrefix) Returns a Range that covers all column visibilities beginning with a prefix within a given row, column family, and column qualifier.static Range
Range.prefix
(org.apache.hadoop.io.Text rowPrefix) Returns a Range that covers all rows beginning with a prefix.static Range
Range.prefix
(org.apache.hadoop.io.Text row, org.apache.hadoop.io.Text cfPrefix) Returns a Range that covers all column families beginning with a prefix within a given row.static Range
Range.prefix
(org.apache.hadoop.io.Text row, org.apache.hadoop.io.Text cf, org.apache.hadoop.io.Text cqPrefix) Returns a Range that covers all column qualifiers beginning with a prefix within a given row and column family.static Range
Range.prefix
(org.apache.hadoop.io.Text row, org.apache.hadoop.io.Text cf, org.apache.hadoop.io.Text cq, org.apache.hadoop.io.Text cvPrefix) Returns a Range that covers all column visibilities beginning with a prefix within a given row, column family, and column qualifier.KeyExtent.toDataRange()
Deprecated.KeyExtent.toMetadataRange()
Deprecated.TabletId.toRange()
Modifier and TypeMethodDescriptionRange.mergeOverlapping
(Collection<Range> ranges) Merges overlapping and adjacent ranges.Modifier and TypeMethodDescriptionCreates a range which represents the intersection of this range and the passed in range.Creates a range which represents the intersection of this range and the passed in range.int
Compares this range to another range.boolean
Determines if this range equals another.Modifier and TypeMethodDescriptionRange.mergeOverlapping
(Collection<Range> ranges) Merges overlapping and adjacent ranges.