You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 15 Next »

Status

Current state: Under Discussion

Discussion thread: here [Change the link from the KIP proposal email archive to your own email thread]

JIRA: Unable to render Jira issues macro, execution error.

Please keep the discussion on the mailing list rather than commenting on the wiki (wiki discussions get unwieldy fast).

Motivation

Update an implementation of the Query interface, introduced in KIP-796: Interactive Query v2 , to support reverseRange and reverseAll.

Use bounded query to achieve reverseRange and use unbounded query to achieve reverseAll.


Proposed Changes

To achieve reverseRange and reverseAll, we can generate a new class like below in Rejected Alternatives part, we can also reuse lots of code from RangeQuery, to simplify the code we choose reuse the RangeQuery code.

We add a variable reverse  in RangeQuery , the default value is false, we want do reverseRange or reverseAll, we can set it to true.

Then we generate two public methods:

The first one is isReverse() , if this method return true, do reverseQuery otherwise do rangeQuery

the second method is setReverse() , if we want the query do reverseQuery, we can use this method to set the reverse  to true, so this time, rangeQuery Stand for reverseQuery.

Use bounded reverseQuery to achieve reverseRange and use unbounded reverseQuery to achieve reverseAll.

RangeQuery
/**
 * Interactive query for issuing range queries and scans over KeyValue stores.
 * <p>
 *  A range query retrieves a set of records, specified using an upper and/or lower bound on the keys.
 * <p>
 * A scan query retrieves all records contained in the store.
 * <p>
 * If the reverse is false, do rangeQuery. If the reverse is true do reverseQuery
 */
@Evolving
public final class RangeQuery<K, V> implements Query<KeyValueIterator<K, V>> {
...
    private boolean reverse;


    /**
     * Check whether the Query is reverseQuery.
     */
    public boolean isReverse() {
        return reverse;
    }

    /**
     * Set the Query to reverseQuery.
     */
    public void withDescandingOrder() {
        this.reverse = true;
    }
...
}

Test Plan

This time, we aim to implement reverseRange and reverseAll. To ensure the accuracy of the results for both, modifications to IQv2StoreIntegrationTest  are necessary. Previously, we stored query results in a set, which doesn't retain order. I've since switched to using a list to store the query results. This allows us to discern the differences between rangeQuery and reverseQuery.

Compatibility, Deprecation, and Migration Plan

  • Because we have already have RangeQuery  class, so we can update some code to achieve reverseRange and reverseAll.
  • Since nothing is deprecated in this KIP, users have no need to migrate unless they want to.

Rejected Alternatives

At first, we planned to implement ReverseRangeQuery  from scratch. However, after discussions, we decided to reuse some of the RangeQuery  code, allowing RangeQuery  to possess the reverseQuery functionality. Therefore, in the end, we chose not to add a new ReverseRangeQuery  class but instead to enhance the RangeQuery  with new features.

ReverseRangeQuery
@Evolving
public final class ReverseRangeQuery<K, V> implements Query<KeyValueIterator<K, V>> {

    private final Optional<K> lower;
    private final Optional<K> upper;

    private ReverseRangeQuery(final Optional<K> lower, final Optional<K> upper) {
        this.lower = lower;
        this.upper = upper;
    }

    /**
     * Interactive range query using a lower and upper bound to filter the keys returned.
     * @param lower The key that specifies the lower bound of the range
     * @param upper The key that specifies the upper bound of the range
     * @param <K> The key type
     * @param <V> The value type
     */
    public static <K, V> ReverseRangeQuery<K, V> withRange(final K lower, final K upper) {
        return new ReverseRangeQuery<>(Optional.ofNullable(lower), Optional.ofNullable(upper));
    }

    /**
     * Interactive range query using an upper bound to filter the keys returned.
     * If both <K,V> are null, RangQuery returns a full range scan.
     * @param upper The key that specifies the upper bound of the range
     * @param <K> The key type
     * @param <V> The value type
     */
    public static <K, V> ReverseRangeQuery<K, V> withUpperBound(final K upper) {
        return new ReverseRangeQuery<>(Optional.empty(), Optional.of(upper));
    }

    /**
     * Interactive range query using a lower bound to filter the keys returned.
     * @param lower The key that specifies the lower bound of the range
     * @param <K> The key type
     * @param <V> The value type
     */
    public static <K, V> ReverseRangeQuery<K, V> withLowerBound(final K lower) {
        return new ReverseRangeQuery<>(Optional.of(lower), Optional.empty());
    }

    /**
     * Interactive scan query that returns all records in the store.
     * @param <K> The key type
     * @param <V> The value type
     */
    public static <K, V> ReverseRangeQuery<K, V> withNoBounds() {
        return new ReverseRangeQuery<>(Optional.empty(), Optional.empty());
    }

    /**
     * The lower bound of the query, if specified.
     */
    public Optional<K> getLowerBound() {
        return lower;
    }

    /**
     * The upper bound of the query, if specified
     */
    public Optional<K> getUpperBound() {
        return upper;
    }
}

  • No labels