Interface TabletsMetadata.TableRangeOptions

    • Method Detail

      • overlapping

        TabletsMetadata.Options overlapping​(org.apache.hadoop.io.Text startRow,
                                            org.apache.hadoop.io.Text endRow)
        Limit to tablets that overlap the range (startRow, endRow]. Can pass null representing -inf and +inf. The impl creates open ended ranges which may be problematic, see #813.

        This method is equivalent to calling overlapping(Text, boolean, Text) as overlapping(startRow, false, endRow)

      • overlapping

        TabletsMetadata.Options overlapping​(org.apache.hadoop.io.Text startRow,
                                            boolean startRowInclusive,
                                            org.apache.hadoop.io.Text endRow)
        When startRowInclusive is true limits to tablets that overlap the range [startRow,endRow]. When startRowInclusive is false limits to tablets that overlap the range (startRow, endRow]. Can pass null for start and end row representing -inf and +inf.