This is an automated email from the ASF dual-hosted git repository.
zhangduo pushed a commit to branch branch-2
in repository https://gitbox.apache.org/repos/asf/hbase.git
The following commit(s) were added to refs/heads/branch-2 by this push:
new c5f6355 HBASE-26762 Un-Deprecate and improve documentation for
Scan#setRowPrefixFilter (#4119)
c5f6355 is described below
commit c5f63550b7fa96a208bfc9326b9d5d4640c5e22a
Author: Niels Basjes <[email protected]>
AuthorDate: Wed Mar 2 13:19:13 2022 +0100
HBASE-26762 Un-Deprecate and improve documentation for
Scan#setRowPrefixFilter (#4119)
Signed-off-by: Andrew Purtell <[email protected]>
Signed-off-by: Duo Zhang <[email protected]>
---
.../apache/hadoop/hbase/client/ImmutableScan.java | 4 +-
.../java/org/apache/hadoop/hbase/client/Scan.java | 43 ++++++++++++++++++++--
.../apache/hadoop/hbase/quotas/QuotaTableUtil.java | 9 +++--
.../hadoop/hbase/client/TestImmutableScan.java | 7 ++--
.../org/apache/hadoop/hbase/client/TestScan.java | 2 +-
.../hadoop/hbase/filter/TestScanRowPrefix.java | 32 ++++++++--------
hbase-shell/src/main/ruby/hbase/table.rb | 4 +-
src/main/asciidoc/_chapters/datamodel.adoc | 2 +-
8 files changed, 70 insertions(+), 33 deletions(-)
diff --git
a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ImmutableScan.java
b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ImmutableScan.java
index 535b926..e0d4ad7 100644
---
a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ImmutableScan.java
+++
b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ImmutableScan.java
@@ -101,9 +101,9 @@ public final class ImmutableScan extends Scan {
}
@Override
- public Scan setRowPrefixFilter(byte[] rowPrefix) {
+ public Scan setStartStopRowForPrefixScan(byte[] rowPrefix) {
throw new UnsupportedOperationException(
- "ImmutableScan does not allow access to setRowPrefixFilter");
+ "ImmutableScan does not allow access to setStartStopRowForPrefixScan");
}
@Override
diff --git
a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Scan.java
b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Scan.java
index 40f3067..c8931e1 100644
--- a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Scan.java
+++ b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Scan.java
@@ -424,6 +424,11 @@ public class Scan extends Query {
* <p>
* If the specified row does not exist, the Scanner will start from the next
closest row after the
* specified row.
+ * <p>
+ * <b>Note:</b> <strong>Do NOT use this in combination with
+ * {@link #setRowPrefixFilter(byte[])} or {@link
#setStartStopRowForPrefixScan(byte[])}.</strong>
+ * Doing so will make the scan result unexpected or even undefined.
+ * </p>
* @param startRow row to start scanner at or after
* @return this
* @throws IllegalArgumentException if startRow does not meet criteria for a
row key (when length
@@ -463,6 +468,11 @@ public class Scan extends Query {
* <p>
* If the specified row does not exist, or the {@code inclusive} is {@code
false}, the Scanner
* will start from the next closest row after the specified row.
+ * <p>
+ * <b>Note:</b> <strong>Do NOT use this in combination with
+ * {@link #setRowPrefixFilter(byte[])} or {@link
#setStartStopRowForPrefixScan(byte[])}.</strong>
+ * Doing so will make the scan result unexpected or even undefined.
+ * </p>
* @param startRow row to start scanner at or after
* @param inclusive whether we should include the start row when scan
* @return this
@@ -484,8 +494,9 @@ public class Scan extends Query {
* <p>
* The scan will include rows that are lexicographically less than the
provided stopRow.
* <p>
- * <b>Note:</b> When doing a filter for a rowKey <u>Prefix</u> use
- * {@link #setRowPrefixFilter(byte[])}. The 'trailing 0' will not yield the
desired result.
+ * <b>Note:</b> <strong>Do NOT use this in combination with
+ * {@link #setRowPrefixFilter(byte[])} or {@link
#setStartStopRowForPrefixScan(byte[])}.</strong>
+ * Doing so will make the scan result unexpected or even undefined.
* </p>
* @param stopRow row to end at (exclusive)
* @return this
@@ -529,6 +540,11 @@ public class Scan extends Query {
* <p>
* The scan will include rows that are lexicographically less than (or equal
to if
* {@code inclusive} is {@code true}) the provided stopRow.
+ * <p>
+ * <b>Note:</b> <strong>Do NOT use this in combination with
+ * {@link #setRowPrefixFilter(byte[])} or {@link
#setStartStopRowForPrefixScan(byte[])}.</strong>
+ * Doing so will make the scan result unexpected or even undefined.
+ * </p>
* @param stopRow row to end at
* @param inclusive whether we should include the stop row when scan
* @return this
@@ -551,12 +567,31 @@ public class Scan extends Query {
* <p>This is a utility method that converts the desired rowPrefix into the
appropriate values
* for the startRow and stopRow to achieve the desired result.</p>
* <p>This can safely be used in combination with setFilter.</p>
- * <p><b>NOTE: Doing a {@link #setStartRow(byte[])} and/or {@link
#setStopRow(byte[])}
- * after this method will yield undefined results.</b></p>
+ * <p><strong>This CANNOT be used in combination with withStartRow and/or
withStopRow.</strong>
+ * Such a combination will yield unexpected and even undefined results.</p>
* @param rowPrefix the prefix all rows must start with. (Set <i>null</i> to
remove the filter.)
* @return this
+ * @deprecated since 2.5.0, will be removed in 4.0.0.
+ * The name of this method is considered to be confusing as it does not
+ * use a {@link Filter} but uses setting the startRow and stopRow
instead.
+ * Use {@link #setStartStopRowForPrefixScan(byte[])} instead.
*/
public Scan setRowPrefixFilter(byte[] rowPrefix) {
+ return setStartStopRowForPrefixScan(rowPrefix);
+ }
+
+ /**
+ * <p>Set a filter (using stopRow and startRow) so the result set only
contains rows where the
+ * rowKey starts with the specified prefix.</p>
+ * <p>This is a utility method that converts the desired rowPrefix into the
appropriate values
+ * for the startRow and stopRow to achieve the desired result.</p>
+ * <p>This can safely be used in combination with setFilter.</p>
+ * <p><strong>This CANNOT be used in combination with withStartRow and/or
withStopRow.</strong>
+ * Such a combination will yield unexpected and even undefined results.</p>
+ * @param rowPrefix the prefix all rows must start with. (Set <i>null</i> to
remove the filter.)
+ * @return this
+ */
+ public Scan setStartStopRowForPrefixScan(byte[] rowPrefix) {
if (rowPrefix == null) {
setStartRow(HConstants.EMPTY_START_ROW);
setStopRow(HConstants.EMPTY_END_ROW);
diff --git
a/hbase-client/src/main/java/org/apache/hadoop/hbase/quotas/QuotaTableUtil.java
b/hbase-client/src/main/java/org/apache/hadoop/hbase/quotas/QuotaTableUtil.java
index 624b475..94b87c4 100644
---
a/hbase-client/src/main/java/org/apache/hadoop/hbase/quotas/QuotaTableUtil.java
+++
b/hbase-client/src/main/java/org/apache/hadoop/hbase/quotas/QuotaTableUtil.java
@@ -288,7 +288,7 @@ public class QuotaTableUtil {
// Limit to "u:v" column
s.addColumn(QUOTA_FAMILY_USAGE, QUOTA_QUALIFIER_POLICY);
if (null == tn) {
- s.setRowPrefixFilter(QUOTA_TABLE_ROW_KEY_PREFIX);
+ s.setStartStopRowForPrefixScan(QUOTA_TABLE_ROW_KEY_PREFIX);
} else {
byte[] row = getTableRowKey(tn);
// Limit rowspace to the "t:" prefix
@@ -637,7 +637,8 @@ public class QuotaTableUtil {
throws IOException {
Scan s = new Scan();
//Get rows for all tables in namespace
- s.setRowPrefixFilter(Bytes.add(QUOTA_TABLE_ROW_KEY_PREFIX,
Bytes.toBytes(namespace + TableName.NAMESPACE_DELIM)));
+ s.setStartStopRowForPrefixScan(
+ Bytes.add(QUOTA_TABLE_ROW_KEY_PREFIX, Bytes.toBytes(namespace +
TableName.NAMESPACE_DELIM)));
//Scan for table usage column (u:p) in quota table
s.addColumn(QUOTA_FAMILY_USAGE,QUOTA_QUALIFIER_POLICY);
//Scan for table quota column (q:s) if table has a space quota defined
@@ -706,7 +707,7 @@ public class QuotaTableUtil {
Scan s = new Scan();
if (namespace == null || namespace.isEmpty()) {
// Read all namespaces, just look at the row prefix
- s.setRowPrefixFilter(QUOTA_NAMESPACE_ROW_KEY_PREFIX);
+ s.setStartStopRowForPrefixScan(QUOTA_NAMESPACE_ROW_KEY_PREFIX);
} else {
// Fetch the exact row for the table
byte[] rowkey = getNamespaceRowKey(namespace);
@@ -727,7 +728,7 @@ public class QuotaTableUtil {
Scan s = new Scan();
if (null == table) {
// Read all tables, just look at the row prefix
- s.setRowPrefixFilter(QUOTA_TABLE_ROW_KEY_PREFIX);
+ s.setStartStopRowForPrefixScan(QUOTA_TABLE_ROW_KEY_PREFIX);
} else {
// Fetch the exact row for the table
byte[] rowkey = getTableRowKey(table);
diff --git
a/hbase-client/src/test/java/org/apache/hadoop/hbase/client/TestImmutableScan.java
b/hbase-client/src/test/java/org/apache/hadoop/hbase/client/TestImmutableScan.java
index 4714936..09b9add 100644
---
a/hbase-client/src/test/java/org/apache/hadoop/hbase/client/TestImmutableScan.java
+++
b/hbase-client/src/test/java/org/apache/hadoop/hbase/client/TestImmutableScan.java
@@ -83,7 +83,7 @@ public class TestImmutableScan {
.setReplicaId(3)
.setReversed(true)
.setRowOffsetPerColumnFamily(5)
- .setRowPrefixFilter(Bytes.toBytes("row_"))
+ .setStartStopRowForPrefixScan(Bytes.toBytes("row_"))
.setScanMetricsEnabled(true)
.setSmall(true)
.setReadType(Scan.ReadType.STREAM)
@@ -181,10 +181,11 @@ public class TestImmutableScan {
assertEquals("ImmutableScan does not allow access to withStopRow",
e.getMessage());
}
try {
- scanCopy.setRowPrefixFilter(new byte[] { 1, 2 });
+ scanCopy.setStartStopRowForPrefixScan(new byte[] { 1, 2 });
throw new RuntimeException("Should not reach here");
} catch (UnsupportedOperationException e) {
- assertEquals("ImmutableScan does not allow access to
setRowPrefixFilter", e.getMessage());
+ assertEquals("ImmutableScan does not allow access to
setStartStopRowForPrefixScan",
+ e.getMessage());
}
try {
scanCopy.readAllVersions();
diff --git
a/hbase-client/src/test/java/org/apache/hadoop/hbase/client/TestScan.java
b/hbase-client/src/test/java/org/apache/hadoop/hbase/client/TestScan.java
index c653f7b..fe53805 100644
--- a/hbase-client/src/test/java/org/apache/hadoop/hbase/client/TestScan.java
+++ b/hbase-client/src/test/java/org/apache/hadoop/hbase/client/TestScan.java
@@ -247,7 +247,7 @@ public class TestScan {
.setReplicaId(3)
.setReversed(true)
.setRowOffsetPerColumnFamily(5)
- .setRowPrefixFilter(Bytes.toBytes("row_"))
+ .setStartStopRowForPrefixScan(Bytes.toBytes("row_"))
.setScanMetricsEnabled(true)
.setSmall(true)
.setReadType(ReadType.STREAM)
diff --git
a/hbase-server/src/test/java/org/apache/hadoop/hbase/filter/TestScanRowPrefix.java
b/hbase-server/src/test/java/org/apache/hadoop/hbase/filter/TestScanRowPrefix.java
index e3b78ed..c20076b 100644
---
a/hbase-server/src/test/java/org/apache/hadoop/hbase/filter/TestScanRowPrefix.java
+++
b/hbase-server/src/test/java/org/apache/hadoop/hbase/filter/TestScanRowPrefix.java
@@ -41,7 +41,7 @@ import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
- * Test if Scan.setRowPrefixFilter works as intended.
+ * Test if Scan.setStartStopRowForPrefixScan works as intended.
*/
@Category({FilterTests.class, MediumTests.class})
public class TestScanRowPrefix extends FilterTestingCluster {
@@ -63,8 +63,8 @@ public class TestScanRowPrefix extends FilterTestingCluster {
Table table = openTable(tableName);
/**
- * Note that about half of these tests were relevant for an different
implementation approach
- * of setRowPrefixFilter. These test cases have been retained to ensure
that also the
+ * Note that about half of these tests were relevant for a different
implementation approach
+ * of setStartStopRowForPrefixScan. These test cases have been retained to
ensure that also the
* edge cases found there are still covered.
*/
@@ -118,16 +118,16 @@ public class TestScanRowPrefix extends
FilterTestingCluster {
// ========
// PREFIX 0
Scan scan = new Scan();
- scan.setRowPrefixFilter(prefix0);
+ scan.setStartStopRowForPrefixScan(prefix0);
verifyScanResult(table, scan, expected0, "Scan empty prefix failed");
// ========
// PREFIX 1
scan = new Scan();
- scan.setRowPrefixFilter(prefix1);
+ scan.setStartStopRowForPrefixScan(prefix1);
verifyScanResult(table, scan, expected1, "Scan normal prefix failed");
- scan.setRowPrefixFilter(null);
+ scan.setStartStopRowForPrefixScan(null);
verifyScanResult(table, scan, expected0, "Scan after prefix reset failed");
scan = new Scan();
@@ -137,10 +137,10 @@ public class TestScanRowPrefix extends
FilterTestingCluster {
// ========
// PREFIX 2
scan = new Scan();
- scan.setRowPrefixFilter(prefix2);
+ scan.setStartStopRowForPrefixScan(prefix2);
verifyScanResult(table, scan, expected2, "Scan edge 0xFF prefix failed");
- scan.setRowPrefixFilter(null);
+ scan.setStartStopRowForPrefixScan(null);
verifyScanResult(table, scan, expected0, "Scan after prefix reset failed");
scan = new Scan();
@@ -150,10 +150,10 @@ public class TestScanRowPrefix extends
FilterTestingCluster {
// ========
// PREFIX 3
scan = new Scan();
- scan.setRowPrefixFilter(prefix3);
+ scan.setStartStopRowForPrefixScan(prefix3);
verifyScanResult(table, scan, expected3, "Scan normal with 0x00 ends
failed");
- scan.setRowPrefixFilter(null);
+ scan.setStartStopRowForPrefixScan(null);
verifyScanResult(table, scan, expected0, "Scan after prefix reset failed");
scan = new Scan();
@@ -163,10 +163,10 @@ public class TestScanRowPrefix extends
FilterTestingCluster {
// ========
// PREFIX 4
scan = new Scan();
- scan.setRowPrefixFilter(prefix4);
+ scan.setStartStopRowForPrefixScan(prefix4);
verifyScanResult(table, scan, expected4, "Scan end prefix failed");
- scan.setRowPrefixFilter(null);
+ scan.setStartStopRowForPrefixScan(null);
verifyScanResult(table, scan, expected0, "Scan after prefix reset failed");
scan = new Scan();
@@ -177,13 +177,13 @@ public class TestScanRowPrefix extends
FilterTestingCluster {
// COMBINED
// Prefix + Filter
scan = new Scan();
- scan.setRowPrefixFilter(prefix1);
+ scan.setStartStopRowForPrefixScan(prefix1);
verifyScanResult(table, scan, expected1, "Prefix filter failed");
scan.setFilter(new ColumnPrefixFilter(prefix2));
verifyScanResult(table, scan, expected2, "Combined Prefix + Filter
failed");
- scan.setRowPrefixFilter(null);
+ scan.setStartStopRowForPrefixScan(null);
verifyScanResult(table, scan, expected2, "Combined Prefix + Filter;
removing Prefix failed");
scan.setFilter(null);
@@ -195,13 +195,13 @@ public class TestScanRowPrefix extends
FilterTestingCluster {
scan.setFilter(new ColumnPrefixFilter(prefix2));
verifyScanResult(table, scan, expected2, "Test filter failed");
- scan.setRowPrefixFilter(prefix1);
+ scan.setStartStopRowForPrefixScan(prefix1);
verifyScanResult(table, scan, expected2, "Combined Filter + Prefix
failed");
scan.setFilter(null);
verifyScanResult(table, scan, expected1, "Combined Filter + Prefix ;
removing Filter failed");
- scan.setRowPrefixFilter(null);
+ scan.setStartStopRowForPrefixScan(null);
verifyScanResult(table, scan, expected0, "Scan after prefix reset failed");
}
diff --git a/hbase-shell/src/main/ruby/hbase/table.rb
b/hbase-shell/src/main/ruby/hbase/table.rb
index 3fc6c85..4404eae 100644
--- a/hbase-shell/src/main/ruby/hbase/table.rb
+++ b/hbase-shell/src/main/ruby/hbase/table.rb
@@ -208,7 +208,7 @@ EOF
# create scan to get table names using prefix
scan = org.apache.hadoop.hbase.client.Scan.new
- scan.setRowPrefixFilter(prefix.to_java_bytes)
+ scan.setStartStopRowForPrefixScan(prefix.to_java_bytes)
# Run the scanner to get all rowkeys
scanner = @table.getScanner(scan)
# Create a list to store all deletes
@@ -536,7 +536,7 @@ EOF
end
# This will overwrite any startrow/stoprow settings
- scan.setRowPrefixFilter(rowprefixfilter.to_java_bytes) if
rowprefixfilter
+ scan.setStartStopRowForPrefixScan(rowprefixfilter.to_java_bytes) if
rowprefixfilter
# Clear converters from last scan.
@converters.clear
diff --git a/src/main/asciidoc/_chapters/datamodel.adoc
b/src/main/asciidoc/_chapters/datamodel.adoc
index dd54b1c..c8164e4 100644
--- a/src/main/asciidoc/_chapters/datamodel.adoc
+++ b/src/main/asciidoc/_chapters/datamodel.adoc
@@ -300,7 +300,7 @@ Table table = ... // instantiate a Table instance
Scan scan = new Scan();
scan.addColumn(CF, ATTR);
-scan.setRowPrefixFilter(Bytes.toBytes("row"));
+scan.setStartStopRowForPrefixScan(Bytes.toBytes("row"));
ResultScanner rs = table.getScanner(scan);
try {
for (Result r = rs.next(); r != null; r = rs.next()) {